/* ========================================
   ADVOCATE DILIP KUMAR DILIP - PROFESSIONAL CSS
   Modern, Dynamic, Premium Design
======================================== */

/* CSS Variables */
:root {
    --navy: #1a2a4a;
    --navy-dark: #0d1520;
    --navy-light: #2a3f6a;
    --gold: #d4a853;
    --gold-light: #ecc97a;
    --gold-dark: #b8903a;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 168, 83, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.bg-navy {
    background: var(--navy);
}

.bg-gold {
    background: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
}

/* Section Styling */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 21, 32, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    /* Safety cap */
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-text span {
    color: var(--gold);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-phone {
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION V2 (Cinematic)
======================================== */
.hero-v2 {
    position: relative;
    height: 100vh;
    background: #050a14;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(20, 30, 60, 0.4) 0%, transparent 60%),
        linear-gradient(to right, rgba(5, 10, 20, 0.9) 0%, rgba(5, 10, 20, 0.4) 50%, rgba(5, 10, 20, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

/* Typography & Content */
.hero-content-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.title-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-title-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: #e2e8f0;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    letter-spacing: -2px;
}

.reveal-text {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-text:nth-child(2) {
    color: #d4af37;
    /* Metallic Gold */
    background: linear-gradient(135deg, #f3e5b5 0%, #d4af37 40%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.1s;
}

@keyframes revealUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.subtitle-wrapper {
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-subtitle-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #94a3b8;
    transform: translateY(100%);
    opacity: 0;
    animation: revealUp 1s ease forwards 0.4s;
    border-left: 1px solid #d4af37;
    padding-left: 20px;
}

/* Button v2 */
.cta-wrapper {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.btn-gold-v2 {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

.btn-gold-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #d4af37;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-gold-v2:hover {
    color: #050a14;
    border-color: #d4af37;
}

.btn-gold-v2:hover::before {
    width: 100%;
}

/* Visual Area */
.hero-visual-v2 {
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.statue-container {
    height: 90%;
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeIn 2s ease forwards 0.5s;
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-statue-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #d4af37;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Adjustments for Responsive */
@media (max-width: 1200px) {
    .hero-title-v2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title-v2 {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }

    .hero-content-v2 {
        padding-left: 0;
        align-items: center;
        z-index: 20;
    }

    .hero-visual-v2 {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.4;
        pointer-events: none;
    }

    .hero-subtitle-v2 {
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid #d4af37;
        padding-bottom: 20px;
    }
}





/* ========================================
   ABOUT SECTION
======================================== */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, var(--gray-50) 0%, transparent 50%);
}

.about .container {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main .image-placeholder {
    width: 100%;
    height: 600px;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main .image-placeholder i {
    font-size: 150px;
    color: var(--gold);
    opacity: 0.5;
}

.about-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-experience-badge h3 {
    font-size: 3rem;
    color: var(--navy-dark);
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-400);
}

/* ========================================
   PRACTICE AREAS
======================================== */
.practice {
    background: var(--gray-50);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.practice-card:hover::before {
    transform: scaleX(1);
}

.practice-card .icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.practice-card:hover .icon-wrapper {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.practice-card .icon-wrapper i {
    font-size: 2.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.practice-card:hover .icon-wrapper i {
    color: var(--navy-dark);
}

.practice-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.practice-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.practice-card .learn-more {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.practice-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose {
    background: var(--gradient-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose .section-header h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.3);
}

.why-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .icon-wrapper {
    background: var(--gradient-gold);
}

.why-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.why-card:hover .icon-wrapper i {
    color: var(--navy-dark);
}

.why-card h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   CONSULTATION PROCESS
======================================== */
.process {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gray-100);
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 1s ease;
}

.process-timeline.animated::after {
    width: 80%;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 3px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-number span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-400);
    transition: var(--transition);
}

.process-step:hover .step-number {
    border-color: var(--gold);
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.process-step:hover .step-number span {
    color: var(--navy-dark);
}

.step-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-400);
    max-width: 220px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
    background: var(--gray-50);
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 45px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.15;
    font-family: serif;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    font-family: 'Cormorant Garamond', serif;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--gradient-navy);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-list .icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list .icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-list h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-list p,
.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list a:hover {
    color: var(--gold);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact-form-wrapper {
    padding: 60px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: var(--gray-100);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.map-placeholder p {
    color: var(--gray-400);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .hero-title-v2 {
        font-size: 5rem;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {

    .hero-container,
    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-visual-v2 {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.15;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-statue-img {
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    .hero-content-v2 {
        max-width: 800px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        z-index: 2;
        padding-left: 0;
    }

    .hero-subtitle-v2 {
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about .container {
        gap: 60px;
    }

    .about-visual {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .practice-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-title-v2 {
        font-size: 3.5rem;
    }

    .hero-subtitle-v2 {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        position: relative;
        left: 0;
        margin-top: 20px;
    }

    .practice-grid,
    .why-grid,
    .process-timeline,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-v2 {
        font-size: 2.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .btn-gold-v2 {
        width: 100%;
        padding: 15px 30px;
        text-align: center;
        display: block;
    }
}