/*
Theme Name: Defaris - Rehnuma Premium
Theme URI: https://defaris.com
Author: Defaris Care
Author URI: https://defaris.com
Description: Premium family support platform theme for Defaris - Rehnuma | Care Redefined. Designed for overseas Pakistanis caring for their families back home.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: defaris
Tags: custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, custom-colors, rtl-language-support
*/

/* =========================================================
   DEFARIS BRAND DESIGN SYSTEM
   Colors: Deep Green #0B1A10, Gold #C9933A, Cream #FDF6EC
   Fonts: Cormorant Garamond (headings), Outfit (body)
   ========================================================= */

:root {
  --clr-deep-green: #0B1A10;
  --clr-mid-green:  #1A3320;
  --clr-light-green:#2A5035;
  --clr-gold:       #C9933A;
  --clr-light-gold: #E8B96A;
  --clr-cream:      #FDF6EC;
  --clr-white:      #FFFFFF;
  --clr-black:      #0A0A0A;
  --clr-gray-100:   #F8F5F0;
  --clr-gray-200:   #EDE8E0;
  --clr-gray-400:   #9C9488;
  --clr-gray-600:   #5A5550;
  --clr-success:    #2ECC71;
  --clr-error:      #E74C3C;
  --clr-warning:    #F39C12;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  --shadow-sm:  0 2px 8px rgba(11,26,16,.08);
  --shadow-md:  0 4px 24px rgba(11,26,16,.14);
  --shadow-lg:  0 8px 48px rgba(11,26,16,.20);
  --shadow-gold:0 4px 24px rgba(201,147,58,.25);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-deep-green);
  background: var(--clr-cream);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-deep-green);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--clr-gray-600); }

a { color: var(--clr-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--clr-light-gold); }

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

ul { list-style: none; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(201,147,58,.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-desc { max-width: 600px; font-size: 1.1rem; margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  color: var(--clr-deep-green);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,147,58,.4);
  color: var(--clr-deep-green);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-deep-green);
}

.btn-dark {
  background: var(--clr-deep-green);
  color: var(--clr-cream);
}
.btn-dark:hover {
  background: var(--clr-mid-green);
  color: var(--clr-cream);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-deep-green);
}
.btn-white:hover {
  background: var(--clr-cream);
  color: var(--clr-deep-green);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ── Cards ── */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-gray-200);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-dark {
  background: var(--clr-mid-green);
  color: var(--clr-cream);
  border-color: var(--clr-light-green);
}
.card-dark h3, .card-dark h4 { color: var(--clr-cream); }
.card-dark p { color: rgba(253,246,236,.75); }

.card-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  color: var(--clr-deep-green);
}
.card-gold h3, .card-gold h4 { color: var(--clr-deep-green); }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(11,26,16,.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-cream);
  letter-spacing: .04em;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  color: var(--clr-gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(253,246,236,.85);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu .current-menu-item a {
  color: var(--clr-gold);
  background: rgba(201,147,58,.1);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav-menu .has-dropdown { position: relative; }
.nav-menu .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--clr-deep-green);
  border: 1px solid rgba(201,147,58,.2);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}
.nav-menu .has-dropdown:hover .dropdown { display: block; }
.nav-menu .dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: rgba(253,246,236,.85);
  font-size: .875rem;
}
.nav-menu .dropdown li a:hover {
  background: rgba(201,147,58,.1);
  color: var(--clr-gold);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-deep-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,16,.95) 0%, rgba(26,51,32,.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(201,147,58,.12);
  border: 1px solid rgba(201,147,58,.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title span { color: var(--clr-gold); }

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(253,246,236,.8);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,246,236,.7);
  font-size: .875rem;
}

.hero-trust-item svg { color: var(--clr-gold); flex-shrink: 0; }

/* ── Stats ── */
.stats-section {
  background: var(--clr-deep-green);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .9rem;
  color: rgba(253,246,236,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-gray-200);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body { padding: 28px; }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,147,58,.12), rgba(232,185,106,.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clr-gold);
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { font-size: .9rem; margin-bottom: 20px; }
.service-card a { font-weight: 600; color: var(--clr-gold); font-size: .9rem; }
.service-card a:hover { color: var(--clr-light-gold); }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step-item { text-align: center; }

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-deep-green);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}

.step-item h4 { font-size: 1.2rem; margin-bottom: 12px; }
.step-item p { font-size: .9rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 2px solid var(--clr-gray-200);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.pricing-card.featured {
  background: var(--clr-deep-green);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}
.pricing-card.featured h3 { color: var(--clr-cream); }
.pricing-card.featured p { color: rgba(253,246,236,.7); }
.pricing-card.featured .pricing-features li { color: rgba(253,246,236,.85); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  color: var(--clr-deep-green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.pricing-price {
  margin: 24px 0;
}
.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-gold);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.pricing-period {
  font-size: .9rem;
  color: var(--clr-gray-400);
  display: block;
  margin-top: 4px;
}

.pricing-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--clr-gray-600);
}
.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(201,147,58,.12);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C9933A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--clr-gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-gold);
}
.testimonial-name { font-weight: 600; font-size: .95rem; color: var(--clr-deep-green); }
.testimonial-location { font-size: .8rem; color: var(--clr-gray-400); }

