/* ================================================
   Cosmic Beauty Salon - Main Stylesheet
   Premium Beauty Salon Design
   ================================================ */

/* ── CSS Variables ───────────────────────────── */
/* :root {
  --primary: #c98a83;
  --primary-light: #e6b8b3;
  --primary-dark: #915a54;
  --accent: #dca098;
  --accent2: #e8c3b9;
  --gradient: linear-gradient(135deg, #c98a83 0%, #e8c3b9 50%, #dca098 100%);
  --gradient2: linear-gradient(135deg, #e6b8b3 0%, #c98a83 100%);
  --success: #00c853;
  --text-dark: #3a2e2d;
  --text-body: #6b5c5b;
  --text-muted: #9c8e8d;
  --bg-light: #fefcfb;
  --bg-section: #fdf5f4;
  --white: #ffffff;
  --border: #f2e1d9;
  --shadow-sm: 0 2px 10px rgba(201,138,131,.08);
  --shadow-md: 0 8px 30px rgba(201,138,131,.12);
  --shadow-lg: 0 20px 60px rgba(201,138,131,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  
  --font-display: 'Montserrat',sans-serif;
  --font-body: 'Montserrat', sans-serif;
} */


/* ── CSS Variables ───────────────────────────── */
:root {
  /* Brand Core Colors */
  --primary: #2E1A47;         /* Deep Plum / Royal Violet (From Logo) */
  --primary-light: #523475;   /* Lighter Violet variant for hover/accents */
  --primary-dark: #120D1A;    /* Deep Cosmic Midnight (Rich shadow baseline) */
  --accent: #E5A99E;          /* Rose Gold / Soft Coral (From Logo Accent) */
  --accent2: #D4AF37;         /* Celestial Gold / Champagne (From Logo Stars) */
  
  /* Gradients */
  --gradient: linear-gradient(135deg, #2E1A47 0%, #523475 50%, #E5A99E 100%);
  --gradient2: linear-gradient(135deg, #E5A99E 0%, #D4AF37 100%); 
  
  /* System Colors */
  --success: #00c853;
  --white: #ffffff;
  
  /* Typography */
  --text-dark: #120D1A;       /* Crisp, near-black violet for main headings */
  --text-body: #2E1A47;       /* Deep Plum for excellent body text readability */
  --text-muted: #8B739B;      /* Muted Mauve for secondary details/labels */
  
  /* Backgrounds & Borders */
  --bg-light: #FDFBF9;        /* Soft Alabaster (Luxurious off-white canvas) */
  --bg-section: #F5F1EB;      /* Slightly deeper warm neutral for alternating sections */
  /* --border: #eae3d8;          Soft border color matching the warm background theme */
  --border: #ffb030;          /* Recalibrated border color to complement the new palette */
  
  /* Shadows (Recalculated using a tint of the new deep primary #2E1A47) */
  --shadow-sm: 0 2px 10px rgba(46, 26, 71, 0.06);
  --shadow-md: 0 8px 30px rgba(46, 26, 71, 0.10);
  --shadow-lg: 0 20px 60px rgba(46, 26, 71, 0.15);
  
  /* Layout & Animation */
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

.text-cosmic {
  color: var(--primary) !important;
}


/* --font-display: 'Playfair Display', serif; */

/* [data-theme="dark"] {
  --text-dark: #fcf5f4;
  --text-body: #d2c5c4;
  --text-muted: #a39594;
  --bg-light: #2b2120;
  --bg-section: #382b2a;
  --white: #473837;
  --border: #5e4d4b;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
} */

[data-theme="dark"] {
  /* Typography (High contrast for readability against dark backgrounds) */
  --text-dark: #FDFBF9;       /* Luminous light off-white for headers (reuses light bg) */
  --text-body: #EAE3D8;       /* Soft cream/silver text for smooth body paragraph reading */
  --text-muted: #8B739B;      /* Muted Mauve (matches the logo/muted token perfectly) */

  /* Backgrounds (Layered Deep Cosmic Tones) */
  --bg-light: #120D1A;        /* Deep Cosmic Midnight as the main canvas */
  --bg-section: #1D142A;      /* Slightly lighter, rich deep plum for alternating panels */
  --white: #261B36;           /* Container/Card background elements floating on dark canvas */
  --border: #3A2952;          /* Subtle deep violet borders to keep elements defined but clean */

  /* Shadows (Darker, punchier drop shadows to blend out into the deep background) */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.60);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--accent); }

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

section { padding: 90px 0; }

/* ── Page Loader ─────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--white);
  background: var(--gradient2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: pulse 1s ease infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 2px; overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0;
  background: var(--gradient2);
  border-radius: 2px;
  animation: loadBar 1.5s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* ── Top Bar ─────────────────────────────────── */
.top-bar {
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.top-bar-link {
  color: rgba(255,255,255,.8); font-size: .85rem;
  transition: color var(--transition);
}
.top-bar-link:hover { color: var(--accent); }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.1);
  border-radius: 50%; color: #fff; font-size: .75rem;
  margin-left: 6px; transition: all var(--transition);
}
.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-dark-toggle {
  background: rgba(255,255,255,.1); border: none;
  color: #fff; width: 28px; height: 28px;
  border-radius: 50%; font-size: .75rem;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-dark-toggle:hover { background: var(--accent2); }

/* ── Navbar ──────────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] #mainNav {
  background: rgba(13,17,23,.98);
  border-bottom-color: var(--border);
}
#mainNav.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand { padding: 11px 0; }
.brand-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.brand-biz { color: var(--primary); }
.brand-vital { color: var(--accent2); }
.brand-info { color: var(--text-muted); font-weight: 400; font-size: 1rem; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  color: var(--text-dark) !important;
  padding: 28px 18px !important;
  position: relative; transition: color var(--transition);
  letter-spacing: .3px;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px; background: var(--gradient2);
  border-radius: 2px 2px 0 0;
  transition: all var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 18px; right: 18px; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.btn-nav-cta {
  background: var(--gradient);
  color: #fff !important; font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  padding: 10px 24px !important;
  border-radius: 50px; border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(26,35,126,.3);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,35,126,.4); color: #fff !important; }
.dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
}
.dropdown-item {
  border-radius: 8px; padding: 8px 12px;
  font-size: .9rem; color: var(--text-body);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--bg-section); color: var(--primary); padding-left: 18px; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; }
.hamburger-icon span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px; transition: all var(--transition);
}
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ── Section Styles ──────────────────────────── */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(26,35,126,.08), rgba(124,77,255,.08));
  border: 1px solid rgba(26,35,126,.15);
  color: var(--primary); font-size: .8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.2;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }

