/* ============================================================
   PULINO ADVOGADOS — Design System (White + Blue + Gold)
   Base: GOMES & AMARO 3.0 adapted to Pulino palette
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --blue-900: #0f1a24;
    --blue-800: #142433;
    --blue-700: #1a2b3c;
    --blue-600: #1e3a52;
    --blue-500: #244a6a;
    --gold-400: #d4b87a;
    --gold-500: #b2955e;
    --gold-500-rgb: 178, 149, 94;
    --gold-600: #9a7e48;
    --gold-300: #e0c991;
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd5a;
    --text-dark: #1A1A1A;
    --text-muted: #5F5F5F;
    --text-light: #8a8a8a;
    --bg-light: #f8f8f8;
    --bg-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-bg-dark: rgba(15, 26, 36, 0.95);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--gold-500);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f4f4f5;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* --- Typography --- */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.section-tag {
    color: var(--gold-500);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    line-height: 1.15;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
}

.section-description {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 0.15em;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }
}

.nav-link {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    transition: color 0.3s ease;
    opacity: 0.8;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--gold-500);
    opacity: 1;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem;
    z-index: 99;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}
.mobile-menu a:last-child {
    border-bottom: none;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-900);
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bckg01.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (max-width: 1023px) {
    .hero-bg {
        background-image: url('../images/backmobile.webp');
    }
}

.hero-bg::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        padding: 5rem 1.5rem;
    }
}

.hero-mobile-person {
    display: none;
}

@media (max-width: 1023px) {
    .hero {
        padding-bottom: 0;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        padding-top: 5rem;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1;
    }

    .hero-description {
        margin-bottom: 1.5rem; /* Reduced */
    }

    .hero-mobile-person {
        display: block;
        margin-top: 2rem; /* Spacing from button if needed, but user wants "sem espaço" */
        width: 100%;
        max-width: 450px;
        align-self: center;
        margin-bottom: 0;
    }

    /* Target the button specifically to remove bottom margin if any */
    .hero-text .btn-premium-outer {
        width: 100%;
        margin-bottom: 0;
    }
    .hero-text .btn-premium-outer .btn-premium-inner {
        width: 100%;
    }

    .hero-mobile-person {
        margin-top: 0; /* REMOVED NEGATIVE MARGIN */
    }

    .hero-mobile-person img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: -1px;
    }
}

.hero-text .section-tag {
    color: var(--gold-400);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    padding-right: 0.15em;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    border-left: 2px solid var(--gold-500);
    padding-left: 1.25rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

/* --- Hero Form --- */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-form-wrapper p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--blue-900);
    color: #fff;
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
    background-size: 200% auto;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(178, 149, 94, 0.3);
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background-position: right center;
    box-shadow: 0 0 30px rgba(178, 149, 94, 0.4);
    transform: scale(1.02);
}

.form-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- Premium Buttons --- */
.btn-premium-outer {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px;
    border-radius: 3px;
    transition: all 0.4s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-premium-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 25%, var(--gold-300) 50%, var(--gold-400) 75%, var(--gold-600) 100%);
    background-size: 200% auto;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(178, 149, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

@media (min-width: 640px) {
    .btn-premium-inner {
        padding: 1.25rem 3rem;
        font-size: 13px;
    }
}

.btn-premium-outer:hover .btn-premium-inner {
    background-position: right center;
    box-shadow: 0 0 30px rgba(178, 149, 94, 0.4);
    transform: scale(1.02);
}

.btn-premium-inner svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.4s ease;
}

.btn-premium-outer:hover .btn-premium-inner svg {
    transform: rotate(15deg) scale(1.1);
}

/* Light BG variant */
.btn-premium-outer.light-bg {
    background: rgba(178, 149, 94, 0.05);
    border-color: rgba(178, 149, 94, 0.15);
}

/* WhatsApp Green variant */
.btn-premium-outer.green {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.1);
}

.btn-premium-outer.green .btn-premium-inner {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-premium-outer.green:hover .btn-premium-inner {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* --- Marquee / Ticker --- */
.marquee-section {
    padding: 1.25rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    z-index: 20;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 3rem;
}

.marquee-item svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-500);
    flex-shrink: 0;
}

