:root {
  --au-1: #7c3aed;
  --au-2: #4f46e5;
  --au-3: #0ea5e9;
  --au-4: #ec4899;
  --au-5: #f59e0b;
  --au-dark: #1e1b4b;
  --au-text: #374151;
  --au-muted: #6b7280;
  --au-light: #f8f7ff;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(124, 58, 237, 0.15);
  --shadow-sm: 0 4px 16px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 8px 32px rgba(124, 58, 237, 0.14);
  --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.18);
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-cool: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-section: linear-gradient(145deg, #f8f7ff 0%, #ede9fe 50%, #fce7f3 100%);
  --radius: 1rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
*,
        *::before,
        *::after {
            box-sizing: border-box
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden
        }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--au-text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--au-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { color: var(--au-1); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--au-4); }

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

section { position: relative; overflow: hidden; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ─── Gradient text ─── */
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-cool {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn-aurora {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-aurora:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}
.btn-aurora-outline {
  background: transparent;
  color: var(--au-1);
  border: 2px solid var(--au-1);
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-aurora-outline:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}
.btn-aurora-cool {
  background: var(--grad-cool);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-aurora-cool:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.45);
}

/* ─── Section badge ─── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  color: var(--au-1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ─── Decorative blobs ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: var(--au-1); top: -120px; right: -150px; }
.blob-2 { width: 380px; height: 380px; background: var(--au-4); bottom: -100px; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: var(--au-3); top: 40%; left: 50%; transform: translateX(-50%); }
.blob-sm { width: 200px; height: 200px; background: var(--au-5); opacity: 0.12; }

/* ─── Glass card ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ─── Top bar ─── */
.aurora-topbar {
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
}
.aurora-topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
}
.aurora-topbar .topbar-item i { font-size: 0.78rem; }

/* ─── Navbar ─── */
.aurora-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  transition: box-shadow var(--transition);
}
.aurora-navbar.scrolled { box-shadow: var(--shadow-md); }
.aurora-navbar .navbar-brand img { height: 46px; }
.aurora-navbar .nav-link {
  color: var(--au-dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.aurora-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.aurora-navbar .nav-link:hover::after,
.aurora-navbar .nav-link.active::after { transform: scaleX(1); }
.aurora-navbar .nav-link:hover { color: var(--au-1) !important; }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }

/* ─── Hero ─── */
.aurora-hero {
  background: var(--grad-section);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.aurora-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.aurora-hero .lead { font-size: 1.15rem; color: var(--au-muted); line-height: 1.7; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.hero-badge .num { font-size: 1.6rem; font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── Hero page (inner pages) ─── */
.page-hero {
  background: var(--grad-section);
  padding: 120px 0 70px;
  position: relative;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero > .blob { opacity: 0.12; }

/* ─── Carousel / Slider ─── */
.aurora-slider .carousel-item { height: 580px; }
.aurora-slider .carousel-item img { height: 580px; width: 100%; object-fit: cover; }
.aurora-slider .carousel-caption {
  background: rgba(30,27,75,0.55);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  bottom: 40px;
  left: 10%;
  right: 10%;
  text-align: left;
}
.aurora-slider .carousel-caption h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(124,58,237,0.6);
  border-radius: 50%;
  padding: 20px;
  background-size: 60%;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--au-1);
  opacity: 0.4;
}
.carousel-indicators .active { opacity: 1; }

/* ─── Service cards ─── */
.service-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .card-img { height: 200px; object-fit: cover; width: 100%; }
.service-card .card-body { padding: 1.5rem; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--au-1);
  margin-bottom: 1rem;
}

/* ─── Stats ─── */
.stat-box {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition);
}
.stat-box:hover { transform: translateY(-4px); }
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--au-muted); font-size: 0.9rem; font-weight: 500; margin-top: 4px; }

/* ─── Testimonials ─── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(124,58,237,0.2); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; }
.testimonial-text { color: var(--au-text); font-style: italic; line-height: 1.7; margin: 1rem 0; }
.testimonial-name { font-weight: 700; color: var(--au-dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--au-muted); }

/* ─── Partners ─── */
.partners-section { background: var(--au-light); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.partner-logo:hover { transform: scale(1.04); }
.partner-logo img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(40%); transition: filter var(--transition); }
.partner-logo:hover img { filter: grayscale(0%); }

