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

    :root {
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark: #9a7030;
      --dark: #0f0a05;
      --dark2: #1e1408;
      --cream: #f9f5ef;
      --cream2: #f0e8d8;
      --text: #2c2218;
      --text-muted: #6b5a42;
      --white: #fff;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden
    }

    /* TOP BAR */
    .topbar {
      background: var(--dark);
      color: #bbb;
      font-size: 13px;
      padding: 8px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px
    }

    .topbar a {
      color: #bbb;
      text-decoration: none
    }

    .topbar a:hover {
      color: var(--gold)
    }

    .contact-info {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap
    }

    .social-links {
      display: flex;
      gap: 8px
    }

    .social-links a {
      width: 26px;
      height: 26px;
      border: 1px solid #444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      transition: all .2s
    }

    .social-links a:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .topbar-right {
      display: flex;
      gap: 16px;
      align-items: center
    }

    /* NAVBAR */
    nav {
      background: rgba(10, 6, 2, 0.97);
      backdrop-filter: blur(10px);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(201, 168, 76, .15)
    }

    .logo {
      display: flex;
      align-items: center;
      padding: 4px 0;
      text-decoration: none
    }

    .logo-img {
      height: 85px;
      width: auto;
      display: block;
      transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .logo:hover .logo-img {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 0;
      list-style: none
    }

    .nav-links a {
      display: block;
      padding: 22px 16px;
      color: #bbb;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .8px;
      text-transform: uppercase;
      transition: color .2s;
      position: relative
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      right: 50%;
      height: 2px;
      background: var(--gold);
      transition: left .3s, right .3s
    }

    .nav-links a:hover {
      color: var(--gold)
    }

    .nav-links a:hover::after {
      left: 16px;
      right: 16px
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;
      font-size: 24px;
      padding: 10px
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('img/about-banner.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      animation: zoomout 8s ease forwards
    }

    @keyframes zoomout {
      to {
        transform: scale(1)
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(5, 2, 0, .55) 0%, rgba(20, 12, 4, .4) 100%)
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      padding: 40px 20px
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 22px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 28px;
      border-radius: 2px
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(40px, 6vw, 72px);
      color: var(--gold);
      font-style: italic;
      line-height: 1.05;
      margin-bottom: 14px
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3.5vw, 40px);
      color: #fff;
      font-weight: 400;
      font-style: italic;
      margin-bottom: 36px
    }

    .btn-gold {
      display: inline-block;
      padding: 14px 40px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--dark);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 35px rgba(201, 168, 76, .45)
    }

    /* SECTIONS */
    section {
      padding: 90px 40px
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 48px);
      text-align: center;
      margin-bottom: 60px;
      font-style: italic;
      color: var(--text)
    }

    /* SERVICES */
    .services {
      background: var(--cream)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto
    }

    .service-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 28px rgba(0, 0, 0, .07);
      transition: transform .3s, box-shadow .3s
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, .13)
    }

    .service-card-img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      display: block
    }

    .service-card-body {
      padding: 26px 22px 30px
    }

    .service-card h3 {
      font-size: 17px;
      font-weight: 500;
      margin-bottom: 12px;
      color: var(--text)
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 22px
    }

    .btn-sm {
      display: inline-block;
      padding: 10px 28px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--dark);
      font-size: 13px;
      font-weight: 500;
      border-radius: 30px;
      text-decoration: none;
      transition: opacity .2s
    }

    .btn-sm:hover {
      opacity: .85
    }

    /* ABOUT */
    .about {
      background: #fff;
      padding: 100px 40px
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: center
    }

    .about-img-wrap {
      position: relative
    }

    .about-img-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: 16px;
      display: block
    }

    .about-img-wrap::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -16px;
      right: 16px;
      bottom: 16px;
      border: 2px solid var(--gold);
      border-radius: 16px;
      z-index: -1;
      opacity: .4
    }

    .about-text .section-title {
      text-align: left;
      margin-bottom: 24px
    }

    .about-text p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 16px
    }

    /* AIM & OBJECTIVES */
    .about-extra-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: 60px auto 0;
      align-items: stretch;
    }

    .aim-box {
      background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 100%);
      color: #fff;
      padding: 40px;
      border-radius: 16px;
      border: 1px solid rgba(201, 168, 76, 0.25);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .aim-box::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .aim-box:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
    }

    .extra-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .extra-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold);
    }

    .aim-text {
      font-size: 16px;
      line-height: 1.8;
      color: #e0d8cc;
      font-style: italic;
    }

    .objectives-box {
      background: var(--cream);
      padding: 40px;
      border-radius: 16px;
      border: 1px solid #e0d8cc;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .objectives-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(201, 168, 76, 0.1);
    }

    .objectives-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .objectives-list li {
      position: relative;
      padding-left: 28px;
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.6;
    }

    .objectives-list li::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold-dark);
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .objectives-list li:hover::before {
      transform: scale(1.3) rotate(45deg);
      color: var(--gold);
    }

    /* WHY CHOOSE US */
    .why-us {
      background: #fff;
      border-top: 1px solid rgba(201, 168, 76, 0.15);
    }

    .why-us-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }

    .why-us-info {
      position: sticky;
      top: 120px;
    }

    .why-us-badge {
      display: inline-block;
      padding: 6px 16px;
      background: var(--cream);
      border: 1px solid rgba(201, 168, 76, 0.3);
      color: var(--gold-dark);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      border-radius: 4px;
      font-weight: 500;
    }

    .why-us-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      line-height: 1.3;
      margin-bottom: 20px;
      color: var(--text);
      font-style: italic;
    }

    .why-us-info p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .why-us-accent {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      padding: 24px 30px;
      border-radius: 12px;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
    }

    .accent-number {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 700;
      line-height: 1;
    }

    .accent-text {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .why-us-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .why-us-card {
      display: flex;
      gap: 20px;
      background: var(--cream);
      padding: 20px 24px;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .why-icon {
      font-size: 24px;
      width: 48px;
      height: 48px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .why-us-card:hover {
      transform: translateX(10px);
      background: #fff;
      border-color: var(--gold);
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.12);
    }

    .why-us-card:hover .why-icon {
      transform: scale(1.15) rotate(5deg);
      background: var(--cream);
    }

    .why-content h4 {
      font-size: 16px;
      color: var(--text);
      margin-bottom: 6px;
      font-weight: 500;
    }

    .why-content p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* GALLERY */
    .gallery {
      background: var(--cream)
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 1100px;
      margin: 0 auto
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
      display: block
    }

    .gallery-item:hover img {
      transform: scale(1.07)
    }

    /* VIDEOS */
    .videos {
      background: #fff
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto
    }

    .video-item {
      text-align: center
    }

    .video-wrap {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: #111
    }

    .video-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block
    }

    .video-item p {
      margin-top: 14px;
      font-size: 14px;
      color: var(--text-muted)
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--cream)
    }

    .testi-inner {
      display: flex;
      gap: 60px;
      align-items: center;
      max-width: 1000px;
      margin: 0 auto;
      flex-wrap: wrap
    }

    .testi-gem {
      width: 220px;
      height: 220px;
      min-width: 220px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--gold);
      flex-shrink: 0
    }

    .testi-gem img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .testi-cards {
      flex: 1;
      min-width: 280px;
      display: flex;
      gap: 30px;
      flex-wrap: wrap
    }

    .testi-card {
      flex: 1;
      min-width: 180px
    }

    .quote {
      color: var(--gold);
      font-size: 36px;
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: 8px
    }

    .testi-card strong {
      font-size: 15px;
      display: block;
      margin-bottom: 6px
    }

    .testi-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      font-style: italic
    }

    /* CONTACT */
    .contact {
      background: #fff
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto
    }

    .contact-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-bottom: 50px;
      align-items: start
    }

    .map-wrap {
      border-radius: 14px;
      overflow: hidden;
      height: 330px;
      position: relative
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block
    }

    .map-btn {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--gold);
      color: var(--dark);
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .25)
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start
    }

    .c-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .contact-item h4 {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 4px
    }

    .contact-item p,
    .contact-item a {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      line-height: 1.6
    }

    .cform {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .fg label {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: .5px;
      text-transform: uppercase
    }

    .fg input,
    .fg textarea {
      padding: 12px 16px;
      border: 1px solid #e0d8cc;
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color .2s;
      background: var(--cream)
    }

    .fg input:focus,
    .fg textarea:focus {
      border-color: var(--gold)
    }

    .fg textarea {
      height: 145px;
      resize: vertical
    }

    .fg.msg {
      grid-row: 1/4
    }

    .cform-submit {
      grid-column: 1/-1
    }

    /* FOOTER */
    footer {
      background: var(--dark)
    }

    .footer-main {
      padding: 28px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .footer-nav {
      display: flex;
      gap: 22px;
      flex-wrap: wrap
    }

    .footer-nav a {
      color: #888;
      font-size: 12px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .footer-nav a:hover {
      color: var(--gold)
    }

    .footer-contact {
      color: #888;
      font-size: 13px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap
    }

    .footer-contact a {
      color: #888;
      text-decoration: none
    }

    .footer-contact a:hover {
      color: var(--gold)
    }

    .footer-social {
      display: flex;
      gap: 8px
    }

    .footer-social a {
      width: 32px;
      height: 32px;
      border: 1px solid #333;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-size: 11px;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s
    }

    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .footer-copy {
      padding: 18px 40px;
      text-align: center;
      color: #888;
      font-size: 12.5px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-copy a:hover {
      color: var(--gold-light);
    }



    /* RESPONSIVE */
    @media(max-width:900px) {

      .about-inner,
      .contact-top,
      .about-extra-grid,
      .why-us-grid {
        grid-template-columns: 1fr
      }

      .why-us-info {
        position: static;
        margin-bottom: 40px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr
      }

      .videos-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:600px) {
      section {
        padding: 60px 20px
      }

      nav {
        padding: 0 20px
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 6, 2, .98);
        padding: 10px 0
      }

      .nav-links.open {
        display: flex
      }

      .hamburger {
        display: block
      }

      .topbar {
        padding: 8px 20px;
        font-size: 11px
      }

      .gallery-grid {
        grid-template-columns: 1fr
      }

      .cform {
        grid-template-columns: 1fr
      }

      .fg.msg {
        grid-row: auto
      }

      .footer-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px
      }

      .footer-copy {
        padding: 12px 20px
      }

    }

    /* WHATSAPP FLOAT BUTTON */
    .whatsapp-btn {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 45px;
      right: 45px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
    }