/* ── CEO Message ── */
.ceo-section {
  background: var(--clr-deep-green);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201,147,58,.06);
  line-height: 1;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.ceo-img-wrap {
  position: relative;
}
.ceo-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.ceo-img-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  color: var(--clr-deep-green);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}
.ceo-img-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.ceo-img-badge .label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; }

.ceo-content .section-label { margin-bottom: 20px; }
.ceo-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--clr-cream);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ceo-content p { color: rgba(253,246,236,.75); margin-bottom: 16px; }
.ceo-signature {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,147,58,.2);
}
.ceo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-cream);
  margin-bottom: 4px;
}
.ceo-title { font-size: .875rem; color: var(--clr-gold); letter-spacing: .06em; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-gold);
  margin-bottom: 12px;
  display: block;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.blog-card p { font-size: .875rem; margin-bottom: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--clr-gray-400);
}

/* ── Contact ── */
.contact-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-gray-200);
}

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

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

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-deep-green);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--clr-deep-green);
  background: var(--clr-gray-100);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(201,147,58,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Footer ── */
.site-footer {
  background: var(--clr-deep-green);
  color: var(--clr-cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,147,58,.15);
}

.footer-brand p { color: rgba(253,246,236,.65); font-size: .9rem; margin: 20px 0 28px; max-width: 320px; }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(201,147,58,.1);
  border: 1px solid rgba(201,147,58,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-deep-green);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--clr-cream);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,147,58,.15);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(253,246,236,.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { color: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { margin: 0; font-size: .875rem; color: rgba(253,246,236,.65); }
.footer-contact-item a { color: rgba(253,246,236,.65); }
.footer-contact-item a:hover { color: var(--clr-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(253,246,236,.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(253,246,236,.45); }
.footer-bottom a:hover { color: var(--clr-gold); }

/* ── Dashboard ── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: var(--clr-gray-100);
}

.dashboard-sidebar {
  background: var(--clr-deep-green);
  padding: 32px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(201,147,58,.15);
  margin-bottom: 24px;
}

.sidebar-nav {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: rgba(253,246,236,.7);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-nav-item a:hover,
.sidebar-nav-item.active a {
  background: rgba(201,147,58,.12);
  color: var(--clr-gold);
}
.sidebar-nav-item a svg { flex-shrink: 0; }

.dashboard-main { padding: 40px; overflow-y: auto; }

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.dashboard-greeting h2 { font-size: 1.8rem; margin-bottom: 4px; }
.dashboard-greeting p { color: var(--clr-gray-400); font-size: .9rem; margin: 0; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--clr-gray-200);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-icon.green { background: rgba(42,80,53,.12); color: var(--clr-light-green); }
.stat-card-icon.gold { background: rgba(201,147,58,.12); color: var(--clr-gold); }
.stat-card-icon.blue { background: rgba(59,130,246,.12); color: #3B82F6; }
.stat-card-icon.red { background: rgba(239,68,68,.12); color: #EF4444; }

.stat-card-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--clr-deep-green); line-height: 1; }
.stat-card-label { font-size: .8rem; color: var(--clr-gray-400); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── Wallet ── */
.wallet-balance-card {
  background: linear-gradient(135deg, var(--clr-deep-green), var(--clr-mid-green));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--clr-cream);
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.wallet-balance-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(201,147,58,.08);
  border-radius: 50%;
}
.wallet-balance-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: rgba(201,147,58,.05);
  border-radius: 50%;
}
.wallet-label { font-size: .875rem; color: rgba(253,246,236,.6); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; position: relative; z-index: 1; }
.wallet-amount { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: var(--clr-gold); line-height: 1; margin-bottom: 8px; position: relative; z-index: 1; }
.wallet-currency { font-size: 1.5rem; vertical-align: super; }

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  background: var(--clr-deep-green);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}

.auth-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-cream);
}

.auth-visual-content h2 {
  font-size: 2.5rem;
  color: var(--clr-cream);
  margin-bottom: 16px;
}
.auth-visual-content p { color: rgba(253,246,236,.75); font-size: 1.1rem; }

