/* ===== PREMIUM LAW FIRM CSS ===== */
:root {
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-mid: #1a2d4a;
    --gold: #c8a951;
    --gold-light: #ddc06e;
    --gold-dark: #a68b3c;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #eef0f3;
    --gray-200: #dde1e7;
    --gray-300: #c5cad3;
    --gray-500: #8891a0;
    --gray-600: #5f6b7d;
    --gray-700: #3d4a5c;
    --gray-800: #2a3547;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(10,22,40,0.08);
    --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
    --shadow-xl: 0 24px 60px rgba(10,22,40,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--gray-700); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
h1,h2,h3,h4 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-light { color: rgba(255,255,255,0.7); }

/* ===== Preloader ===== */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner i { font-size: 3rem; color: var(--gold); animation: pulse-icon 1.5s infinite; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 20px; overflow: hidden; }
.preloader-progress { width: 0; height: 100%; background: var(--gold); border-radius: 3px; animation: load-progress 1.5s ease forwards; }
@keyframes pulse-icon { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes load-progress { to { width: 100%; } }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; font-size: 0.9rem; font-weight: 600; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,169,81,0.35); }
.btn-glass { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-glass:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1ea952; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ===== Section Header ===== */
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px; }
.section-tag.light { color: var(--gold-light); }
.section-header.centered { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.section-header p { margin-top: 18px; color: var(--gray-600); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 60px; }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(10,22,40,0.95); backdrop-filter: blur(20px); padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo i { font-size: 1.8rem; color: var(--gold); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.logo-tagline { font-size: 0.65rem; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > li > a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.btn-nav { padding: 10px 24px; background: var(--gold); color: var(--navy) !important; border-radius: 8px; font-weight: 600; }
.btn-nav:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,81,0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a i { font-size: 0.6rem; margin-left: 4px; transition: var(--transition); }
.dropdown:hover > a i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(10px); width: 700px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: 32px; opacity: 0; visibility: hidden; pointer-events: none; transition: var(--transition); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dropdown-col h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.dropdown-col a { display: block; padding: 5px 0; font-size: 0.82rem; color: var(--gray-600); }
.dropdown-col a:hover { color: var(--gold-dark); padding-left: 6px; }
.dropdown-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-200); text-align: center; }
.dropdown-view-all { font-size: 0.88rem; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 8px; }
.dropdown-view-all:hover { color: var(--gold); gap: 12px; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: hero-zoom 20s ease infinite alternate; }
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(26,45,74,0.85) 50%, rgba(10,22,40,0.92) 100%); }
.hero-particles { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(200,169,81,0.08) 1px, transparent 1px); background-size: 50px 50px; animation: particle-float 30s linear infinite; }
@keyframes particle-float { from { background-position: 0 0; } to { background-position: 50px 50px; } }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 140px 0 100px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.25); border-radius: 50px; font-size: 0.82rem; font-weight: 500; color: var(--gold-light); margin-bottom: 28px; }
.hero-line { display: block; }
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .highlight { color: var(--gold); display: inline-block; position: relative; }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 600px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.trust-item i { color: var(--gold); font-size: 0.9rem; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scroll-anim 2s infinite; }
@keyframes scroll-anim { 0% { opacity: 1; height: 40px; } 50% { opacity: 0.5; height: 20px; } 100% { opacity: 1; height: 40px; } }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--navy); padding: 50px 0; position: relative; z-index: 10; margin-top: -2px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-box { text-align: center; padding: 20px; position: relative; }
.stat-box::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.stat-box:last-child::after { display: none; }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-number::after { content: '+'; font-size: 1.8rem; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== About Section ===== */
.about-section { background: var(--off-white); }
.about-premium-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; height: 500px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 180px; height: 180px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--white); }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge { position: absolute; top: -20px; right: 40px; width: 100px; height: 100px; background: var(--gold); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(200,169,81,0.4); animation: float-badge 3s ease-in-out infinite; }
@keyframes float-badge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.exp-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.exp-text { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--navy); opacity: 0.7; }
.about-text .section-tag { padding-left: 0; }
.about-text h2 { margin-bottom: 24px; }
.lead-text { font-size: 1.08rem; color: var(--gray-700); margin-bottom: 16px; font-weight: 500; }
.about-text p { color: var(--gray-600); margin-bottom: 20px; }
.about-highlights { display: flex; flex-direction: column; gap: 18px; margin: 30px 0 36px; }
.highlight-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.highlight-item:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.highlight-icon { width: 48px; height: 48px; min-width: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 10px; }
.highlight-icon i { font-size: 1.1rem; color: var(--navy); }
.highlight-item strong { display: block; font-size: 0.92rem; color: var(--navy); }
.highlight-item span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== Practice Area Cards ===== */
.practice-section { background: var(--white); overflow: hidden; }
.practice-bg-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?w=1920&h=1080&fit=crop') center/cover no-repeat fixed; opacity: 0.03; }
.practice-premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.practice-premium-card { position: relative; height: 380px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.ppc-image { position: absolute; inset: 0; }
.ppc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.practice-premium-card:hover .ppc-image img { transform: scale(1.12); }
.ppc-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(10,22,40,0.95) 100%); transition: var(--transition); }
.practice-premium-card:hover .ppc-overlay { background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.97) 100%); }
.ppc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.ppc-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gold); border-radius: 10px; margin-bottom: 16px; transition: var(--transition); }
.ppc-icon i { font-size: 1.2rem; color: var(--navy); }
.practice-premium-card:hover .ppc-icon { transform: scale(1.15) rotate(-5deg); box-shadow: 0 6px 20px rgba(200,169,81,0.4); }
.ppc-content h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.ppc-content p { color: rgba(255,255,255,0.75); font-size: 0.85rem; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s ease; }
.practice-premium-card:hover .ppc-content p { max-height: 80px; opacity: 1; margin-bottom: 14px; }
.ppc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.85rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: var(--transition); }
.practice-premium-card:hover .ppc-link { opacity: 1; transform: translateY(0); }

