 :root {
      --bg: #060606;
      --bg2: #0d0d12;
      --panel: rgba(255, 255, 255, 0.05);
      --panel-strong: rgba(255, 255, 255, 0.07);
      --stroke: rgba(255, 255, 255, 0.09);
      --text: #f5f5f7;
      --muted: #aaaab6;
      --soft: #cfcfe1;
      --purple: #8b5cf6;
      --purple-2: #a855f7;
      --blue: #60a5fa;
      --glow: 0 0 40px rgba(139, 92, 246, 0.18);
      --shadow: 0 25px 60px rgba(0,0,0,0.45);
      --radius: 26px;
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    html {
      scroll-behavior: smooth;
    }


    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.14), transparent 24%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.12), transparent 30%),
        linear-gradient(135deg, #040404 0%, #0a0a0f 45%, #11111a 100%);
      overflow-x: hidden;
      position: relative;
    }


    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
      pointer-events: none;
      opacity: 0.22;
    }


    .blur-orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.22;
      pointer-events: none;
      z-index: 0;
    }


    .orb1 {
      width: 280px;
      height: 280px;
      background: #8b5cf6;
      top: 90px;
      left: -60px;
    }


    .orb2 {
      width: 240px;
      height: 240px;
      background: #3b82f6;
      top: 420px;
      right: -70px;
    }


    .orb3 {
      width: 220px;
      height: 220px;
      background: #a855f7;
      bottom: 40px;
      left: 35%;
    }


    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(7, 7, 10, 0.55);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }


    .nav {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    .logo {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: white;
    }


    .logo span {
      color: #c4b5fd;
    }


    .nav-links {
      position: relative;
      left: 8%;
      display: flex;
      gap: 28px;
      align-items: center;
    }


    .nav-links a {
      color: var(--soft);
      text-decoration: none;
      font-size: 0.95rem;
      transition: 0.3s ease;
      position: relative;
    }


    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0%;
      height: 1px;
      background: linear-gradient(90deg, var(--purple), var(--blue));
      transition: 0.3s ease;
    }


    .nav-links a:hover {
      color: white;
    }


    .nav-links a:hover::after {
      width: 100%;
    }




    .cta-btn {
      padding: 12px 18px;
      left: 15%;
      width: fit-content;
      font-size: 0.85rem;
      position: relative;
      border-radius: 999px;
      text-decoration: none;
      color: white;
      border: 1px solid rgba(255,255,255,0.12);
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      box-shadow: var(--glow);
      transition: 0.3s ease;
    }


    .cta-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.22);
    }


    .hero {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 90px 0 40px;
      position: relative;
      z-index: 1;
    }


    .eyebrow {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(255,255,255,0.04);
      color: #ddd6fe;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }


    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: stretch;
    }


    .hero-left,
    .hero-right {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid var(--stroke);
      border-radius: 30px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      position: relative;
      overflow: hidden;
    }


    .hero-left {
      padding: 50px;
    }


    .hero-left::before,
    .hero-right::before,
    .contact-card::before,
    .form-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%, transparent 60%, rgba(255,255,255,0.03));
      pointer-events: none;
    }


    .hero-left h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3rem, 6vw, 5.2rem);
      line-height: 0.95;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 22px;
    }


    .hero-left h1 span {
      background: linear-gradient(90deg, #ffffff, #d8b4fe, #93c5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }


    .hero-left p {
      font-size: 1.04rem;
      line-height: 1.9;
      color: var(--muted);
      max-width: 630px;
      margin-bottom: 28px;
    }


    .hero-stats {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 24px;
    }


    .stat {
      min-width: 150px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
    }


    .stat h3 {
      font-size: 1.3rem;
      margin-bottom: 6px;
    }


    .stat p {
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.5;
      color: var(--soft);
    }


    .hero-right {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }


    .luxury-panel {
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.035);
      padding: 24px;
      margin-bottom: 18px;
    }


    .luxury-panel:last-child {
      margin-bottom: 0;
    }


    .luxury-panel small {
      color: #c4b5fd;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      display: block;
      margin-bottom: 10px;
      font-size: 0.72rem;
    }


    .luxury-panel h3 {
      font-size: 1.25rem;
      margin-bottom: 8px;
    }


    .luxury-panel p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.95rem;
    }


    .main-section {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 30px 0 90px;
      position: relative;
      z-index: 1;
    }


    .contact-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 28px;
    }


    .contact-card,
    .form-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
      border: 1px solid var(--stroke);
      border-radius: 30px;
      padding: 34px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      overflow: hidden;
    }


    .section-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #c4b5fd;
      margin-bottom: 10px;
      display: inline-block;
    }


    .contact-card h2,
    .form-card h2 {
      font-size: 2rem;
      margin-bottom: 14px;
      letter-spacing: -0.03em;
    }


    .contact-card p,
    .form-card p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 24px;
    }


    .info-list {
      display: grid;
      gap: 16px;
    }


    .info-item {
      padding: 20px;
      border-radius: 22px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      transition: 0.3s ease;
    }


    .info-item:hover {
      transform: translateY(-3px);
      border-color: rgba(196, 181, 253, 0.34);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }


    .info-item span {
      display: block;
      color: #c4b5fd;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }


    .info-item strong,
    .info-item a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
    }


    form {
      display: grid;
      gap: 18px;
    }


    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }


    .input-wrap {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }


    label {
      color: var(--soft);
      font-size: 0.92rem;
    }


    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: #8f8fa2;
      border-radius: 18px;
      padding: 15px 16px;
      font-size: 0.96rem;
      outline: none;
      transition: 0.3s ease;
    }


    input::placeholder,
    textarea::placeholder {
      color: #8f8fa2;
    }


    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(196, 181, 253, 0.7);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
      background: rgba(255,255,255,0.055);
    }


    textarea {
      min-height: 150px;
      resize: vertical;
    }


    .submit-btn {
      margin-top: 6px;
      border: none;
      border-radius: 18px;
      padding: 16px 22px;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      cursor: pointer;
      background: linear-gradient(135deg, #7c3aed, #a855f7 45%, #3b82f6);
      box-shadow: 0 18px 35px rgba(124, 58, 237, 0.32);
      transition: 0.3s ease;
    }


    .submit-btn:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 24px 45px rgba(124, 58, 237, 0.42);
    }


    footer {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 0 0 35px;
      position: relative;
      z-index: 1;
    }


    .footer-bar {
      padding: 22px 24px;
      border-radius: 22px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: #a6a6b3;
      font-size: 0.92rem;
    }


    .form-status {
  margin-top: 10px;
  font-size: 0.95rem;
}


