/* Custom properties */
:root {
  --color-dark: #09090b;
  --color-light: #f4f4f5;
  --color-secondary: #a1a1aa;
  --color-accent: #22c55e;
  --color-accent-dark: #16a34a;
  --bg-gradient: radial-gradient(circle at top, #111827 0%, #030712 100%);
 --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Dark Theme */
  --color-dark: #0f0f11;
  --color-light: #f4f4f5;
  --color-secondary: #a1a1aa;
  --color-accent: #4caf50;
  --color-accent-dark: #388e3c;
  --bg-gradient: radial-gradient(circle at top, #1a1a2e, #0f0f11);
}

[data-theme="light"] {
  --color-dark: #ffffff;
  --color-light: #09090b;
  --color-secondary: #555;
  --color-accent: #4caf50;
  --color-accent-dark: #388e3c;
  --bg-gradient: radial-gradient(circle at top, #e0e0e0, #ffffff);
}

/* Utility Classes */
.bg-dark { background-color: var(--color-dark); color: var(--color-light); }
.bg-light { background-color: var(--color-light); color: var(--color-dark); }
.bg-accent { background-color: var(--color-accent); color: var(--color-dark); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-secondary); }
.shadow-deep { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }

/* Theme Switcher */
.theme-switch {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  font-size: 1.2rem;
  color: var(--color-light);
}
.theme-switch input {
  display: none;
}
.theme-switch span {
  cursor: pointer;
}

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

html, body {
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-light);
  transition: background 0.3s ease, color 0.3s ease;
}
p {
  color: var(--color-secondary);
  line-height: 1.6;
}
a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent-dark);
}


/* Aura and stars background effect */
.aura, .stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Push behind everything */
  pointer-events: none; /* Allow clicks to pass through */
}


.aura {
  background: var(--bg-gradient);
}

.stars {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="gray" opacity=".2"><circle cx="50" cy="50" r="1.5"/></svg>');
  background-size: 10px 10px, 20px 20px, 40px 40px, 80px 80px;
  background-position: 0 0, 10px 10px, 20px 20px, 40px 40px;
  animation: move-stars 15s linear infinite;
}

@keyframes move-stars {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 100px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}


/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--color-light);
}
h1 { font-size: clamp(2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

/* Buttons and utility classes */
.btn {
  display: var(--color-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--color-dark);
}

.btn.small {
  padding: 0.5rem 1rem;
}

.btn.big {
  font-size: 1.25rem;
}

.pill {
  background: var(--color-accent-dark);
  color: var(--color-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
   background: #1c1c1c;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-light);
}

.brand:hover {
  color: var(--color-light);
}

.logo {
  display: block;
}

.navlinks {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navlinks {
    display: flex;
  }
}

.hamburger {
  display: block;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-light);
  transition: transform 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-light);
  transition: transform 0.3s ease;
}

.hamburger span::before {
  top: -8px;
}

.hamburger span::after {
  top: 8px;
}

.hamburger[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] span::before {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-90deg);
}

.mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile[aria-modal="true"] {
  transform: translateX(0);
}

.mobile a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-light);
}
.site-header {
  position: relative;
}

.locale-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.locale-switcher select {
  background: #222;
  color: #fff;
  border: 1px solid #444;
  padding: 0.3rem;
  border-radius: 0.3rem;
}
/* Sections */
section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  color: var(--color-light);
}
.section-head .sub-head {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-secondary);
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f8ff;
    color: #333;
    overflow-x: hidden;
}

/* MAIN SECTION */
.genie-section {
    padding: 80px 20px;
    background: #0a0f1c;
    color: #fff;
}

/* CONTAINER (LEFT + RIGHT) */
.genie-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT STACK (TWO CARDS) */
.left-stack {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* INDIVIDUAL CARDS */
.stack-card {
    padding: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
    transition: 0.25s ease;
}

.stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,120,255,0.45);
}

/* IMAGES & VIDEOS */
.stack-img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 12px;
}

/* TITLES */
.stack-card h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    color: #a8b9ff;
}

/* TEXT */
.stack-card p {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 15px;
}

/* RIGHT SIDE GENIE CARD */
.genie-panel {
    width: 380px;
    padding: 25px;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* GENIE IMAGE FIXED — FULL SIZE */
.genie-big {
    width: 100%;
    height: 450px;             /* bigger fixed height */
    object-fit: contain;       /* full image fits cleanly */
    object-position: center;   /* perfectly centered */
    margin-bottom: 15px;
    border-radius: 20px;

    /* animation */
    animation: genieFloat 4s ease-in-out infinite;
    filter: drop-shadow(0px 10px 40px rgba(0, 140, 255, 0.7));
}

/* HOVER EXTRA EFFECT */
.genie-big:hover {
    transform: scale(1.06);
    filter: drop-shadow(0px 20px 50px rgba(0,160,255,0.9));
    transition: 0.4s ease;
}

/* FLOAT ANIMATION */
@keyframes genieFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

/* TEXT */
.genie-title {
    font-size: 28px;
    color: #9bbcff;
}

.genie-info {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 20px;
}

/* BUTTONS */
.magic-btn {
    padding: 12px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #4b6aff, #8095ff);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: 0.25s;
}

.magic-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #2e48ff, #5b6eff);
}


/* =====================
   CLOUDORA VIDEO SECTION
======================== */
.cloudora-video {
    padding: 60px 20px;
    text-align: center;
}

.cloudora-video h2 {
    font-size: 32px;
    color: #0d47a1;
}

.info {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.7;
}

.video-box {
    margin-top: 30px;
}