/* ===== Lawyers Section ===== */
.lawyers-section { background: var(--off-white); }
.lawyers-premium-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.lawyer-premium-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.lawyer-premium-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.lpc-image { position: relative; height: 380px; overflow: hidden; }
.lpc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lawyer-premium-card:hover .lpc-image img { transform: scale(1.06); }
.lpc-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,22,40,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; opacity: 0; transition: var(--transition); }
.lawyer-premium-card:hover .lpc-overlay { opacity: 1; }
.lpc-social { display: flex; gap: 12px; }
.lpc-social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 50%; color: var(--navy); font-size: 1.1rem; transition: var(--transition); }
.lpc-social a:hover { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.lpc-info { padding: 30px; }
.lpc-info h3 { margin-bottom: 4px; }
.lpc-title { font-size: 0.85rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 14px; }
.lpc-info p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 18px; }
.lpc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.lpc-tags span { padding: 4px 12px; font-size: 0.72rem; font-weight: 600; background: rgba(200,169,81,0.1); color: var(--gold-dark); border-radius: 50px; border: 1px solid rgba(200,169,81,0.2); }

/* ===== Why Section ===== */
.why-section { overflow: hidden; }
.why-bg-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1920&h=1080&fit=crop') center/cover no-repeat fixed; }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(26,45,74,0.92) 100%); }
.why-section .container { position: relative; z-index: 2; }
.why-premium-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-premium-card { padding: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); transition: var(--transition); position: relative; overflow: hidden; }
.why-premium-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,169,81,0.3); transform: translateY(-5px); }
.wpc-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: rgba(200,169,81,0.08); line-height: 1; }
.wpc-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 12px; margin-bottom: 20px; transition: var(--transition); }
.why-premium-card:hover .wpc-icon { transform: rotate(-5deg) scale(1.1); box-shadow: 0 8px 25px rgba(200,169,81,0.3); }
.wpc-icon i { font-size: 1.3rem; color: var(--navy); }
.why-premium-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.why-premium-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ===== Testimonials ===== */
.testimonials-section { background: var(--white); }
.testimonials-premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-premium-card { padding: 36px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: var(--transition); position: relative; }
.testimonial-premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.tpc-quote { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: rgba(200,169,81,0.15); }
.tpc-stars { margin-bottom: 16px; }
.tpc-stars i { color: var(--gold); font-size: 0.85rem; }
.testimonial-premium-card p { font-size: 0.92rem; color: var(--gray-700); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.tpc-author { display: flex; align-items: center; gap: 14px; }
.tpc-avatar { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 800; font-size: 1.1rem; }
.tpc-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.tpc-author span { font-size: 0.78rem; color: var(--gray-500); }

/* ===== CTA Section ===== */
.cta-premium { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=800&fit=crop') center/cover no-repeat fixed; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.93), rgba(26,45,74,0.9)); }
.cta-premium .container { position: relative; z-index: 2; }
.cta-premium-content { text-align: center; max-width: 650px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(200,169,81,0.15); border: 1px solid rgba(200,169,81,0.3); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--gold-light); margin-bottom: 24px; }
.cta-premium-content h2 { color: var(--white); margin-bottom: 16px; font-size: 2.5rem; }
.cta-premium-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-premium-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-trust-row { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-trust-row span { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.cta-trust-row i { color: var(--gold); }

/* ===== Footer ===== */
.footer-premium { background: var(--navy); padding: 70px 0 0; position: relative; }
.footer-top-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold-light), var(--gold)); background-size: 300% 100%; animation: gradient-shift 4s ease infinite; }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.footer-premium-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 18px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.footer-contact-list li i { color: var(--gold); width: 16px; }
.footer-contact-list li a { color: rgba(255,255,255,0.6); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== Floating Elements ===== */
.whatsapp-float { position: fixed; bottom: 90px; right: 28px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: #25d366; color: var(--white); border-radius: 50%; font-size: 1.7rem; box-shadow: 0 6px 25px rgba(37,211,102,0.4); z-index: 998; animation: float-wa 3s ease-in-out infinite; }
@keyframes float-wa { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.whatsapp-float:hover { transform: scale(1.1); }
.wa-tooltip { position: absolute; right: 70px; background: var(--navy); color: var(--white); padding: 6px 14px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 68px; }
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); border: 1px solid rgba(200,169,81,0.3); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); }

