 /* ============================================================
       CSS VARIABLES & RESET
    ============================================================ */
    :root {
      --teal: #0e6b72;
      --teal-dark: #0a4a50;
      --sun: #ffb347;
      --sun-deep: #f7951d;
      --text: #123047;
      --muted: #658097;
      --line: rgba(18,48,71,.10);
      --shadow: 0 14px 40px rgba(10,35,70,.10);
      --shadow-lg: 0 22px 60px rgba(10,35,70,.16);
      --max: 1280px;
      --header-h: 82px;
      --radius: 16px;
      --radius-sm: 10px;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
    .section { padding: 30px 0; }
    .section-sm { padding: 70px 0; }

    .label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--sun-deep);
    }
    .label::before {
      content: ''; display: block;
      width: 28px; height: 2px; background: var(--sun-deep);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.18;
      color: var(--text); margin-top: 12px;
    }
    .section-sub {
      color: var(--muted); font-size: 1.05rem;
      max-width: 560px; margin-top: 14px; line-height: 1.75;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 14px 30px; border-radius: 50px;
      font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
      cursor: pointer; transition: all .3s ease; border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sun-deep); color: #fff;
      box-shadow: 0 6px 24px rgba(247,149,29,.35);
    }
    .btn-primary:hover { background: var(--sun); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(247,149,29,.45); }
    .btn-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.65);
    }
    .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
    .btn-teal { background: var(--teal); color: #fff; }
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

    /* ============================================================
       HEADER / NAVBAR
    ============================================================ */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--header-h);
      transition: all .4s ease;
    }
    #header.scrolled {
      background: rgba(10,74,80,.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 4px 32px rgba(10,35,70,.18);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: var(--header-h);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-logo img {
      height: 52px; width: auto; object-fit: contain;
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text span:first-child {
      font-family: var(--font-display);
      font-size: 1.45rem; font-weight: 700; color: #fff;
    }
    .logo-text span:last-child {
      font-size: 0.68rem; color: var(--sun); letter-spacing: 2px;
      text-transform: uppercase; font-weight: 500;
    }
    .nav-links {
      display: flex; align-items: center; gap: 6px;
    }
    .nav-links a {
      color: rgba(255,255,255,.88); font-size: 0.9rem; font-weight: 500;
      padding: 8px 14px; border-radius: 8px;
      transition: all .25s;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--sun); background: rgba(255,255,255,.08);
    }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-call {
      display: flex; align-items: center; gap: 7px;
      color: #fff; font-weight: 600; font-size: 0.88rem;
    }
    .nav-call i { color: var(--sun); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: #fff; border-radius: 2px; transition: .3s;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
      background: var(--teal-dark); padding: 20px 24px 30px;
      z-index: 999; border-top: 1px solid rgba(255,255,255,.1);
      flex-direction: column; gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: rgba(255,255,255,.88); padding: 13px 16px;
      border-radius: 10px; font-weight: 500; font-size: 1rem;
      transition: .2s;
    }
    .mobile-menu a:hover { background: rgba(255,255,255,.1); color: var(--sun); }
    .mobile-menu .mob-btn {
      margin-top: 12px; display: flex; flex-direction: column; gap: 10px;
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../image/goa-sightseeing-tour-beaches-1920-1080.webp') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,74,80,.88) 0%, rgba(10,74,80,.55) 55%, rgba(10,35,70,.72) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 700px; padding-top: var(--header-h);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
      padding: 6px 16px; color: var(--sun);
      font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; margin-bottom: 24px;
      animation: fadeUp .7s ease both;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 700; color: #fff; line-height: 1.08;
      animation: fadeUp .7s .15s ease both;
    }
    .hero-title em { font-style: italic; color: var(--sun); }
    .hero-desc {
      color: rgba(255,255,255,.82); font-size: 1.08rem;
      max-width: 520px; margin-top: 20px; line-height: 1.75;
      animation: fadeUp .7s .3s ease both;
    }
    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
      animation: fadeUp .7s .45s ease both;
    }
    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 40px; margin-top: 60px;
      animation: fadeUp .7s .6s ease both;
    }
    .hero-stat strong {
      display: block; font-family: var(--font-display);
      font-size: 2rem; font-weight: 700; color: var(--sun);
    }
    .hero-stat span { color: rgba(255,255,255,.72); font-size: 0.82rem; }
    .hero-scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center;
      gap: 6px; color: rgba(255,255,255,.6); font-size: 0.75rem;
      letter-spacing: 1.5px; text-transform: uppercase; animation: bob 2s infinite;
    }
    .hero-scroll i { font-size: 1.1rem; }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why { background: #f7fbfc; }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 28px; margin-top: 56px;
    }
    .why-card {
      background: #fff; border-radius: var(--radius);
      padding: 36px 30px; box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 4px; height: 0; background: var(--teal);
      transition: height .4s ease;
    }
    .why-card:hover::before { height: 100%; }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .why-icon {
      width: 64px; height: 64px; border-radius: 16px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: #fff; margin-bottom: 20px;
    }
    .why-card h3 {
      font-family: var(--font-display); font-size: 1.3rem;
      font-weight: 700; margin-bottom: 10px;
    }
    .why-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services { background: #fff; }
    .services-header {
      display: flex; flex-wrap: wrap; justify-content: space-between;
      align-items: flex-end; gap: 24px; margin-bottom: 52px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }
    .service-card {
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); background: #fff;
      transition: transform .35s, box-shadow .35s;
      cursor: pointer;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .service-img {
      height: 200px; overflow: hidden; position: relative;
    }
    .service-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .service-card:hover .service-img img { transform: scale(1.08); }
    .service-tag {
      position: absolute; top: 14px; left: 14px;
      background: var(--sun-deep); color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
    }
    .service-body { padding: 22px 24px 24px; }
    .service-body h3 {
      font-family: var(--font-display); font-size: 1.2rem;
      font-weight: 700; margin-bottom: 8px;
    }
    .service-body p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }
    .service-footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 18px; padding-top: 16px;
      border-top: 1px solid var(--line);
    }
    .service-price { font-weight: 700; color: var(--teal); font-size: 0.95rem; }
    .service-link {
      font-size: 0.85rem; font-weight: 600; color: var(--sun-deep);
      display: flex; align-items: center; gap: 5px;
      transition: gap .2s;
    }
    .service-card:hover .service-link { gap: 9px; }

    /* ============================================================
       FEATURED TOURS (PACKAGES)
    ============================================================ */
    #packages { background: linear-gradient(170deg, #f0f8f9 0%, #fff 60%); }
    .pkg-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 28px; margin-top: 52px;
    }
    .pkg-card {
      border-radius: var(--radius); overflow: hidden;
      background: #fff; box-shadow: var(--shadow);
      display: flex; flex-direction: column;
      transition: transform .35s, box-shadow .35s;
    }
    .pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .pkg-img { height: 240px; overflow: hidden; position: relative; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .pkg-card:hover .pkg-img img { transform: scale(1.06); }
    .pkg-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,35,70,.7) 0%, transparent 55%);
    }
    .pkg-badges {
      position: absolute; bottom: 16px; left: 16px;
      display: flex; gap: 8px;
    }
    .pkg-badge {
      background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25); color: #fff;
      font-size: 0.72rem; font-weight: 600; letter-spacing: .8px;
      padding: 4px 12px; border-radius: 50px;
      display: flex; align-items: center; gap: 5px;
    }
    .pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .pkg-body h3 {
      font-family: var(--font-display); font-size: 1.35rem;
      font-weight: 700; margin-bottom: 10px;
    }
    .pkg-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
    .pkg-features {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
    }
    .pkg-feat {
      display: flex; align-items: center; gap: 5px;
      background: #f0f8f9; color: var(--teal);
      font-size: 0.78rem; font-weight: 600; padding: 5px 12px;
      border-radius: 50px;
    }
    .pkg-footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
    }
    .pkg-price strong {
      font-family: var(--font-display); font-size: 1.5rem;
      font-weight: 700; color: var(--text);
    }
    .pkg-price span { font-size: 0.8rem; color: var(--muted); display: block; }

    /* ============================================================
       GALLERY
    ============================================================ */
    #gallery { background: var(--teal-dark); }
    #gallery .section-title { color: #fff; }
    #gallery .label { color: var(--sun); }
    #gallery .label::before { background: var(--sun); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 180px;
      gap: 12px; margin-top: 52px;
    }
    .g-item { border-radius: 12px; overflow: hidden; cursor: pointer; }
    .g-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s, filter .5s;
      filter: brightness(.88);
    }
    .g-item:hover img { transform: scale(1.06); filter: brightness(1); }
    .g1 { grid-column: span 4; grid-row: span 2; }
    .g2 { grid-column: span 4; }
    .g3 { grid-column: span 4; }
    .g4 { grid-column: span 3; grid-row: span 2; }
    .g5 { grid-column: span 5; }
    .g6 { grid-column: span 4; }
    .g7 { grid-column: span 4; }
    .g8 { grid-column: span 3; }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials { background: #fff; }
    .testi-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px; margin-top: 52px;
    }
    .testi-card {
      background: #f7fbfc; border-radius: var(--radius);
      padding: 30px 28px; position: relative;
      transition: box-shadow .3s, transform .3s;
      border: 1px solid var(--line);
    }
    .testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .testi-quote {
      font-size: 3rem; line-height: 1; color: var(--sun);
      font-family: Georgia, serif; margin-bottom: 4px;
    }
    .testi-card p {
      color: #4a6070; font-size: 0.93rem; line-height: 1.75;
      font-style: italic; margin-bottom: 22px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--sun));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.1rem;
      font-weight: 700; color: #fff;
    }
    .testi-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
    .testi-info span { font-size: 0.78rem; color: var(--muted); }
    .testi-stars { color: var(--sun-deep); font-size: 0.85rem; margin-bottom: 2px; }

    /* ============================================================
       CTA BAND
    ============================================================ */
    #cta {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      position: relative; overflow: hidden;
    }
    .cta-pattern {
      position: absolute; inset: 0; opacity: .05;
      background-image: radial-gradient(circle, #fff 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .cta-inner {
      position: relative; z-index: 1;
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: space-between; gap: 32px;
    }
    .cta-text .section-title { color: #fff; max-width: 520px; }
    .cta-text .section-sub { color: rgba(255,255,255,.75); }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .cta-phone {
      display: flex; flex-direction: column; gap: 10px;
    }
    .cta-phone-item {
      display: flex; align-items: center; gap: 10px;
      color: #fff; font-size: 1.05rem; font-weight: 600;
    }
    .cta-phone-item i {
      width: 38px; height: 38px; background: rgba(255,255,255,.15);
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; color: var(--sun);
    }

    /* ============================================================
       BOOKING FORM
    ============================================================ */
    #booking { background: #f7fbfc; }
    .booking-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: start;
    }
    .booking-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; margin: 12px 0; }
    .booking-info p { color: var(--muted); line-height: 1.75; }
    .booking-contact { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .b-contact-item {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .b-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--teal); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem;
    }
    .b-contact-item strong { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 2px; }
    .b-contact-item a { font-weight: 600; color: var(--text); transition: color .2s; }
    .b-contact-item a:hover { color: var(--teal); }
    .form-card {
      background: #fff; border-radius: var(--radius);
      padding: 40px; box-shadow: var(--shadow-lg);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 0.83rem; font-weight: 600;
      margin-bottom: 7px; color: var(--text);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--line); border-radius: var(--radius-sm);
      font-family: var(--font-body); font-size: 0.92rem; color: var(--text);
      background: #fff; transition: border .2s, box-shadow .2s; outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(14,107,114,.1);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
    }
    .btn-wa {
      background: #25D366; color: #fff;
      display: inline-flex; align-items: center; gap: 9px;
      padding: 14px 28px; border-radius: 50px;
      font-weight: 700; font-size: 0.9rem; cursor: pointer;
      border: none; transition: all .3s;
    }
    .btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

    /* ============================================================
       CONTACT / MAP
    ============================================================ */
    #contact { background: #fff; }
    .contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
    .map-wrap {
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-lg); height: 420px;
    }
    .map-wrap iframe { width: 100%; height: 100%; border: none; }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: var(--teal-dark); color: rgba(255,255,255,.75);
      padding: 72px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 40px; padding-bottom: 56px;
    }
    .footer-brand p {
      font-size: 0.9rem; line-height: 1.75; margin-top: 16px;
      max-width: 280px;
    }
    .footer-social {
      display: flex; gap: 10px; margin-top: 24px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.1); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.7); transition: all .25s;
    }
    .footer-social a:hover { background: var(--sun-deep); color: #fff; }
    .footer-col h4 {
      color: #fff; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.5px; margin-bottom: 20px;
      padding-bottom: 12px; border-bottom: 2px solid var(--sun-deep);
      display: inline-block;
    }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      font-size: 0.88rem; transition: color .2s;
      display: flex; align-items: center; gap: 7px;
    }
    .footer-col ul a:hover { color: var(--sun); }
    .footer-col ul a i { font-size: 0.7rem; color: var(--sun); }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.88rem; margin-bottom: 14px;
    }
    .footer-contact-item i { color: var(--sun); margin-top: 2px; flex-shrink: 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 20px 0; display: flex; flex-wrap: wrap;
      justify-content: space-between; align-items: center; gap: 12px;
    }
    .footer-bottom p { font-size: 0.83rem; }
    .footer-bottom a { color: var(--sun); }

    /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
    .float-btns {
      position: fixed; bottom: 28px; right: 24px;
      z-index: 900; display: flex; flex-direction: column; gap: 12px;
    }
    .float-btn {
      width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.22);
      cursor: pointer; transition: transform .3s, box-shadow .3s;
      border: none;
    }
    .float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(0,0,0,.3); }
    .float-wa { background: #25D366; }
    .float-call { background: var(--teal); }
    .float-btn-label {
      position: absolute; right: 68px;
      background: var(--text); color: #fff;
      font-size: 0.78rem; font-weight: 600; padding: 5px 12px;
      border-radius: 6px; white-space: nowrap; opacity: 0;
      pointer-events: none; transition: opacity .25s;
    }
    .float-btn-wrap { position: relative; display: flex; align-items: center; }
    .float-btn-wrap:hover .float-btn-label { opacity: 1; }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .contact-wrap { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(6, 1fr); }
      .g1 { grid-column: span 3; grid-row: span 2; }
      .g2, .g3 { grid-column: span 3; }
      .g4 { grid-column: span 3; grid-row: 1; }
      .g5, .g6, .g7, .g8 { grid-column: span 3; }
    }
    @media (max-width: 768px) {
      :root { --header-h: 68px; }
      .section { padding: 72px 0; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-stats { gap: 28px; }
      .form-row { grid-template-columns: 1fr; }
      .booking-wrap { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
      .g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8 {
        grid-column: span 1; grid-row: span 1;
      }
      .footer-grid { grid-template-columns: 1fr; }
      .services-header { flex-direction: column; align-items: flex-start; }
      .cta-inner { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 18px; }
      .hero-title { font-size: 2.4rem; }
      .form-card { padding: 28px 20px; }
    }  

/* ============================================================
   ABOUT US
============================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-content {
  max-width: 520px;
}

.about-text {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-points {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.about-points i {
  color: var(--sun-deep);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
} 
/* ABOUT CARD STYLE */
.about-card-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all .3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-card-body {
  padding: 22px;
}

.about-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-card-body ul {
  padding-left: 0;
}

.about-card-body ul li {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text);
}

.about-card-body i {
  color: var(--teal);
  margin-right: 6px;
}
.hidden { opacity:0; transform: translateY(30px); transition: all .6s ease; }
.show { opacity:1; transform: translateY(0); }