:root {
      --bg-main: #C7B9A0;
      --primary: #000000;
      --secondary: #1a1a1a;
      --accent: #F0F4F8;
      --glass-bg: rgba(255, 255, 255, 0.2);
      --glass-border: rgba(255, 255, 255, 0.4);
      --glass-shadow: 0 20px 40px rgba(0, 31, 63, 0.15);
      --font-head: 'Montserrat', sans-serif;
      --font-body: 'Mulish', sans-serif;
      --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: var(--font-body);
      color: var(--primary);
      background-color: var(--bg-main);
      line-height: 1.7;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
      background-size: 40px 40px;
      opacity: 0.1;
      z-index: -1;
      pointer-events: none;
    }

    h1, h2, h3, h4, .brand { font-family: var(--font-head); text-transform: uppercase; color: var(--primary); }
    p { margin-bottom: 1rem; color: #000000; font-weight: 500; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }

    .section-padding { padding: 6rem 8%; }

    /* Navbar */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
    }

    .site-header.scrolled { box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12); }

    .brand {
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--primary);
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .brand i { font-size: 1.3rem; }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      position: relative;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--primary); }

    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    .nav-btn {
      background: var(--primary);
      padding: 12px 28px;
      border-radius: 4px;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .nav-btn:hover {
      background: #1a1a1a;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu-btn { display: none; color: var(--primary); font-size: 1.5rem; cursor: pointer; }

    /* Hero */
    .contact-hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      padding: 8rem 8% 5rem 8%;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
                  url('budha.jpg') center/cover no-repeat;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 22px;
      padding: 3.2rem 3rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
      text-align: center;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      color: #000000;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin: 0 auto 1.5rem;
    }

    .hero-content h1 {
      color: #ffffff;
      font-size: 3.2rem;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      font-weight: 800;
    }

    .hero-content p {
      color: #f5f5f5;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0;
    }

    /* Contact layout */
    .contact-shell {
      display: grid;
      grid-template-columns: minmax(260px, 360px) 1fr;
      gap: 2.5rem;
      margin-top: -4rem;
    }

    .contact-card {
      background: #ffffff;
      border-radius: 22px;
      padding: 2rem;
      box-shadow: 0 20px 45px rgba(0, 31, 63, 0.15);
      border: 1px solid rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }

    .contact-card h3 { font-size: 1.4rem; }

    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .contact-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
    .contact-item p { margin: 0; color: #333; font-weight: 600; }

    .form-card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 22px;
      padding: 2.5rem;
      box-shadow: 0 20px 45px rgba(0, 31, 63, 0.12);
      border: 1px solid rgba(0,0,0,0.08);
    }

    .form-card h2 { font-size: 2rem; margin-bottom: 0.8rem; }

    .contact-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 1.5rem;
    }

    .contact-form .full { grid-column: 1 / -1; }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .field label {
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.7px;
      text-transform: uppercase;
    }

    .field input,
    .field textarea {
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 14px;
      padding: 12px 14px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      background: #fff;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: #000000;
      box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
    }

    .submit-btn {
      padding: 14px 30px;
      border-radius: 40px;
      background: #000000;
      color: #ffffff;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      justify-self: start;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .form-status {
      margin-top: 0.8rem;
      font-weight: 600;
      color: #1a1a1a;
      display: none;
    }

    .form-status.visible { display: block; }

    .map-card {
      margin-top: 2rem;
      background: #ffffff;
      border-radius: 22px;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 16px 38px rgba(0, 31, 63, 0.12);
    }

    .map-frame {
      width: 100%;
      height: 260px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.08);
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* FAQ */
    .faq-section { background: #F5F0E8; }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .faq-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.4rem 1.6rem;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 10px 24px rgba(0, 31, 63, 0.12);
    }

    .faq-card summary {
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .faq-card summary::-webkit-details-marker { display: none; }

    .faq-card summary::after {
      content: '+';
      font-size: 1.2rem;
      font-weight: 700;
    }

    .faq-card[open] summary::after { content: '–'; }

    .faq-card p { margin-top: 0.8rem; color: #333; }

    /* Footer */
    footer {
      background: #001F3F;
      color: #bcccdc;
      padding: 5rem 8% 2rem;
      margin-top: 4rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.1rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a { color: #bcccdc; transition: var(--transition); }
    .footer-links a:hover { color: #C7B9A0; padding-left: 5px; }

    .socials a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 10px;
      color: #fff;
    }

    .socials a:hover { background: #C7B9A0; color: #001F3F; }

    .newsletter-form { display: flex; margin-top: 1rem; }
    .newsletter-form input {
      padding: 12px;
      border-radius: 30px 0 0 30px;
      border: none;
      outline: none;
      width: 100%;
      background: rgba(255,255,255,0.1);
      color: #fff;
    }
    .newsletter-form button {
      padding: 12px 20px;
      border-radius: 0 30px 30px 0;
      border: none;
      background: #C7B9A0;
      color: #001F3F;
      font-weight: bold;
      cursor: pointer;
    }

    @media(max-width: 1100px) {
      .nav-links { display: none; }
      .mobile-menu-btn { display: block; }
      .contact-shell { grid-template-columns: 1fr; margin-top: 2rem; }
    }

    @media(max-width: 992px) {
      .section-padding { padding: 5rem 6%; }
      .nav-container { padding: 0.9rem 1.6rem; gap: 1.5rem; }
      .contact-hero { min-height: auto; padding: 8rem 6% 4rem; }
      .hero-content { max-width: 100%; }
      .map-frame { height: 240px; }
      .faq-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    }

    @media(max-width: 768px) {
      .hero-content { padding: 2.4rem 2rem; }
      .hero-content h1 { font-size: 2.4rem; }
      .contact-form { grid-template-columns: 1fr; }
      .contact-shell { gap: 2rem; }
      .map-frame { height: 220px; }
    }

    @media(max-width: 576px) {
      .section-padding { padding: 3.5rem 6%; }
      .hero-content { padding: 2rem 1.6rem; }
      .hero-content h1 { font-size: 2rem; }
      .form-card { padding: 2rem; }
      .contact-card { padding: 1.6rem; }
      .map-frame { height: 200px; }
      .faq-grid { grid-template-columns: 1fr; }
    }

/* Inline styles extracted from HTML */
.u-inline-1 { color: var(--primary); }
.u-inline-2 { display: flex; align-items: center; gap: 20px; }
.u-inline-3 { max-width: 900px; margin: 0 auto; }
.u-inline-4 { color: var(--primary); font-weight: 700; letter-spacing: 2px; }
.u-inline-5 { font-size: 2.4rem; margin: 0.6rem 0 0.4rem; }
.u-inline-6 { margin-bottom: 1.5rem; color: #fff; }
.u-inline-7 { color: #fff; }
.u-inline-8 { color: #bcccdc; }
.u-inline-9 { color: #bcccdc; }
.u-inline-10 { color: #bcccdc; }
.u-inline-11 { color: #bcccdc; }
.u-inline-12 { color: #bcccdc; }
.u-inline-13 { color: #bcccdc; }
.u-inline-14 { color: #bcccdc; }
.u-inline-15 { margin-right: 8px; }
.u-inline-16 { color: #bcccdc; }
.u-inline-17 { margin-right: 8px; }
.u-inline-18 { color: #bcccdc; }
.u-inline-19 { margin-right: 8px; }
.u-inline-20 { color: #bcccdc; margin-bottom: 1rem; }
.u-inline-21 { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; margin-top: 2rem; color: #888; text-align: center; }
