:root {
  --bg-dark: #051929;
  --bg-panel: #0b2a45;
  --primary: #0b4f86;
  --accent: #ffd24a;
  --accent-glow: rgba(255, 210, 74, 0.6);
  --text-main: #e0f2ff;
  --text-muted: #94a3b8;
  --glass: rgba(11, 42, 69, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Typography */
h1,
h2,
h3 {
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 210, 74, 0.2));
}

h2 {
  font-size: 2.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  z-index: 1;
  color: #fff;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffb000);
  color: #051929;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 210, 74, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 6px 25px rgba(255, 210, 74, 0.5);
  background: linear-gradient(135deg, #ffe07a, #ffb000);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 25, 41, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  height: 75px;
  /* Increased from 50px */
  width: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: scale(1.1);
}

.brand .name strong {
  font-size: 1.2rem;
  display: block;
}

.brand .name span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a:not(.btn) {
  font-size: 0.95rem;
  opacity: 0.8;
}

.menu a:not(.btn):hover {
  opacity: 1;
  color: var(--accent);
}

.cta {
  display: flex;
  gap: 10px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 10px;
  z-index: 1001;
  /* Above header */
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 25, 41, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.mobile-menu-overlay .lang-switch {
  display: flex !important;
  /* Force visible in overlay */
  transform: scale(1.2);
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {

  /* Show menu container so CTAs are visible */
  .menu {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  /* Hide navigation text links on mobile specific to header */
  .menu>a {
    display: none;
  }

  /* Show hamburger */
  .mobile-toggle {
    display: block;
  }

  /* Strictly hide Language Switcher in header on mobile */
  .menu .lang-switch {
    display: none !important;
  }

  /* Hide brand name to save space */
  .brand .name {
    display: none;
  }

  /* Smaller logo for mobile but bigger than before */
  .brand img {
    height: 55px;
    /* Increased from 35px */
  }

  /* Compact buttons on mobile */
  .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    gap: 4px;
    white-space: nowrap;
    /* Prevent text wrapping */
  }

  /* Adjust header padding */
  .nav {
    padding: 0 12px;
  }

  .cta {
    gap: 6px;
    display: flex;
    align-items: center;
  }
}




/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(52, 179, 255, 0.2), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 210, 74, 0.15), transparent 40%);
  overflow: hidden;
}

.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--accent);
}

.brand-badge-overlay {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 140px;
  /* Increased from 100px */
  height: 140px;
  /* Increased from 100px */
  /* Removed white background and padding to maximize logo */
  background: transparent;
  padding: 0;
  /* backdrop-filter: blur(10px); */
  /* Removed as background is transparent */
  /* border-radius: 50%; */
  /* Moved to image */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); */
  /* Moved to image */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  /* border: 3px solid var(--accent); */
  /* Moved to image */
  animation: float 6s ease-in-out infinite;
  /* Border and shadow moved to image for cleaner look */
  border: none;
  box-shadow: none;
}

.brand-badge-overlay img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--accent);
  /* Border on the logo itself */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Floating Info Card (over image or next to it) */
.info-card-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(11, 42, 69, 0.9);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 280px;
  z-index: 3;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 140px;
  }

  .hero .grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-visual {
    order: -1;
    margin-top: 0;
    flex-direction: column;
    width: 100%;
  }

  .hero-img {
    max-width: 90%;
    transform: rotate(0);
    margin-bottom: 25px;
  }

  /* Stick badge to top-right of image on mobile */
  .brand-badge-overlay {
    top: -15px;
    right: 5%;
    width: 90px;
    /* Increased from 70px */
    height: 90px;
    /* Increased from 70px */
  }

  /* Center info card below image */
  .info-card-floating {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(0);
    width: 90%;
    max-width: 100%;
  }

  .hero .actions {
    justify-content: center;
  }

  .hero .badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .hero .grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
    margin-top: 20px;
  }

  .hero-img {
    max-width: 80%;
    transform: rotate(0);
  }

  .info-card-floating {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(0);
  }

  .hero .actions {
    justify-content: center;
  }

  .hero .badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(52, 179, 255, 0.15);
  color: #34b3ff;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(52, 179, 255, 0.3);
}

.info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.info-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #34b3ff, #0b4f86);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(52, 179, 255, 0.3);
  flex-shrink: 0;
}

/* WhatsApp Button */
.btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn.whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.lang-btn {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: #051929;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  padding: 35px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 210, 74, 0.1);
}

.card h3 {
  color: var(--accent);
  margin-top: 20px;
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Pricing */
.price-card {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 210, 74, 0.05), var(--bg-panel));
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.price-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.check {
  color: var(--accent);
  font-weight: bold;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.form-control {
  width: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
  background: #020d17;
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .hero .grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: scale(1);
  }

  h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }
}