/* --- Sections Common --- */
.section {
    padding: 3.5rem 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 2.5rem;
    }
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1200px) {
    .section-inner {
        padding: 0 2rem;
    }
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center; /* Center for formal high-end look */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(178, 149, 94, 0.12);
}

.service-card .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    opacity: 0.06;
    color: var(--gold-500);
    position: absolute;
    top: 15px;
    right: 15px;
    transition: all 0.4s ease;
}

.service-card:hover .step-number {
    opacity: 0.18;
    transform: scale(1.15) rotate(-5deg);
}

.service-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: var(--gold-500);
    background: rgba(var(--gold-500-rgb, 178, 149, 94), 0.05);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold-500);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--gold-500);
}

.service-card p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

/* --- About Section --- */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-text .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--blue-900);
    border-bottom: 1px solid rgba(178, 149, 94, 0.2);
    padding-bottom: 0.75rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-text .body-text {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-text .oab-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-600);
    font-weight: 700;
    margin-top: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.about-image-wrapper .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    aspect-ratio: 4 / 5;
}

.about-image-wrapper .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(30%);
    transition: all 0.7s ease;
}

.about-image-wrapper:hover .image-frame img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-image-wrapper .accent-border {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 1px solid var(--gold-500);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
}

/* --- Diferenciais / Differentials Section --- */
.differentials-section {
    background: var(--blue-900);
    color: #fff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diff-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-500);
    transform: translateY(-3px);
}

.diff-card .diff-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
    color: var(--gold-400);
}

.diff-card .diff-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold-400);
}

.diff-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--bg-light);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 4rem 3rem;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(178, 149, 94, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--bg-white);
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    color: var(--gold-500);
}

.faq-item .faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item .faq-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold-500);
    stroke-width: 2;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1rem;
    font-weight: 300;
}

/* --- Reviews Section --- */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

.review-card .review-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.review-author .author-info strong {
    font-size: 13px;
    color: var(--text-dark);
    display: block;
}

.review-author .author-info span {
    font-size: 11px;
    color: var(--text-light);
}

/* Google badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 99px;
    padding: 0.5rem 1rem;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.google-badge svg {
    width: 18px;
    height: 18px;
}

/* --- Location / Map Section --- */
.location-section {
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.location-section {
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 0.7fr 1.3fr;
        gap: 3rem;
        grid-template-areas: 
            "image info"
            "image map";
    }

    .location-image {
        grid-area: image;
    }

    .contact-info-list {
        grid-area: info;
    }

    .map-wrapper {
        grid-area: map;
        margin-top: -1rem; /* Closer to info */
    }
}

.location-image {
    position: relative;
    height: 100%;
}

.location-image .image-frame {
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(var(--gold-500-rgb, 178, 149, 94), 0.08); /* Using a fallback if rgb var is missing */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-600);
}

.card-content h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
}

.map-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    aspect-ratio: 21 / 9;
    max-height: 250px;
    position: relative;
    background: #eee;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, var(--gold-500) 50%);
    opacity: 0.15;
    pointer-events: none;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.1) brightness(0.95);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

/* --- Footer --- */
.footer {
    background: var(--blue-900);
    color: #fff;
    padding: 5rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
    margin-top: 1.25rem;
    font-weight: 300;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 0.35rem 0;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.footer-contact .contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-500);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-bottom .mega-ads-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom .mega-ads-link span {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: italic;
}

.footer-bottom .mega-ads-link img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.footer-bottom .mega-ads-link:hover img {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.whatsapp-balloon {
    background: #fff;
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    max-width: 240px;
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-balloon.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-balloon p {
    font-size: 13px;
    line-height: 1.5;
    padding-right: 1.5rem;
}

.whatsapp-balloon .close-balloon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 2px;
    transition: color 0.3s ease;
}
.whatsapp-balloon .close-balloon:hover {
    color: var(--text-dark);
}

.whatsapp-balloon .close-balloon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.whatsapp-balloon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: rotate(45deg);
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* WhatsApp hover tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    background: var(--blue-900);
    color: #fff;
    font-size: 10px;
    padding: 0.5rem 0.75rem;
    border-radius: 99px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Back to Top Button (in footer) --- */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--gold-400);
}

.back-to-top .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.back-to-top:hover .arrow-circle {
    background: var(--gold-600);
}

.back-to-top .arrow-circle svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}