/* ─── Map / Location section ─── */
.map-section { background: var(--grad-section); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(124,58,237,0.15);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: none; }
.contact-info-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(124,58,237,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.contact-info-item span { font-size: 0.8rem; color: var(--au-muted); display: block; }
.contact-info-item strong { color: var(--au-dark); font-size: 0.95rem; }

/* ─── Cookie banner ─── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 800px;
  background: rgba(30,27,75,0.95);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}
#cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.88); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--au-4); }
#cookie-banner .btn-cookie-accept {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--transition);
}
#cookie-banner .btn-cookie-accept:hover { transform: scale(1.03); }
#cookie-banner .btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
#cookie-banner .btn-cookie-decline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ─── Form ─── */
.aurora-form .form-control,
.aurora-form .form-select {
  border: 2px solid rgba(124,58,237,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--au-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.aurora-form .form-control:focus,
.aurora-form .form-select:focus {
  border-color: var(--au-1);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
  outline: none;
}
.aurora-form label { font-weight: 600; font-size: 0.88rem; color: var(--au-dark); margin-bottom: 6px; }
.form-notification {
  display: none;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(236,72,153,0.08));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--au-1);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-notification.show { display: block; }

/* ─── Pricing cards ─── */
.price-card {
  background: #fff;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.35); }
.price-card.featured {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3, .price-card.featured p,
.price-card.featured li, .price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-amount span { color: rgba(255,255,255,0.8); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--au-5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--au-muted); }
.price-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.price-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(124,58,237,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--au-1);
  font-size: 0.75rem;
}
.price-card.featured .price-features li::before { color: rgba(255,255,255,0.9); }

/* ─── Team cards ─── */
.team-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.team-body { padding: 1.5rem; }
.team-role { font-size: 0.82rem; color: var(--au-1); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── Gallery ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(30,27,75,0.75), transparent);
  color: #fff;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── FAQ Accordion ─── */
.aurora-accordion .accordion-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.aurora-accordion .accordion-button {
  font-weight: 600;
  color: var(--au-dark);
  background: #fff;
  font-size: 0.96rem;
  border-radius: var(--radius) !important;
}
.aurora-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(236,72,153,0.06));
  color: var(--au-1);
  box-shadow: none;
}
.aurora-accordion .accordion-button::after {
  filter: hue-rotate(200deg);
}
.aurora-accordion .accordion-body { font-size: 0.94rem; color: var(--au-muted); line-height: 1.75; }

/* ─── Process steps ─── */
.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: transform var(--transition);
}
.process-step:hover { transform: translateX(6px); }
.step-num {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.step-content h5 { font-size: 1rem; margin-bottom: 0.35rem; }
.step-content p { font-size: 0.88rem; color: var(--au-muted); margin: 0; }

/* ─── Comparison table ─── */
.comparison-table { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table thead th {
  background: var(--grad-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 600;
  border: none;
}
.comparison-table tbody tr { transition: background var(--transition); }
.comparison-table tbody tr:hover { background: rgba(124,58,237,0.04); }
.comparison-table td {
  padding: 0.9rem 1.5rem;
  border-color: var(--glass-border);
  vertical-align: middle;
  font-size: 0.92rem;
}
.comparison-table .check { color: #10b981; font-size: 1rem; }
.comparison-table .cross { color: #ef4444; font-size: 1rem; }
.comparison-table .highlight-col { background: rgba(124,58,237,0.04); font-weight: 600; }

/* ─── Blog cards ─── */
.blog-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card .card-img { height: 210px; object-fit: cover; width: 100%; }
.blog-card .card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  color: var(--au-1);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.blog-meta { font-size: 0.8rem; color: var(--au-muted); display: flex; gap: 1rem; align-items: center; }
.blog-meta i { font-size: 0.78rem; }

/* ─── Section bg variants ─── */
.bg-aurora { background: var(--grad-section); }
.bg-aurora-dark { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }
.bg-aurora-dark h2, .bg-aurora-dark h3, .bg-aurora-dark p, .bg-aurora-dark li { color: rgba(255,255,255,0.88); }

/* ─── Internal link buttons ─── */
.internal-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--au-1);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.link-btn:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ─── CTA section ─── */
.cta-section {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); }
.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -60px;
  left: -40px;
}

/* ─── Footer ─── */
.aurora-footer {
  background: linear-gradient(160deg, #1e1b4b 0%, #2d1b69 60%, #1e1b4b 100%);
  color: rgba(255,255,255,0.82);
}
.footer-main { padding: 70px 0 40px; }
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-col h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--au-4); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.72);
}
.footer-contact-list i { color: var(--au-4); font-size: 0.9rem; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.72); }
.footer-contact-list a:hover { color: var(--au-4); }
.social-icons { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--grad-primary); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ─── Thanks page ─── */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-section);
  text-align: center;
  padding: 80px 20px;
}
.thanks-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
}

/* ─── About page ─── */
.history-timeline { position: relative; padding-left: 40px; }
.history-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
.timeline-year { font-weight: 700; color: var(--au-1); font-size: 0.85rem; margin-bottom: 4px; }

/* ─── Portfolio / Project cards ─── */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.project-card:hover { transform: scale(1.02); }
.project-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,27,75,0.82) 30%, transparent);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.project-overlay h5 { margin-bottom: 0.3rem; color: #fff; }
.project-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }

/* ─── Breadcrumb ─── */
.aurora-breadcrumb .breadcrumb-item a { color: var(--au-1); }
.aurora-breadcrumb .breadcrumb-item.active { color: var(--au-muted); }
.aurora-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--au-muted); }

/* ─── Divider ─── */
.aurora-divider {
  height: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
  width: 60px;
  margin: 1rem 0 1.5rem;
}
.aurora-divider-center { margin: 1rem auto 1.5rem; }

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .aurora-topbar { display: none; }
  .aurora-navbar { padding: 8px 0; }
  .aurora-hero { padding: 100px 0 60px; min-height: auto; }
  .section-pad { padding: 60px 0; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .aurora-slider .carousel-item, .aurora-slider .carousel-item img { height: 380px; }
  .aurora-slider .carousel-caption { bottom: 20px; left: 5%; right: 5%; padding: 1.5rem; }
}
@media (max-width: 767.98px) {
  .aurora-slider .carousel-item, .aurora-slider .carousel-item img { height: 280px; }
  .aurora-slider .carousel-caption { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .price-card { padding: 2rem 1.5rem; }
  .footer-main { padding: 50px 0 30px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .internal-links { flex-direction: column; }
  #cookie-banner { bottom: 12px; flex-direction: column; width: calc(100% - 24px); }
}
