/* ============================================
   Premier Partners Hub Site — styles.css
   servicesfrompremier.com
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --bg-top: #0a0a0a;
    --bg-bottom: #1a1a1a;
    --card-bg: #111111;
    --card-border: rgba(255,255,255,0.08);
    --brand-bar-bg: #0d0d0d;
    --nav-bg: rgba(10,10,10,0.85);

    --blue: #1a3a7a;
    --blue-bright: #2651a3;
    --teal: #2a9d8f;
    --teal-bright: #3dbfad;
    --stars: #FBBC05;

    --text-heading: #ffffff;
    --text-body: #d4d4d4;
    --text-muted: #a3a3a3;

    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --brand-bar-h: 40px;
    --nav-h: 90px;
    --top-offset: 110px; /* brand-bar + nav */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--top-offset); }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-top); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-gradient {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 30%, var(--teal) 70%, transparent 100%);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    color: #fff;
    box-shadow: 0 4px 20px rgba(42,157,143,0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(42,157,143,0.5);
}

.btn-ghost {
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
}
.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal-bright);
    transform: translateY(-3px);
}

/* ========== BRAND BAR ========== */
.brand-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--brand-bar-h);
    background: var(--brand-bar-bg);
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.brand-bar::-webkit-scrollbar { height: 0; }

.brand-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 100%;
    padding: 0 24px;
    white-space: nowrap;
    min-width: max-content;
}

.brand-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.5px;
}
.brand-link:hover { color: var(--text-heading); }
.brand-link.active {
    color: var(--teal-bright);
    font-weight: 600;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: var(--brand-bar-h);
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 85px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.2s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--teal-bright); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-bright), var(--teal));
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.3s;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42,157,143,0.4);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 100;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-heading);
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--top-offset);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(26,58,122,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(42,157,143,0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 60px 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 20px;
    color: var(--text-body);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-area {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-num {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--teal-bright);
    font-weight: 700;
}

.trust-icon {
    font-size: 22px;
    color: var(--teal-bright);
}

.trust-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Hero entrance animation */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }
.hero-content > *:nth-child(6) { animation-delay: 0.85s; }

/* Hero bitmoji hover */
.hero-logo-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    cursor: pointer;
}
.hero-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 20px rgba(42,157,143,0.2));
}
.hero-logo.formal {
    opacity: 1;
    transform: scale(1);
}
.hero-logo.bitmoji {
    opacity: 0;
    transform: scale(0.3);
}
.hero-logo-wrap:hover .hero-logo.formal {
    opacity: 0;
    transform: scale(0.8);
}
.hero-logo-wrap:hover .hero-logo.bitmoji {
    opacity: 1;
    transform: scale(1);
    animation: heroBitmojiBounce 0.6s 0.15s ease both;
}
@keyframes heroBitmojiBounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.12) rotate(3deg); }
    50% { transform: scale(0.95) rotate(-2deg); }
    75% { transform: scale(1.05) rotate(1deg); }
    100% { transform: scale(1) rotate(0); }
}

/* ========== SERVICES ========== */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px 36px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient border on hover via pseudo */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(42,157,143,0.15), 0 0 40px rgba(26,58,122,0.1);
}
.service-card:hover::before { opacity: 1; }

/* Card logo wrap — bitmoji hover */
.card-logo-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 24px;
}

.card-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-logo.formal {
    opacity: 1;
    transform: scale(1);
}
.card-logo.bitmoji {
    opacity: 0;
    transform: scale(0.3);
}

.service-card:hover .card-logo.formal {
    opacity: 0;
    transform: scale(0.8);
}
.service-card:hover .card-logo.bitmoji {
    opacity: 1;
    transform: scale(1);
    animation: bitmojiSettle 0.6s 0.2s ease both;
}

@keyframes bitmojiSettle {
    0% { transform: scale(1); }
    30% { transform: scale(1.08) rotate(2deg); }
    50% { transform: scale(0.97) rotate(-1deg); }
    70% { transform: scale(1.03) rotate(0.5deg); }
    100% { transform: scale(1) rotate(0); }
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-bright);
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: auto;
    padding-top: 16px;
}
.service-card:hover .card-cta {
    letter-spacing: 2px;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-copy p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}
.about-copy p:first-of-type { margin-top: 24px; }

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    border: 2px solid var(--card-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-logo img:not(.about-photo) {
    max-width: 250px;
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(42,157,143,0.15));
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-heading);
    display: inline;
}
.stat-plus {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--teal-bright);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ========== REVIEWS ========== */
.reviews-section {
    padding: 100px 0;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-logo { flex-shrink: 0; }

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
}

.rating-stars {
    color: var(--stars);
    font-size: 22px;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 14px;
}

