@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Design Tokens */
  --bg-gradient: linear-gradient(135deg, #f8f9fc 0%, #f4f6fa 50%, #eff2f8 100%);
  --bg-glass: rgba(255, 255, 255, 0.45);
  --bg-glass-hover: rgba(255, 255, 255, 0.7);
  --bg-glass-dark: rgba(255, 255, 255, 0.6);
  
  --primary-navy: #0f172a;
  --primary-navy-light: #1e293b;
  --primary-gold: #c5a880;
  --primary-gold-dark: #b5946a;
  --primary-gold-light: #dfcbaf;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-glass: rgba(255, 255, 255, 0.5);
  --border-gold: rgba(197, 168, 128, 0.25);
  --border-gold-hover: rgba(197, 168, 128, 0.5);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-navy) 30%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 70px 0;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  box-shadow: var(--shadow-glass), var(--shadow-sm);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-gold-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass), var(--shadow-md);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary-gold);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-navy);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--primary-navy);
  color: white !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.3);
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--primary-navy);
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
}

.stat-num span {
  color: var(--primary-gold);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Image Container */
.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 10;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  background: white;
}

.hero-image-container img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-cover: cover;
  object-position: top;
  filter: contrast(1.02);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gold-light);
  color: var(--primary-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-badge .title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}

.hero-badge .subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Services Page & Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-glass-dark);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.05);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About / Biography Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-quote {
  border-left: 3px solid var(--primary-gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 16px;
  color: var(--primary-navy);
}

.about-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.link-external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-gold-dark);
}

.link-external:hover {
  color: var(--primary-navy);
}

/* CTA Forms (Generic sections) */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--primary-navy);
  border-radius: 32px;
  padding: 60px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.cta-text h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  color: white;
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.btn-form {
  background: var(--primary-gold);
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-form:hover {
  background: white;
  transform: translateY(-2px);
}

/* Light theme Form variant (when used on white backgrounds) */
.form-light .form-input {
  background: white;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  color: var(--primary-navy);
}

.form-light .form-input::placeholder {
  color: var(--text-light);
}

.form-light .form-input:focus {
  background: white;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.form-light .btn-form {
  background: var(--primary-navy);
  color: white;
}

.form-light .btn-form:hover {
  background: var(--primary-gold);
}

/* Form Success State styling */
.form-success-message {
  text-align: center;
  padding: 40px 20px;
}

.form-success-message h4 {
  font-size: 24px;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

/* Projects / Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold-dark);
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.portfolio-link:hover {
  color: var(--primary-gold);
}

/* Blog / Article Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-title a:hover {
  color: var(--primary-gold);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-more:hover {
  color: var(--primary-gold);
}

/* Article Template Styles */
.article-container {
  padding-top: 150px;
  padding-bottom: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 48px;
}

.article-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}

.article-main-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-author-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.article-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.article-meta-text {
  text-align: left;
  font-size: 13px;
}

.article-meta-name {
  font-weight: 600;
  color: var(--primary-navy);
}

.article-meta-date {
  color: var(--text-light);
}

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 26px;
  color: var(--primary-navy);
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-content h3 {
  font-size: 20px;
  color: var(--primary-navy);
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-gold);
  padding: 16px 24px;
  background: rgba(197, 168, 128, 0.06);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--primary-navy);
  margin: 36px 0;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-glass-dark);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-top: 4px;
}

/* Footer styling */
footer {
  padding: 60px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--primary-gold-dark);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-light);
}

/* Fade In Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-badge {
    left: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-box {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Mobile menu handles this via JS */
  }
  
  .menu-btn {
    display: block;
  }
  
  .section-padding {
    padding: 45px 0;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .trust-bar-split {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 15px;
  }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* WhatsApp Floating Button & Button Styles */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  background-color: #1eaf53;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
  background-color: #1eaf53 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4) !important;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-floating {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-floating svg {
    width: 24px;
    height: 24px;
  }
}

/* ===================================================
   DARK MODE THEME
   =================================================== */