.form-status.success {
  color: #86efac;
}


.form-status.error {
  color: #fca5a5;
}


    @media (max-width: 980px) {
      .hero-grid,
      .contact-grid,
      .two-col {
        grid-template-columns: 1fr;
      }


      .hero-left,
      .hero-right,
      .contact-card,
      .form-card {
        padding: 26px;
      }


      .hero {
        padding-top: 60px;
      }


      .hero-left h1 {
        font-size: 3rem;
      }


      .nav {
        flex-direction: column;
        gap: 14px;
      }


      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }


    @media (max-width: 560px) {
      .hero-left h1 {
        font-size: 2.4rem;
      }


      .contact-card h2,
      .form-card h2 {
        font-size: 1.6rem;
      }


      .hero-left,
      .hero-right,
      .contact-card,
      .form-card {
        border-radius: 24px;
      }


      .cta-btn {
        width: 100%;
        text-align: center;
      }
    }


    /* =========================
   GLOBAL RESPONSIVE HELPERS
========================= */
* {
  box-sizing: border-box;
}


html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}


img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}


body {
  overflow-x: hidden;
}


.container,
.nav,
.hero,
.main-section,
footer {
  width: min(1200px, 92%);
  margin: 0 auto;
}


/* Flexible typography */
.logo {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}


.hero-left h1 {
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.98;
}


.hero-left p,
.contact-card p,
.form-card p,
.luxury-panel p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
}


.contact-card h2,
.form-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}


/* Make buttons and inputs scale better */
.cta-btn,
.submit-btn,
input,
textarea,
select {
  width: 100%;
  max-width: 100%;
}


input,
textarea,
select,
button {
  font: inherit;
}


/* Prevent long text from breaking layout */
.info-item,
.stat,
.luxury-panel,
.contact-card,
.form-card {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/* Better grid defaults */
.hero-grid,
.contact-grid,
.two-col,
.hero-stats {
  width: 100%;
}


/* =========================
   LARGE DESKTOPS
========================= */
@media (min-width: 1400px) {
  .nav,
  .hero,
  .main-section,
  footer {
    width: min(1320px, 90%);
  }


  .hero-grid,
  .contact-grid {
    gap: 32px;
  }


  .hero-left,
  .hero-right,
  .contact-card,
  .form-card {
    padding: 42px;
  }
}


/* =========================
   LAPTOPS / SMALL DESKTOPS
========================= */
@media (max-width: 1200px) {
  .nav,
  .hero,
  .main-section,
  footer {
    width: 94%;
  }


  .hero-grid,
  .contact-grid {
    gap: 24px;
  }


  .hero-left,
  .hero-right,
  .contact-card,
  .form-card {
    padding: 30px;
  }
}


/* =========================
   TABLETS
========================= */
@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }


  .hero-left h1 {
    max-width: 100%;
  }


  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }


  .nav {
    gap: 16px;
    flex-wrap: wrap;
  }


  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .nav-links {
    justify-content: center;
    gap: 14px;
  }


  .cta-btn {
    width: 100%;
    text-align: center;
    max-width: 320px;
  }


  .two-col,
  .hero-stats {
    grid-template-columns: 1fr !important;
  }


  .hero-left,
  .hero-right,
  .contact-card,
  .form-card {
    padding: 24px;
    border-radius: 24px;
  }


  .luxury-panel,
  .info-item,
  .stat {
    padding: 18px;
  }


  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* =========================
   PHONES
========================= */
@media (max-width: 480px) {
  .nav,
  .hero,
  .main-section,
  footer {
    width: 94%;
  }


  .hero {
    padding-top: 48px;
    padding-bottom: 28px;
  }


  .main-section {
    padding-bottom: 60px;
  }


  .hero-left h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }


  .contact-card h2,
  .form-card h2 {
    font-size: 1.4rem;
  }


  .hero-left,
  .hero-right,
  .contact-card,
  .form-card {
    padding: 18px;
    border-radius: 20px;
  }


  .luxury-panel,
  .info-item,
  .stat {
    padding: 16px;
    border-radius: 18px;
  }


  .nav-links a {
    font-size: 0.9rem;
  }


  input,
  textarea,
  select {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 14px;
  }


  .submit-btn,
  .cta-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }


  .footer-bar {
    padding: 18px;
    border-radius: 18px;
    font-size: 0.88rem;
  }
}


/* =========================
   VERY SMALL PHONES
========================= */
@media (max-width: 360px) {
  .hero-left h1 {
    font-size: 1.8rem;
  }


  .nav-links {
    gap: 10px;
  }


  .nav-links a {
    font-size: 0.85rem;
  }


  .hero-left,
  .hero-right,
  .contact-card,
  .form-card {
    padding: 15px;
  }


  .luxury-panel,
  .info-item,
  .stat {
    padding: 14px;
  }
}