/* Carousel */
.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-carousel {
    overflow: hidden;
    flex: 1;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 28px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.review-card:hover {
    border-color: rgba(42,157,143,0.3);
}

.review-stars {
    color: var(--stars);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-heading);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.carousel-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* ========== GALLERY ========== */
.gallery-section {
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--card-border);
    background: transparent;
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    color: #fff;
    border-color: transparent;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.gallery-grid .gallery-item {
    flex: 0 0 calc(25% - 12px);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: 12px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,122,0.7), rgba(42,157,143,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 36px;
    z-index: 10;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    padding: 20px;
    z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== FAQ ========== */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-heading);
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--teal-bright); }

.faq-icon {
    font-size: 24px;
    color: var(--teal);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========== SERVICE AREA ========== */
.area-section {
    padding: 100px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.area-map iframe {
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.area-list h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-heading);
    margin-bottom: 24px;
}

.area-list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.area-list li {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
}

.area-list li strong { color: var(--text-heading); }

.area-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--teal-bright);
    font-style: italic;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--teal-bright);
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.contact-item a,
.contact-item p {
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--teal-bright); }

/* Contact form */
.contact-form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-heading);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a3a3a3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.form-group select option { background: var(--bg-top); color: var(--text-body); }

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    cursor: pointer;
}

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}
.form-status.success { color: var(--teal-bright); }
.form-status.error { color: #ef4444; }

/* ========== FOOTER ========== */
.footer {
    background: var(--brand-bar-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-heading);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a,
.footer-col li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer-col a:hover { color: var(--teal-bright); }

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    width: 320px;
    margin-top: 20px;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}
.social-link:hover {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-cta-wrap p {
    margin-bottom: 8px;
}

.footer-cta {
    font-weight: 600;
    color: var(--teal-bright) !important;
    transition: all 0.3s;
}
.footer-cta:hover { letter-spacing: 1px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom a {
    color: var(--teal-bright);
    font-weight: 500;
}
.footer-bottom a:hover { text-decoration: underline; }

/* ========== FLOATING BUTTONS ========== */
.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9990;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.float-phone {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    color: #fff;
}
.float-email {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--teal-bright);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 30px rgba(42,157,143,0.4);
}

/* ========== SCROLL REVEAL ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== BRICK PAVERS ========== */
.brick-pavers-section {
    padding: 80px 0;
}
.pavers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.paver-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 36px 32px;
    transition: all 0.3s;
}
.paver-card:hover {
    border-color: rgba(42,157,143,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.paver-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}
.paver-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.paver-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}
.pavers-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== RESPONSIVE ========== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-title { font-size: 50px; }
    .section-title { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-logo { order: -1; }
    .about-logo img:not(.about-photo) { max-width: 200px; }
    .about-photo { max-width: 350px; }
    .area-grid { grid-template-columns: 1fr; }
    .area-map { order: 2; }
    .gallery-grid .gallery-item { flex: 0 0 calc(33.333% - 11px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait */
@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
        --top-offset: 100px;
    }

    .hero-title { font-size: 34px; }
    .hero-sub { font-size: 14px; }
    .section-title { font-size: 30px; }
    .section-sub { font-size: 16px; margin-bottom: 36px; }

    /* Nav mobile */
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--top-offset);
        left: 0;
        right: 0;
        background: var(--bg-top);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--card-border);
    }
    .nav-menu.active { display: flex; }
    .nav-cta { display: none; }

    .services-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pavers-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid .gallery-item { flex: 0 0 calc(50% - 8px); }

    .stats-row { gap: 32px; }
    .stat-num, .stat-plus { font-size: 36px; }

    .reviews-header { flex-direction: column; text-align: center; }

    .trust-divider { display: none; }
    .trust-row { gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Mobile */
@media (max-width: 480px) {
    .hero { min-height: 90vh; }
    .hero-title { font-size: 24px; }
    .hero-sub { font-size: 12px; letter-spacing: 0.5px; }
    .hero-content { padding: 20px 16px; }
    .trust-row { flex-wrap: wrap; justify-content: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 280px; }

    .section-title { font-size: 26px; }

    .brand-bar-inner { gap: 20px; justify-content: flex-start; padding: 0 16px; }

    .logo img { height: 50px; }

    .services-grid { max-width: 100%; }
    .service-card { padding: 36px 24px 28px; }
    .card-logo-wrap { width: 120px; height: 120px; }

    .gallery-grid { gap: 10px; }
    .gallery-grid .gallery-item { flex: 0 0 calc(50% - 5px); }

    .review-card { min-width: 260px; max-width: 260px; padding: 20px; }

    .stat-num, .stat-plus { font-size: 30px; }
    .stats-row { gap: 24px; }

    .floating-btns { bottom: 16px; right: 16px; }
    .float-btn { width: 46px; height: 46px; }
}