/* ── Hero Section ─────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--primary-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(57,73,171,.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,77,255,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0,176,255,.2) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,.35);
  color: #fff; font-size: .85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge .badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .text-gradient {
  background: var(--gradient2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 40px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--gradient2);
  color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px; border: none;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(0,176,255,.4);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,176,255,.5); color: #fff; }
.btn-hero-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.4);
  color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  background: var(--gradient2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-visual { position: relative; z-index: 2; }
.hero-card-float {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hero-tech-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 12px;
  text-align: center; color: #fff; font-size: .75rem;
  transition: all var(--transition);
}
.hero-tech-item:hover { background: rgba(255,255,255,.15); transform: scale(1.05); }
.hero-tech-item i { font-size: 1.5rem; display: block; margin-bottom: 4px; }

/* ── Service Cards ──────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient2);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,35,126,.1), rgba(124,77,255,.1));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
  margin-bottom: 20px; transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient); color: #fff; transform: rotate(5deg) scale(1.1); }
.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.service-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--primary);
  margin-top: 20px; transition: all var(--transition);
}
.service-link:hover { gap: 10px; color: var(--accent); }

/* ── Portfolio Grid ──────────────────────────── */
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
  height: 100%;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-img {
  aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.1); }
.portfolio-img-placeholder { color: rgba(255,255,255,.3); font-size: 3rem; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,20,83,.8), transparent);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content { color: #fff; }
.portfolio-body { padding: 20px; }
.portfolio-category {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  color: var(--accent); letter-spacing: .5px; margin-bottom: 6px;
}
.portfolio-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.portfolio-tech { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.tech-tag {
  font-size: .7rem; font-weight: 600;
  background: var(--bg-section); color: var(--primary);
  padding: 3px 10px; border-radius: 50px;
  border: 1px solid var(--border);
}

/* ── Testimonial Cards ───────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-size: 5rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary); opacity: .1;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #ffc107; margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* ── Blog Cards ─────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-section); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-category {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  color: var(--accent2); letter-spacing: .5px;
}
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 10px 0; line-height: 1.4; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary); }
.blog-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.blog-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-top: 12px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--primary);
  margin-top: 16px; transition: all var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--accent2); }

/* ── Team Cards ─────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 36px 24px 28px;
  transition: all var(--transition);
  position: relative;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 80px;
  background: var(--gradient); z-index: 0;
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%; margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden; position: relative; z-index: 1;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.8rem;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.team-position { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 32px; height: 32px;
  background: var(--bg-section); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .8rem;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  background: var(--gradient) !important;
  border: none !important; color: #fff !important;
  font-family: var(--font-display); font-weight: 600;
  border-radius: 50px; padding: 12px 28px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(26,35,126,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,35,126,.4); }
.btn-outline-primary {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
  font-family: var(--font-display); font-weight: 600;
  border-radius: 50px; padding: 10px 26px;
  transition: all var(--transition);
}
.btn-outline-primary:hover { background: var(--primary) !important; color: #fff !important; transform: translateY(-2px); }
.btn-accent {
  background: var(--gradient2);
  border: none; color: #fff;
  font-family: var(--font-display); font-weight: 600;
  border-radius: 50px; padding: 12px 28px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,176,255,.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,176,255,.4); color: #fff; }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: var(--gradient);
  position: relative; overflow: hidden;
}
.cta-section::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='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title { color: #fff; }
.cta-section .section-desc { color: rgba(255,255,255,.8); }

/* ── Features Section ─────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--gradient2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin: 0 auto 16px;
}

/* ── Contact Form ─────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  background: var(--bg-section) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--text-dark) !important;
  padding: 12px 16px !important;
  font-size: .95rem !important;
  transition: all var(--transition) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(26,35,126,.1) !important;
  background: var(--white) !important;
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--text-dark); margin-bottom: 6px; }

/* ── Contact Info ─────────────────────────────── */
.contact-info-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff; height: 100%;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-label { font-size: .8rem; opacity: .7; margin-bottom: 4px; }
.contact-info-value { font-weight: 600; font-size: .95rem; }

/* ── Page Banner ─────────────────────────────── */
.page-banner {
  background: var(--gradient);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(124,77,255,.3) 0%, transparent 60%);
}
.page-banner h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; position: relative; }
.breadcrumb { background: none; padding: 0; position: relative; }
.breadcrumb-item { color: rgba(255,255,255,.7); font-size: .9rem; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── Stats Section ──────────────────────────── */
.stats-section { background: var(--gradient); }
.stat-card { text-align: center; padding: 20px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 4px; }

/* ── Technologies ─────────────────────────────── */
.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px; text-align: center;
  transition: all var(--transition);
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.tech-card i { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 8px; }
.tech-card span { font-size: .8rem; font-weight: 600; color: var(--text-muted); }

/* ── Job Cards ──────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; transition: all var(--transition);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.job-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.job-badge {
  display: inline-block; padding: 4px 12px;
  background: linear-gradient(135deg, rgba(26,35,126,.1), rgba(124,77,255,.1));
  color: var(--primary); border-radius: 50px;
  font-size: .75rem; font-weight: 600; margin-right: 8px; margin-bottom: 8px;
}
.job-meta { font-size: .85rem; color: var(--text-muted); }
.job-meta i { color: var(--primary); width: 16px; }

/* ── Product Cards ──────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px; height: 100%;
  transition: all var(--transition); position: relative;
}
.product-card.featured::before {
  content: '⭐ Featured';
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient2); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-features li { font-size: .9rem; color: var(--text-body); padding: 6px 0; border-bottom: 1px solid var(--border); }
.product-features li i { color: var(--success); width: 20px; }

/* ── Lead Forms ─────────────────────────────── */
.lead-form-section {
  background: linear-gradient(135deg, rgba(26,35,126,.05), rgba(124,77,255,.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.lead-modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); background: var(--white); }

/* ── Footer ─────────────────────────────────── */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 70px 0 50px; }
.footer-brand-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.footer-brand-text span:first-child { color: var(--accent); }
.footer-brand-text span:last-child { color: var(--accent2); }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 20px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .85rem; color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.footer-contact-list i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: inherit; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .8rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-post { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-post:last-child { border-bottom: none; }
.footer-post a { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.5; display: block; margin-bottom: 4px; }
.footer-post a:hover { color: var(--accent); }
.footer-post-date { font-size: .75rem; color: rgba(255,255,255,.4); }
.newsletter-form .form-control { background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.2) !important; color: #fff !important; border-radius: var(--radius) 0 0 var(--radius) !important; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-bottom { background: rgba(0,0,0,.2); padding: 18px 0; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ── WhatsApp FAB ─────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 1000;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition); animation: wobble 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); color: #fff; }
@keyframes wobble { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-10deg); } 40% { transform: rotate(10deg); } }
.whatsapp-tooltip {
  position: absolute; left: 65px;
  background: #333; color: #fff; font-size: .8rem;
  padding: 5px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ── Back to Top ─────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff; border: none;
  font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── Pagination ──────────────────────────────── */
.pagination .page-link {
  border-radius: var(--radius) !important;
  margin: 0 3px; border: 1px solid var(--border);
  color: var(--primary); background: var(--white);
  font-weight: 600; padding: 8px 14px;
  transition: all var(--transition);
}
.pagination .page-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--gradient); border-color: transparent; color: #fff; }