video {
    width: 95%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Hero Section */
.hero {
  text-align: center;
  padding: 10rem 1rem 6rem;
  background: #1a1a2e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero .title {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  animation: fadeInDown 1s ease-out;
}

.hero .subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Launch Offer Container */
.launch-offer {
  background: rgba(30, 30, 50, 0.85);
  backdrop-filter: blur(6px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(80, 80, 120, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: zoomIn 1s ease-out 1s forwards;
  opacity: 0;
}

.launch-offer h2 {
  color: #4caf50;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  color: #ddd;
}

.pricing-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(80, 80, 120, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-table td:first-child {
  font-weight: 600;
  flex: 1 1 40%;
}

.pricing-table td:last-child {
  flex: 1 1 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.pricing-table s {
  color: #888;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.new-price {
  color: #4caf50;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Brochure & PDF Buttons */
.brochure-btn {
  font-size: 0.9rem;
  color: #fff;
  background-color: #444;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.brochure-btn:hover {
  background-color: #666;
  transform: translateY(-2px);
}

.download-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

.pdf-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.download-pdf-btn:hover .pdf-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #4caf50);
}

/* Explore More Button */
.explore-more-container {
  margin-top: 3rem;
  animation: bounceIn 1s ease-out 1.5s forwards;
  opacity: 0;
}

.explore-more-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-more-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
  to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero .title {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .pricing-table td {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-table td:last-child {
    width: 100%;
  }

  .brochure-btn,
  .download-pdf-btn {
    margin: 0.5rem 0;
  }

  .explore-more-btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}
.about-section {
  padding: 6rem 0;
  background: var(--color-dark);
  color: var(--color-light);
}

.about-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.about-section .sub-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--color-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-block {
  background: #111;
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-block h3 {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.timeline {
  margin-bottom: 3rem;
}

.timeline h3 {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.timeline ul {
  list-style: none;
  padding-left: 0;
}

.timeline li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
  color: var(--color-secondary);
}

.timeline li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.about-cta {
  text-align: center;
}

.about-cta .btn {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.about-cta .btn:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* Services section */
#services .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

#services .section-head h2 {
  margin: 0;
}

#services .ctrls {
  display: flex;
  gap: 0.5rem;
}

.scroller-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 300px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card .body {
  padding: 1.5rem;
}
.card .body h3 {
  margin: 0 0 0.5rem;
  color: var(--color-light);
}
.card .body p {
  color: var(--color-secondary);
}
.card .price {
  color: var(--color-light);
}
.card .new-price {
  color: var(--color-accent);
}
.card .img {
  position: relative;
}
.card .img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.card .ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: var(--color-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card .body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card .body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card .body h3 a {
  color: var(--color-light);
}

.card .body p {
  flex-grow: 1;
}

.card .price {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-light);
}

.card .price s {
  color: #777;
}

.card .new-price {
  color: var(--color-accent);
}

.card .btn {
  margin-top: 1rem;
}

.explore-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-secondary);
}

/* Why Us section */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 2rem;
}

.feature h4 {
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

.why-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Hiring Section */
#hiring .section-head {
  margin-bottom: 2rem;
}

.job-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.joblist {
  display: grid;
  gap: 1.5rem;
}

.job-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.job-card h4 {
  color: var(--color-light);
  margin-bottom: 0.25rem;
}

.job-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Contact Form */
#contact {
  padding-bottom: 0;
}

.contact-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-wrap {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

#contactForm {
  display: grid;
  gap: 1rem;
}

#contactForm label {
  color: var(--color-light);
  font-weight: 600;
  margin-top: 0.5rem;
}

#contactForm input,
#contactForm textarea,
#contactForm select {
  width: 100%;
  padding: 0.75rem;
  background: #1c1c1e;
  border: 1px solid #333;
  border-radius: 0.5rem;
  color: var(--color-light);
  font-family: var(--font-body);
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
  outline: none;
  border-color: var(--color-accent);
}

#contactForm textarea {
  min-height: 100px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--color-light);
}

.contact-row a {
  color: var(--color-light);
}

.contact-row a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid #222;
  margin-top: 4rem;
   text-align: center;
  color: var(--color-secondary);
}

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .foot {
    flex-direction: row;
    justify-content: space-between;
  }
}

.foot-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .foot-left {
    align-items: flex-start;
  }
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-secondary);
}

.social {
  display: flex;
  gap: 1.5rem;
}

.social .icon {
  color: var(--color-secondary);
}

.social .icon:hover {
  color: var(--color-light);
  transform: translateY(-2px);
}

.legal {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.modal-card {
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
  border: 1px solid #222;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-head h3 {
  color: var(--color-light);
  margin: 0;
}

.modal-head .close {
  background: transparent;
  border: none;
  color: var(--color-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body p {
  color: var(--color-secondary);
}

/* WhatsApp CTA */
.whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background-color: #25d366;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp::after {
  content: '💬';
  font-size: 1.5rem;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}


[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


.trusted-by {
  padding: 4rem 0;
  text-align: center;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.logo-row img {
  max-height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.logo-row img:hover {
  opacity: 1;
}

.testimonials {
  padding: 4rem 0;
  background: #111;
  border-top: 1px solid #222;
}
.testimonial-card {
  max-width: 600px;
  margin: 2rem auto;
  font-style: italic;
  color: #ccc;
}
.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #4caf50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 999;
}
.cookie-banner button {
  margin-left: 1rem;
  background: var(--color-accent);
  color: var(--color-dark);
  border: none;
  padding: 0.5rem 1rem;
  color: #000;
  border-radius: 0.3rem;
  cursor: pointer;
}

[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  display: block !important;
}

.locale-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

