/* ============================================================
   SILVEROAK LEGAL — Premium Law Firm CSS
   Fonts: Playfair Display (headings) + Montserrat (body)
   Colors: Navy #0A2540, Gold #CBA45B, Silver #C0C5CE
   ============================================================ */

:root {
  --navy:      #0A2540;
  --navy-mid:  #0D2F4F;
  --navy-light:#1A3D5C;
  --gold:      #CBA45B;
  --gold-light:#E2C07A;
  --gold-dark: #A8843D;
  --silver:    #C0C5CE;
  --silver-light:#E8EAEE;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --text-dark: #1A1A2E;
  --text-mid:  #4A4A6A;
  --text-light:#7A7A9A;
  --border:    rgba(203,164,91,0.25);
  --shadow-sm: 0 2px 12px rgba(10,37,64,0.08);
  --shadow-md: 0 8px 32px rgba(10,37,64,0.12);
  --shadow-lg: 0 20px 60px rgba(10,37,64,0.18);
  --radius:    4px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }
button { cursor: pointer; font-family: var(--font-body); }

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

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 2px solid transparent; border-radius: var(--radius); transition: var(--transition); cursor: pointer; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn-lg { padding: 18px 42px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn i { font-size: 1em; }

/* Section Titles */
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto 50px; }
.section-sub.light { color: var(--silver-light); }
.section-divider { width: 60px; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-light)); margin: 16px auto 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header.left { text-align: left; }
.section-header.left .section-divider { margin-left: 0; }
.section-header.left .section-sub { margin-left: 0; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-control { width: 100%; padding: 14px 16px; border: 1.5px solid #DDD; border-radius: var(--radius); font-size: 0.9rem; color: var(--text-dark); transition: var(--transition); background: var(--white); }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,164,91,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar { background: var(--navy); padding: 8px 0; font-size: 0.78rem; border-bottom: 1px solid rgba(203,164,91,0.2); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: var(--silver); gap: 6px; display: inline-flex; align-items: center; transition: var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right a { color: #25D366; font-weight: 600; }
.top-bar-right a:hover { color: #1da851; }
.top-bar i { font-size: 0.85em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(10,37,64,0.1); transition: var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 30px rgba(10,37,64,0.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo img { height: 54px; width: auto; object-fit: contain; transition: var(--transition); }
.logo:hover img { opacity: 0.9; }

/* Navigation */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a { font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; padding: 8px 12px; border-radius: var(--radius); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav .fa-chevron-down { font-size: 0.65em; transition: var(--transition); }

/* Dropdown */
.has-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 10px); left: 0; background: var(--white); min-width: 220px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { font-size: 0.78rem; padding: 10px 18px; color: var(--text-dark); border-radius: 0; text-transform: none; letter-spacing: 0; font-weight: 500; border-bottom: 1px solid #F0F0F0; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--gold); background: #FBF8F2; padding-left: 24px; }

/* Mobile Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px 0; background: none; border: none; }
.mobile-toggle span { height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { min-height: 92vh; background: linear-gradient(135deg, var(--navy) 0%, #0D2F4F 40%, #1A3D5C 100%); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CBA45B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, rgba(255,255,255,0.05), transparent); }

.hero-content { position: relative; z-index: 2; max-width: 780px; animation: fadeInUp 0.9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(203,164,91,0.12); border: 1px solid rgba(203,164,91,0.35); padding: 8px 20px; border-radius: 50px; color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.hero-badge i { font-size: 1em; }
.hero h1 { color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 580px; margin-bottom: 40px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 50px; }
.hero-cta .whatsapp-btn { background: #25D366; border-color: #25D366; color: var(--white); }
.hero-cta .whatsapp-btn:hover { background: #1da851; border-color: #1da851; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat .lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-top: 2px; }

/* Hero decoration */
.hero-deco { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 45%; opacity: 0.06; pointer-events: none; }
.hero-deco svg { width: 100%; height: auto; }

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice-section { padding: 90px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: 8px; padding: 36px 30px; box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(203,164,91,0.3); }
.service-card:hover::before { height: 100%; }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(203,164,91,0.1), rgba(203,164,91,0.2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon i { font-size: 1.5rem; color: var(--gold); }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; margin-bottom: 20px; }
.service-card .read-more { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }
.service-card .read-more i { transition: transform 0.2s; }
.service-card:hover .read-more i { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 90px 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.why-card { text-align: center; padding: 30px 20px; }
.why-icon { width: 80px; height: 80px; border: 2px solid rgba(203,164,91,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: var(--transition); }
.why-card:hover .why-icon { border-color: var(--gold); background: rgba(203,164,91,0.1); }
.why-icon i { font-size: 1.8rem; color: var(--gold); }
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 90px 0; background: var(--off-white); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 28px; transition: transform 0.5s ease; }
.testimonial-card { min-width: calc(33.333% - 19px); background: var(--white); border-radius: 8px; padding: 36px 30px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); position: relative; flex-shrink: 0; }
.testimonial-card .quote-icon { font-size: 2.5rem; color: rgba(203,164,91,0.2); font-family: serif; line-height: 1; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-mid); font-style: italic; margin-bottom: 24px; }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem; color: var(--white); font-weight: 700; flex-shrink: 0; }
.author-info .name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.author-info .case { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.slider-btn { width: 44px; height: 44px; border: 2px solid var(--gold); background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: var(--transition); cursor: pointer; }
.slider-btn:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 90px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.blog-card { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #EAEAEA; transition: var(--transition); background: var(--white); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--navy-light), var(--navy)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img .blog-cat { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--navy); padding: 4px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--text-light); margin-bottom: 12px; align-items: center; flex-wrap: wrap; }
.blog-meta i { color: var(--gold); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--navy); line-height: 1.4; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.85rem; margin-bottom: 20px; }
.blog-card .read-more { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--navy), #1A3D5C); }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 540px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 8px; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: -24px; right: -24px; background: var(--gold); color: var(--navy); padding: 20px 24px; border-radius: 8px; text-align: center; box-shadow: var(--shadow-md); }
.about-badge .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; display: block; }
.about-badge .lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.about-content .section-header { text-align: left; }
.about-content .section-header .section-divider { margin-left: 0; }
.values-list { margin: 28px 0; }
.values-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #F0F0F0; }
.values-list li:last-child { border-bottom: none; }
.values-list .icon { width: 36px; height: 36px; background: rgba(203,164,91,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.values-list .icon i { color: var(--gold); font-size: 0.9rem; }
.values-list .text strong { display: block; color: var(--navy); font-size: 0.88rem; margin-bottom: 4px; }
.values-list .text span { font-size: 0.83rem; color: var(--text-light); }

/* ============================================================
   LAWYERS PAGE
   ============================================================ */
.lawyers-section { padding: 90px 0; background: var(--off-white); }
.lawyers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.lawyer-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.lawyer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.lawyer-card-top { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 40px 30px 30px; text-align: center; position: relative; }
.lawyer-avatar { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px; border: 3px solid var(--gold); overflow: hidden; background: rgba(203,164,91,0.1); display: flex; align-items: center; justify-content: center; }
.lawyer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lawyer-avatar .initials { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.lawyer-card-top h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.lawyer-card-top .designation { color: var(--gold); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.lawyer-card-body { padding: 24px; }
.lawyer-expertise { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.expertise-tag { background: rgba(203,164,91,0.1); color: var(--gold-dark); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; border: 1px solid rgba(203,164,91,0.25); }
.lawyer-meta { font-size: 0.82rem; color: var(--text-light); display: flex; gap: 16px; flex-wrap: wrap; }
.lawyer-meta span { display: flex; align-items: center; gap: 6px; }
.lawyer-meta i { color: var(--gold); }

/* Single Lawyer Profile */
.lawyer-profile { padding: 90px 0; }
.profile-header { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; margin-bottom: 60px; }
.profile-photo { border-radius: 8px; overflow: hidden; border: 3px solid var(--gold); }
.profile-photo img { width: 100%; }
.profile-photo .photo-placeholder { width: 100%; height: 320px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 4rem; color: var(--gold); }
.profile-info h1 { margin-bottom: 8px; }
.profile-info .designation { color: var(--gold); font-weight: 600; font-size: 1rem; margin-bottom: 20px; }
.profile-tabs { display: flex; gap: 0; border-bottom: 2px solid #EAEAEA; margin-bottom: 30px; }
.profile-tab-btn { padding: 12px 24px; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; background: none; color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.profile-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.profile-tab-content { display: none; }
.profile-tab-content.active { display: block; }
.edu-list, .exp-list { list-style: disc; padding-left: 20px; }
.edu-list li, .exp-list li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-mid); }

/* ============================================================
   BLOG SINGLE PAGE
   ============================================================ */
.blog-single { padding: 70px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.blog-article h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 24px; }
.blog-article .blog-meta { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #EAEAEA; }
.blog-article .featured-img { width: 100%; border-radius: 8px; margin-bottom: 32px; max-height: 400px; object-fit: cover; }
.blog-article .content { font-size: 0.95rem; line-height: 1.9; }
.blog-article .content h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.blog-article .content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-article .content p { margin-bottom: 18px; }
.blog-article .content ul, .blog-article .content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-article .content ul li { list-style: disc; margin-bottom: 8px; }
.blog-article .content ol li { list-style: decimal; margin-bottom: 8px; }
.sidebar-widget { background: var(--off-white); border-radius: 8px; padding: 28px; margin-bottom: 28px; border-top: 3px solid var(--gold); }
.sidebar-widget h4 { color: var(--navy); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.sidebar-posts li { padding: 12px 0; border-bottom: 1px solid #E8E8E8; }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { color: var(--text-dark); font-size: 0.85rem; font-weight: 500; line-height: 1.4; }
.sidebar-posts a:hover { color: var(--gold); }
.sidebar-posts .date { font-size: 0.73rem; color: var(--text-light); margin-top: 4px; display: block; }
.contact-widget { background: var(--navy); color: var(--white); border-top-color: var(--gold); }
.contact-widget h4 { color: var(--gold); }
.contact-widget p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 90px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-details .icon { width: 48px; height: 48px; background: rgba(203,164,91,0.1); border: 1px solid rgba(203,164,91,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-details .icon i { color: var(--gold); font-size: 1.1rem; }
.contact-details .info strong { display: block; color: var(--navy); font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-details .info span, .contact-details .info a { color: var(--text-mid); font-size: 0.9rem; }
.contact-form-wrap { background: var(--white); border-radius: 8px; padding: 40px; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); }
.contact-form-wrap h3 { margin-bottom: 28px; }
.map-wrap { margin-top: 60px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-page { padding: 90px 0; }
.testimonials-page .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testimonials-page .testimonial-card { min-width: auto; }
.rating-summary { background: var(--navy); border-radius: 8px; padding: 40px; text-align: center; margin-bottom: 60px; color: var(--white); }
.rating-summary .big-rating { font-family: var(--font-head); font-size: 4rem; color: var(--gold); font-weight: 700; }
.rating-summary .stars-row { font-size: 1.5rem; color: var(--gold); margin: 8px 0; display: flex; justify-content: center; gap: 4px; }
.rating-summary p { color: rgba(255,255,255,0.7); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1A3D5C 100%); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CBA45B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero .hero-sub { color: rgba(255,255,255,0.75); max-width: 540px; margin: 14px auto 0; position: relative; z-index: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--gold); padding: 50px 0; }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.newsletter-text h3 { font-family: var(--font-head); color: var(--navy); font-size: 1.4rem; margin-bottom: 6px; }
.newsletter-text p { color: rgba(10,37,64,0.75); font-size: 0.88rem; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: none; border-radius: var(--radius); font-size: 0.9rem; outline: none; }
.newsletter-form button { background: var(--navy); color: var(--white); border: none; white-space: nowrap; }
.newsletter-form button:hover { background: #0D2F4F; }
.success-msg { color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060F1C; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo img { height: 50px; width: auto; margin-bottom: 20px; opacity: 0.9; }
.footer-about-col p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); font-weight: 700; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.84rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul a i { font-size: 0.65em; color: var(--gold); }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.contact-list li i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.contact-list li span, .contact-list li a { color: rgba(255,255,255,0.55); font-size: 0.84rem; line-height: 1.6; }
.contact-list li a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-disclaimer { font-size: 0.73rem !important; color: rgba(255,255,255,0.22) !important; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: var(--white); border-radius: 50px; padding: 14px 20px 14px 16px; display: flex; align-items: center; gap: 8px; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.whatsapp-float:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); color: var(--white); }
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float span { display: none; }
@media (min-width: 768px) { .whatsapp-float span { display: block; } }

.scroll-top { position: fixed; bottom: 90px; right: 34px; width: 42px; height: 42px; background: var(--navy); color: var(--white); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 998; transition: var(--transition); cursor: pointer; opacity: 0; transform: translateY(10px); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-content { padding: 70px 0; max-width: 840px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--navy); }
.privacy-content p, .privacy-content li { font-size: 0.92rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.privacy-content ul { padding-left: 20px; }
.privacy-content ul li { list-style: disc; margin-bottom: 8px; }

/* ============================================================
   ADMIN PANEL ELEMENTS (shared)
   ============================================================ */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.88rem; font-weight: 500; }
.alert-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.alert-info { background: #D1ECF1; color: #0C5460; border: 1px solid #BEE5EB; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-layout .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .profile-header { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.open { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px; }
  .main-nav.open ul { flex-direction: column; align-items: center; gap: 8px; width: 100%; }
  .main-nav.open a { color: var(--white); font-size: 1rem; padding: 14px 24px; width: 100%; justify-content: center; border-radius: 4px; }
  .main-nav.open a:hover { background: rgba(203,164,91,0.15); color: var(--gold); }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(203,164,91,0.05); border-radius: 4px; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 24px; }
  .about-grid, .contact-layout, .profile-header { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .testimonial-card { min-width: 85vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about-col { grid-column: 1 / -1; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .blog-layout .sidebar { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .slider-controls { gap: 8px; }
}

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-40 { margin-bottom: 40px; }
.d-flex { display: flex; } .align-center { align-items: center; } .gap-16 { gap: 16px; }
.badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.badge-gold { background: rgba(203,164,91,0.12); color: var(--gold); border: 1px solid rgba(203,164,91,0.3); }
.badge-navy { background: var(--navy); color: var(--white); }