/* ── Filter Buttons ──────────────────────────── */
.filter-btn {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-muted); font-family: var(--font-display);
  font-weight: 600; font-size: .85rem;
  padding: 8px 20px; border-radius: 50px;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient); color: #fff; border-color: transparent;
  box-shadow: 0 4px 15px rgba(26,35,126,.3);
}

/* ── Why Choose Us ─────────────────────────────── */
.why-item { display: flex; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gradient); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.why-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.why-desc { font-size: .88rem; color: var(--text-muted); }

/* ── Alert styles ─────────────────────────────── */
.alert { border-radius: var(--radius) !important; border: none !important; font-size: .9rem; }
.alert-success { background: rgba(0,200,83,.1) !important; color: #00692b !important; }
.alert-danger { background: rgba(244,67,54,.1) !important; color: #c62828 !important; }
[data-theme="dark"] .alert-success { color: #69f0ae !important; }
[data-theme="dark"] .alert-danger { color: #ff8a80 !important; }

/* ── Utility ─────────────────────────────────── */
.text-gradient { background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bg-gradient-section { background: var(--bg-section); }
.divider { height: 3px; width: 60px; background: var(--gradient2); border-radius: 2px; margin: 16px 0; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .nav-link { padding: 12px 16px !important; }
  .nav-link::after { display: none; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .hero-content { padding: 80px 0 60px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-hero-primary, .hero-cta-group .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-visual { display: none; }
  .contact-card { padding: 24px; }
}