[data-theme="dark"] {
  --bg-gradient: linear-gradient(135deg, #0B1120 0%, #101827 50%, #151f30 100%);
  --bg-glass: rgba(30, 41, 59, 0.55);
  --bg-glass-hover: rgba(30, 41, 59, 0.75);
  --bg-glass-dark: rgba(30, 41, 59, 0.7);
  --primary-navy: #e2e8f0;
  --primary-navy-light: #cbd5e1;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 168, 128, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] body {
  color: var(--text-main);
}

[data-theme="dark"] header {
  background: rgba(11, 17, 32, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] header.scrolled {
  background: rgba(11, 17, 32, 0.95);
}

[data-theme="dark"] .glass-card {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .glass-card:hover {
  background: rgba(30, 41, 59, 0.7);
}

[data-theme="dark"] .nav-cta {
  background: var(--primary-gold);
  color: #0f172a;
}

[data-theme="dark"] .btn-primary {
  background: var(--primary-gold);
  color: #0f172a !important;
}

[data-theme="dark"] .btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

[data-theme="dark"] .cta-box {
  background: #1a2540;
}

[data-theme="dark"] footer {
  background: rgba(11, 17, 32, 0.5);
  border-top-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .service-tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .form-light .form-input {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

[data-theme="dark"] .form-light .form-input::placeholder {
  color: var(--text-light);
}

[data-theme="dark"] .form-light .btn-form {
  background: var(--primary-gold);
  color: #0f172a;
}

[data-theme="dark"] .text-gradient {
  background: linear-gradient(135deg, #e2e8f0 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .logo {
  color: #e2e8f0;
}

[data-theme="dark"] .section-tag {
  color: var(--primary-gold);
}

[data-theme="dark"] .hero-tag {
  background: rgba(197, 168, 128, 0.1);
  border-color: rgba(197, 168, 128, 0.2);
}

[data-theme="dark"] .about-quote {
  color: #e2e8f0;
}

/* Dark Mode Toggle Button */
.theme-toggle {
  background: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(197, 168, 128, 0.1);
  border-color: var(--primary-gold);
  transform: rotate(20deg);
}

[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  margin-bottom: 20px;
  color: #f59e0b;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 20px;
}

[data-theme="dark"] .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===================================================
   LOGO MARQUEE (Trusted By)
   =================================================== */
.logo-marquee-section {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.logo-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.logo-marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

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

.marquee-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.4;
  white-space: nowrap;
  transition: all 0.3s ease;
  user-select: none;
  letter-spacing: -0.02em;
}

.marquee-logo:hover {
  opacity: 1;
  color: var(--primary-gold-dark);
}

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

/* ===================================================
   PROCESS TIMELINE (How I Work)
   =================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-glass);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process-step:hover .process-icon {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold-light), rgba(197, 168, 128, 0.2));
  z-index: 1;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
}

/* ===================================================
   BACK TO TOP BUTTON
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary-gold);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 9998;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #0f172a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

[data-theme="dark"] .back-to-top {
  background: var(--primary-gold);
  color: #0f172a;
}

[data-theme="dark"] .back-to-top:hover {
  background: #e2e8f0;
}

@media (max-width: 576px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===================================================
   NEWSLETTER CAPTURE
   =================================================== */
.newsletter-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-glass);
}

.newsletter-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: white;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: var(--transition-fast);
}

[data-theme="dark"] .newsletter-input {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.newsletter-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  padding: 14px 28px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

[data-theme="dark"] .newsletter-btn {
  background: var(--primary-gold);
  color: #0f172a;
}

.newsletter-btn:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
}

.newsletter-privacy {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 14px;
}

/* Footer newsletter (compact) */
.footer-newsletter {
  display: flex;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.footer-newsletter .newsletter-input {
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 10px;
}

.footer-newsletter .newsletter-btn {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .newsletter-form,
  .footer-newsletter {
    flex-direction: column;
  }
}

/* ===================================================
   PRICING PAGE
   =================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-gold);
  box-shadow: 0 16px 40px rgba(197, 168, 128, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold-dark);
  margin-bottom: 12px;
}

.pricing-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-feature-item .check {
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 16px;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    order: -1;
  }
}

/* ===================================================
   404 ERROR PAGE
   =================================================== */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 150px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.error-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   THEME TRANSITION
   =================================================== */
body,
header,
footer,
.glass-card,
.form-input,
.btn-primary,
.btn-secondary,
.nav-cta,
.newsletter-input,
.newsletter-btn {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