/* ===== Mobile Bottom CTA ===== */
.mobile-bottom-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; background: var(--navy); padding: 10px 12px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.mobile-bottom-cta { display: none; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mbc-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; color: var(--white); text-align: center; }
.mbc-btn.call { background: var(--gold); color: var(--navy); }
.mbc-btn.whatsapp { background: #25d366; }
.mbc-btn.consult { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-premium-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main img { height: 400px; }
    .practice-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-premium-grid { grid-template-columns: 1fr 1fr; }
    .lawyers-premium-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--navy); flex-direction: column; align-items: flex-start; padding: 80px 28px 28px; gap: 0; transition: var(--transition); box-shadow: var(--shadow-xl); overflow-y: auto; z-index: 1001; }
    .nav-links.active { right: 0; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { display: block; padding: 14px 0; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1rem; }
    .dropdown-menu { position: static; transform: none; width: 100%; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; border: none; padding: 0 0 10px 12px; background: transparent; display: none; border-radius: 0; }
    .dropdown.mobile-open .dropdown-menu { display: block; }
    .dropdown-grid { grid-template-columns: 1fr; gap: 14px; }
    .dropdown-col h4 { color: var(--gold); border-bottom-color: rgba(255,255,255,0.08); }
    .dropdown-col a { color: rgba(255,255,255,0.6); padding: 4px 0; border-bottom: none; }
    .dropdown-footer { border-top-color: rgba(255,255,255,0.08); text-align: left; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-box::after { display: none; }
    .stat-number { font-size: 2.2rem; }
    .practice-premium-grid { grid-template-columns: 1fr; }
    .practice-premium-card { height: 300px; }
    .ppc-content p { max-height: 80px; opacity: 1; margin-bottom: 10px; }
    .ppc-link { opacity: 1; transform: none; }
    .why-premium-grid { grid-template-columns: 1fr; }
    .testimonials-premium-grid { grid-template-columns: 1fr; }
    .footer-premium-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { padding: 120px 0 80px; }
    .hero-scroll { display: none; }
    .mobile-bottom-cta { display: grid; }
    .whatsapp-float { bottom: 80px; }
    .back-to-top { bottom: 80px; right: 28px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { justify-content: center; width: 100%; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .cta-premium-buttons { flex-direction: column; align-items: center; }
    .cta-premium-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