.auth-form-side {
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-form-wrap { width: 100%; max-width: 440px; }
.auth-form-wrap h1 { font-size: 2.2rem; margin-bottom: 8px; }
.auth-form-wrap > p { color: var(--clr-gray-400); margin-bottom: 36px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-gray-200);
}
.auth-divider span { font-size: .8rem; color: var(--clr-gray-400); font-weight: 500; }

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  color: var(--clr-gray-600);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-google:hover { border-color: var(--clr-gold); background: var(--clr-gray-100); color: var(--clr-deep-green); }

.auth-link { font-size: .9rem; color: var(--clr-gray-400); text-align: center; margin-top: 24px; }
.auth-link a { color: var(--clr-gold); font-weight: 600; }

/* ── Admin Panel ── */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #F1F5F4;
}

.admin-topbar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-gray-200);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-content { padding: 32px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table th {
  background: var(--clr-gray-100);
  padding: 14px 20px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-gray-600);
  border-bottom: 1px solid var(--clr-gray-200);
}
.data-table td {
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--clr-gray-600);
  border-bottom: 1px solid var(--clr-gray-200);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--clr-gray-100); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge-success { background: rgba(46,204,113,.12); color: #1A8A4A; }
.badge-warning { background: rgba(243,156,18,.12); color: #C87A00; }
.badge-error   { background: rgba(231,76,60,.12);  color: #C0392B; }
.badge-info    { background: rgba(52,152,219,.12);  color: #1A6FA3; }
.badge-gold    { background: rgba(201,147,58,.12);  color: var(--clr-gold); }

/* ── Notification Toast ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--clr-gold);
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn .3s ease;
}
.toast-success { border-color: var(--clr-success); }
.toast-error   { border-color: var(--clr-error); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: var(--clr-deep-green);
  border: 1px solid rgba(201,147,58,.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
}
.cookie-banner h4 { color: var(--clr-cream); margin-bottom: 12px; }
.cookie-banner p { color: rgba(253,246,236,.7); font-size: .875rem; margin-bottom: 20px; }
.cookie-actions { display: flex; gap: 12px; }

/* ── Section Backgrounds ── */
.bg-dark  { background: var(--clr-deep-green); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--clr-cream); }
.bg-dark p { color: rgba(253,246,236,.75); }
.bg-mid   { background: var(--clr-mid-green); }
.bg-cream { background: var(--clr-cream); }
.bg-white { background: var(--clr-white); }
.bg-gray  { background: var(--clr-gray-100); }
.bg-gradient { background: linear-gradient(135deg, var(--clr-deep-green) 0%, var(--clr-mid-green) 100%); }

/* ── Dividers ── */
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-light-gold));
  border-radius: 3px;
  margin: 16px 0 32px;
}
.divider-gold.center { margin: 16px auto 32px; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold   { color: var(--clr-gold); }
.text-cream  { color: var(--clr-cream); }
.text-green  { color: var(--clr-deep-green); }
.text-muted  { color: var(--clr-gray-400); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity .6s ease; }
.fade-in.visible { opacity: 1; }

/* ── Inner Page Hero ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--clr-deep-green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--clr-cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--clr-cream); font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero p  { color: rgba(253,246,236,.75); max-width: 600px; margin: 16px auto 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(253,246,236,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--clr-gold); }
.breadcrumb span { color: rgba(253,246,236,.4); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ceo-grid { grid-template-columns: 1fr; gap: 48px; }
  .ceo-img-wrap { max-width: 400px; margin: 0 auto; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-actions .btn { display: none; }
  .nav-actions .btn:last-child { display: inline-flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .btn-lg { padding: 14px 28px; }
}

/* ── Mobile Nav ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-deep-green);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--clr-cream);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,147,58,.1);
}
.mobile-menu a:hover { color: var(--clr-gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--clr-cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Progress Bar ── */
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--clr-gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-light-gold));
  border-radius: var(--radius-full);
  transition: width .8s ease;
}

/* ── Accordion (FAQ) ── */
.faq-item {
  border-bottom: 1px solid var(--clr-gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-deep-green);
  gap: 20px;
}
.faq-question:hover { color: var(--clr-gold); }
.faq-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--clr-gold);
}
.faq-item.open .faq-icon { background: var(--clr-gold); color: var(--clr-deep-green); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--clr-gray-600);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── Map placeholder ── */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-gray-200);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Service Hero ── */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-deep-green);
  padding: 120px 0 80px;
}

/* ── Plans comparison table ── */
.plans-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.plans-table th, .plans-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--clr-gray-200); }
.plans-table th { font-family: var(--font-heading); font-size: 1.1rem; background: var(--clr-gray-100); }
.plans-table td:nth-child(2), .plans-table th:nth-child(2) { background: rgba(201,147,58,.05); }
.plans-table .check { color: var(--clr-success); font-size: 1.2rem; }
.plans-table .cross { color: var(--clr-error); font-size: 1.2rem; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  color: var(--clr-deep-green);
  border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }
