/* ===================== DAYS INN SHARONVILLE ===================== */

:root {
  --navy-900: #0a2240;
  --navy-800: #003c71;
  --navy-700: #0b4a86;
  --navy-600: #0f5ba0;
  --sun-500: #ffc72c;
  --sun-600: #f0b400;
  --sun-300: #ffe08a;
  --ink-900: #0d1b2a;
  --ink-700: #2a3b4f;
  --ink-500: #5a6b7e;
  --ink-300: #9aa7b7;
  --cream: #fdf8ed;
  --paper: #fffdf7;
  --white: #ffffff;
  --line: #e9e2cf;
  --shadow-sm: 0 4px 12px rgba(10, 34, 64, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 34, 64, 0.12);
  --shadow-lg: 0 30px 60px rgba(10, 34, 64, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink-900);

  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--sun-500); color: var(--navy-900); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-primary {
  background: var(--sun-500);
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.4);
}
.btn-primary:hover { background: var(--sun-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 199, 44, 0.55); }
.btn-secondary {
  background: var(--navy-800);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--navy-900);
  color: #cfd9e6;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left i { color: var(--sun-500); margin-right: 6px; }
.topbar-left .sep { opacity: .4; }
.topbar-phone {
  color: var(--sun-500);
  font-weight: 700;
  letter-spacing: .3px;
}
.topbar-phone:hover { color: var(--sun-300); }
@media (max-width: 720px) {
  .topbar-left .sep, .topbar-left span:nth-child(3) { display: none; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 247, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 247, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {height: 52px; object-fit: contain; }

.nav-desktop {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 10px 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  position: relative;
  transition: color .2s ease;
}
.nav-link:active {color:#ffdd00;}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--sun-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover { color: var(--navy-900); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy-900); font-weight: 600; }
.nav-cta { }
@media (max-width: 1040px) {
  .nav-desktop, .nav-cta { display: none; }
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--navy-900); border-radius: 2px;
  transition: transform .3s, opacity .3s, top .3s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
@media (max-width: 1040px) {
  .menu-toggle { display: block; }
}
.nav-mobile {
  max-height: 0; overflow: hidden;
  background: var(--paper);
  border-top: 1px solid transparent;
  transition: max-height .35s ease, border-color .3s ease;
}
.nav-mobile.open { max-height: 520px; border-top-color: var(--line); }
.nav-link-m {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-700);
}
.nav-link-m.phone { color: var(--navy-900); font-weight: 700; }
.nav-link-m:hover { background: var(--cream); color: var(--navy-900); }

 /* Read More Content */
  .read-more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.55s ease;
  }

  .read-more-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
  }

  /* Read More Button */
  .read-more-btn {
    margin-top: 12px;  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background:#ffdd00;
    color: #666;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 146, 69, 0.22);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .read-more-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.35s ease;
  }

  .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 146, 69, 0.28);
  }

  .read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.28) 50%,
      rgba(255,255,255,0) 100%
    );
    transition: all 0.6s ease;
  }

  .read-more-btn:hover::before {
    left: 100%;
  }

  .read-more-btn.active span {
    transform: rotate(45deg);
  }



/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  padding-bottom: 56px;
}
.foot-brand { display:inline; align-items: center;}
.foot-brand .brand-logo {height: 60px; }
.foot-brand strong { display: block; color: var(--white); font-size:20px; }
.foot-brand span { font-size: 13px; letter-spacing: 2px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.foot-cols h5 { color: var(--white); font-size: 18px; margin-bottom: 14px; font-weight: 700; }
.foot-cols a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.65); }
.foot-cols a:hover { color: var(--sun-500); }
.foot-cols i { color: var(--sun-500); margin-right: 8px; width: 16px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
}
.foot-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== FLOATING CALL BTN ===================== */
.floating-call {
  position: fixed; right: 22px; bottom: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--sun-500); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(255, 199, 44, 0.5);
  z-index: 40;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: ring 2.6s ease-in-out infinite;
}
.floating-call:hover { transform: scale(1.08) rotate(-8deg); }
@keyframes ring {
  0%, 70%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(12deg); }
  20% { transform: rotate(-12deg); }
}

/* ===================== REVEAL ANIMATIONS ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HIDE REACT ROOT ===================== */
#root { display: none; }

/*============================================================================================Slideshow=======================================*/

 .hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
  }
  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
  }
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 10px #000;
    max-width: 600px;
  }
  .hero-text p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 0 0 1.5rem;
  }
  .book-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #ffdd00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.3rem;
    transition: 0.3s;
  }
  .book-btn:hover {
    background: #ffd633;
    transform: scale(1.05);
  }
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 16px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  }
  .prev { left: 20px; }
  .next { right: 20px; }
  .dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
  }
  .dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  .dot.active {
    background: #ffdd00;
    transform: scale(1.4);
  }
  @media (max-width: 768px) {
    .hero-slider { height: 60vh; min-height: 400px; }
    .hero-text { left: 5%; }
  }

/*Amenities*/

        .amenities-section {
            padding: 80px 20px;
            background:#F8F9FC;
            position: relative;
            overflow: hidden;
        }

        .amenities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-title {
            text-align: center;
            color:#004986;
            margin-bottom: 60px;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .amenity-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            position: relative;
            overflow: hidden;
        }

        .amenity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .amenity-card:hover::before {
            left: 100%;
        }

        .amenity-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 1);
        }

        .amenity-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background:#FFBD00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .amenity-card:hover .amenity-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        .amenity-title {
            font-size: 1.4rem;
            font-weight: 700;
            color:#004986;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .amenity-card:hover .amenity-title {
            color: #667eea;
        }

        .amenity-desc {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Staggered Animation for Cards */
        .amenity-card:nth-child(1) { animation: fadeInUpCard 0.8s ease-out 0.5s forwards; }
        .amenity-card:nth-child(2) { animation: fadeInUpCard 0.8s ease-out 0.7s forwards; }
        .amenity-card:nth-child(3) { animation: fadeInUpCard 0.8s ease-out 0.9s forwards; }
        .amenity-card:nth-child(4) { animation: fadeInUpCard 0.8s ease-out 1.1s forwards; }
        .amenity-card:nth-child(5) { animation: fadeInUpCard 0.8s ease-out 1.3s forwards; }
        .amenity-card:nth-child(6) { animation: fadeInUpCard 0.8s ease-out 1.5s forwards; }

        @keyframes fadeInUpCard {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .amenities-section {
                padding: 60px 15px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .amenity-card {
                padding: 30px 20px;
            }

            .amenity-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                margin-bottom: 40px;
            }

            .amenity-card {
                padding: 25px 15px;
            }
        }

        /* Scroll-triggered animation */
        .amenities-section.animate-cards .amenity-card {
            animation-play-state: running;
        }


/*===========================================================Welcome===========================================================================*/


        .welcome-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="r" values="100;120;100" dur="3s" repeatCount="indefinite"/><animate attributeName="cy" values="200;180;200" dur="3s" repeatCount="indefinite"/></circle><circle cx="800" cy="600" r="80" fill="url(%23a)"><animate attributeName="r" values="80;100;80" dur="4s" repeatCount="indefinite"/><animate attributeName="cy" values="600;580;600" dur="4s" repeatCount="indefinite"/></circle></svg>') no-repeat center/cover;
            animation: float 20s ease-in-out infinite;
            z-index: 1;
        }

        .welcome-container {
            max-width: 1200px;
            width: 100%;
     
            gap:30px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
		.welcome-content
 {
    position: relative;
    padding: 20px 0 20px 0;
    border-left: 5px solid #ffdd00;
    padding-left: 35px;
}

        .welcome-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color:#004986;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .highlight {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .welcome-content .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color:#004986;
            margin-bottom: 25px;
            font-weight: 400;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.6s forwards;
        }

        .welcome-content p {
            font-size:16px;
      
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.9s forwards;
        }
        .welcome-image {
            position: relative;
            opacity: 0;
            transform: scale(0.8) translateX(50px);
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        .welcome-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 30px rgba(0, 0, 0, 0.3);
            border: 8px solid #FFBE00;
        }

         /* Animations */
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: scale(1) translateX(0);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .welcome-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .welcome-content h1 {
                margin-bottom: 15px;
            }

            .welcome-image {
                transform: scale(0.9) translateY(30px);
                animation: slideInUp 1s ease-out 0.5s forwards;
            }

            .floating-icons {
                display: none;
            }

            .welcome-section {
                min-height: 90vh;
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .welcome-content h1 {
                font-size: 2.2rem;
            }

               .welcome-image img {
                height: 350px;
            }
        }

/*===================================================================================Area Attraction*/

        .attractions-area {
     
            position: relative;
            padding: 80px 20px 100px;
            overflow: hidden;
        }

        .attractions-area::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }



        .map-placeholder {
            color: rgba(255,255,255,0.9);
            font-size: 1.5rem;
            font-weight: 500;
            text-align: center;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.7; }
        }

        .section-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: #475569;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(40px);
            animation: slideDown 0.8s ease 0.3s forwards;
        }

        .main-title {
            font-size: clamp(3.5rem, 7vw, 2.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(50px);
            animation: slideDown 1s ease 0.5s forwards;
        }

        .main-subtitle {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: #64748b;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(40px);
            animation: slideDown 1s ease 0.7s forwards;
        }

        .attractions-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .attraction-spot {
            background: white;
            border-radius: 24px;
            padding: 48px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateY(60px);
            border: 1px solid rgba(255,255,255,0.8);
        }

        .attraction-spot:nth-child(1) { animation: revealCard 0.8s ease 1s forwards; }
        .attraction-spot:nth-child(2) { animation: revealCard 0.8s ease 1.2s forwards; }
        .attraction-spot:nth-child(3) { animation: revealCard 0.8s ease 1.4s forwards; }
        .attraction-spot:nth-child(4) { animation: revealCard 0.8s ease 1.6s forwards; }

        .attraction-spot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981, #3b82f6);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .attraction-spot:hover::before {
            transform: scaleX(1);
        }

        .attraction-spot:hover {
            transform: translateY(-16px) scale(1.02);
            box-shadow: 0 40px 100px rgba(0,0,0,0.15);
        }

        .spot-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 28px;
        }

        .spot-icon {
            width: 68px;
            height: 68px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .attraction-spot:hover .spot-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 20px 48px rgba(0,0,0,0.25);
        }

        .spot-meta h3 {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .spot-distance {
            color: #64748b;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .spot-description {
            color: #475569;
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 32px;
        }

        .spot-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .highlight-tag {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            color: #475569;
            padding: 10px 20px;
            border-radius: 16px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .attraction-spot:hover .highlight-tag {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            color: #92400e;
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes slideDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes revealCard {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .attractions-list {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .attractions-area {
                padding: 100px 16px 80px;
            }
            
            .hero-map {
                height: 300px;
                margin-bottom: 60px;
            }
            
            .attractions-list {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .attraction-spot {
                padding: 36px 28px;
            }
            
            .spot-header {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
        }

/* ===================== RESERVATION ===================== */


/* ===================== COMPACT BOOKING BAR ===================== */
.booking-bar {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.form-group {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  flex: 1;
  min-width: 140px;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #003c71;
}

.form-group input,
.form-group select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.booking-btn {
  height: 42px;
  padding: 0 20px;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-btn {
    width: 100%;
  }
}

/*=======================================SMO*/
/* Footer Social Icons */
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003c71;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fdb913;
  color: #000;
  transform: translateY(-3px);
}

/* Back To Top */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #003c71;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 16px;
  z-index: 999;
  transition: 0.3s;
}

#backToTop:hover {
  background: #fdb913;
  color: #000;
}
/* Accessibility Info Bar */
/* Accessibility Info Bar */
.accessibility-bar {
  background: #f4f6f9;
  padding: 14px 0;
  text-align: center;
  font-size:20px;
  border-top: 1px solid #ddd;
}

.accessibility-bar p {
  margin: 0;
  color: #333;
}

.accessibility-bar a {
  color: #003c71;
  font-weight: 700;
  font-size:20px; /* Bigger phone text */
  text-decoration: none;
  margin-left: 5px;
}

.accessibility-bar a i {
  margin-right: 6px;
  font-size: 16px;
}

.accessibility-bar a:hover {
  color: #fdb913;
}


/*
.reservation {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
}
.reservation::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 300px;
  background: radial-gradient(ellipse at top, rgba(255, 199, 44, 0.1), transparent);
  pointer-events: none;
}
.reserve-card {
  max-width: 1000px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.reserve-card::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.15), transparent 70%);
  pointer-events: none;
}
.field { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.field-full { grid-column: span 3; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--navy-900);
  display: flex; align-items: center; gap: 8px;
}
.field label i { color: var(--navy-800); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit; font-size: 14px;
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease;
  font-weight: 500;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(0, 60, 113, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.reserve-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.reserve-success {
  grid-column: span 3;
  display: none;
  padding: 14px 18px;
  background: #e8f6ee;
  color: #165a34;
  border-radius: 10px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}
.reserve-success.show { display: flex; animation: pop .5s ease; }
@keyframes pop {
  0% { transform: scale(.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 820px) {
  .reserve-card { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .field-full { grid-column: span 2; }
  .reserve-success { grid-column: span 2; }
}
@media (max-width: 520px) {
  .reserve-card { grid-template-columns: 1fr; }
  .field-full, .reserve-success { grid-column: span 1; }
}








/* ===================== HERO =====================
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 100px 0 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 199, 44, 0.25), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(15, 91, 160, 0.4), transparent 50%),
    linear-gradient(135deg, #001d3d 0%, #003c71 55%, #0b4a86 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 8px);
  pointer-events: none;
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.hero-dot {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--sun-500), transparent 70%);
  opacity: .25; filter: blur(20px);
  animation: float 10s ease-in-out infinite;
}
.hero-dot.d1 { width: 260px; height: 260px; top: 10%; left: 8%; }
.hero-dot.d2 { width: 180px; height: 180px; top: 60%; right: 12%; animation-delay: -4s; }
.hero-dot.d3 { width: 120px; height: 120px; bottom: 15%; left: 40%; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 199, 44, 0.18);
  border: 1px solid rgba(255, 199, 44, 0.5);
  color: var(--sun-500);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  margin: 24px 0 18px;
  letter-spacing: -1px;
}
.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, var(--sun-500), var(--sun-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 640px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
}
.stat {
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 4px;
}
.stat strong {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--sun-500);
}
.stat span { font-size: 12px; opacity: .85; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  z-index: 3;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 6px; width: 3px; height: 8px;
  background: var(--sun-500); border-radius: 3px; transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}
 */
/* ===================== SECTIONS ===================== 
.section { padding: 100px 0; position: relative; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--navy-800);
  margin-bottom: 16px;
}
.eyebrow span {
  display: inline-block; width: 30px; height: 2px;
  background: var(--sun-500);
}
.eyebrow.center { justify-content: center; }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy-900);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 640px;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 72px 0; }
}
 */
/* ===================== WELCOME ===================== 
.welcome { background: var(--cream); }
.check-list { list-style: none; margin: 24px 0 32px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 15px; color: var(--ink-700);
}
.check-list i {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sun-500); color: var(--navy-900); font-size: 12px;
}
.welcome-art {
  position: relative; aspect-ratio: 1 / 1;
  max-width: 500px; margin: 0 auto; width: 100%;
}
.art-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .5s ease;
}
.art-card i {
  font-size: 32px; color: var(--navy-800);
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--sun-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.art-card span { font-weight: 700; color: var(--navy-900); font-size: 15px; }
.art-1 { top: 0; left: 0; animation: cardFloat 7s ease-in-out infinite; }
.art-2 { top: 0; right: 0; animation: cardFloat 7s ease-in-out -2s infinite; }
.art-3 { bottom: 0; left: 0; animation: cardFloat 7s ease-in-out -4s infinite; }
.art-4 { bottom: 0; right: 0; animation: cardFloat 7s ease-in-out -6s infinite; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.art-sun {
  position: absolute; inset: 25% 25% 25% 25%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun-500) 0%, var(--sun-300) 45%, transparent 70%);
  filter: blur(20px);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}
 */

 */
/* ===================== AMENITIES =====================
.amenities { background: var(--navy-900); color: var(--white); }
.amenities .section-title { color: var(--white); }
.amenities .eyebrow { color: var(--sun-500); }
.amenities .section-lead { color: rgba(255,255,255,0.75); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity {
  padding: 32px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: transform .4s ease, background .4s ease, border-color .4s ease;
  position: relative;
  overflow: hidden;
}
.amenity::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.2), transparent 70%);
  transition: transform .5s ease;
}
.amenity:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255, 199, 44, 0.4);
}
.amenity:hover::before { transform: scale(1.8); }
.amenity i {
  font-size: 26px; color: var(--navy-900);
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--sun-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.amenity h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 22px; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.amenity p { color: rgba(255,255,255,0.7); font-size: 14px; position: relative; z-index: 1; }
@media (max-width: 900px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenity-grid { grid-template-columns: 1fr; } }

/* ===================== ATTRACTIONS ===================== 
.attractions { background: var(--paper); }
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attraction-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.att-visual {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 54px;
  position: relative; overflow: hidden;
}
.att-visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 10px, transparent 10px 20px);
}
.att-visual i { position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); transition: transform .4s ease; }
.attraction-card:hover .att-visual i { transform: scale(1.15) rotate(-5deg); }
.att-v1 { background: linear-gradient(135deg, #ff6b6b, #f06595); }
.att-v2 { background: linear-gradient(135deg, #003c71, #0b4a86); }
.att-v3 { background: linear-gradient(135deg, #c92a2a, #e8590c); }
.att-v4 { background: linear-gradient(135deg, #2b8a3e, #51cf66); }
.att-v5 { background: linear-gradient(135deg, #845ef7, #5f3dc4); }
.att-v6 { background: linear-gradient(135deg, #ffc72c, #f08c00); }
.att-body { padding: 24px; }
.att-dist {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--navy-800);
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.att-body h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 22px; color: var(--navy-900);
  margin-bottom: 8px;
}
.att-body p { font-size: 14px; color: var(--ink-500); }
@media (max-width: 900px) { .attraction-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .attraction-grid { grid-template-columns: 1fr; } }
*/
/* ===================== DIRECTIONS ===================== 
.directions { background: var(--cream); }
.addr {
  font-style: normal;
  padding: 18px 22px;
  background: var(--white);
  border-left: 4px solid var(--sun-500);
  border-radius: 10px;
  margin: 20px 0 28px;
  font-weight: 500;
  color: var(--ink-700);
}
.dir-group {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.dir-group:last-of-type { border-bottom: none; margin-bottom: 24px; }
.dir-group h4 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 700;
  color: var(--navy-900); font-size: 18px; margin-bottom: 6px;
}
.dir-group h4 i { color: var(--sun-600); }
.dir-group p { color: var(--ink-500); font-size: 15px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  border: 4px solid var(--white);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
*/
/* ===================== GALLERY ===================== 
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-align: left;
  transition: transform .4s ease, box-shadow .4s ease;
  padding: 0;
}
.gal-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gal-art {
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.gal-item:hover .gal-art { transform: scale(1.08); }
.gal-caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  padding: 10px 16px;
  background: rgba(10, 34, 64, 0.8);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  max-width: calc(100% - 32px);
}
.gal-caption i { color: var(--sun-500); }

.gal-art-1 { background:
  radial-gradient(circle at 70% 30%, var(--sun-500) 0%, var(--sun-300) 15%, transparent 40%),
  linear-gradient(180deg, #ff9a56 0%, #ff6b6b 50%, #003c71 100%);
}
.gal-art-2 { background:
  radial-gradient(circle at 30% 70%, var(--sun-300), transparent 50%),
  linear-gradient(135deg, #ffedc4 0%, #ffc72c 60%, #f08c00 100%);
}
.gal-art-3 { background:
  repeating-linear-gradient(45deg, #0a2240 0 20px, #003c71 20px 40px);
}
.gal-art-3::before {
  content: ""; position: absolute; inset: 20% 15%;
  background: linear-gradient(180deg, #fdf8ed 0%, #fdf8ed 30%, #ffc72c 30%, #ffc72c 100%);
  border-radius: 12px;
}
.gal-art-4 { background:
  linear-gradient(135deg, #8b6914 0%, #c4941e 40%, #ffc72c 100%);
}
.gal-art-4::before {
  content: ""; position: absolute; left: 30%; top: 40%;
  width: 40%; height: 30%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
}
.gal-art-5 { background:
  linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.gal-art-5::before {
  content: ""; position: absolute; inset: 25% 20%;
  background:
    repeating-linear-gradient(90deg, transparent 0 15%, var(--sun-500) 15% 16%, transparent 16% 30%);
}
.gal-art-6 { background:
  linear-gradient(180deg, #e9e2cf 0%, #fdf8ed 60%, #003c71 100%);
}
.gal-art-6::before {
  content: ""; position: absolute; left: 20%; right: 20%; top: 30%; bottom: 30%;
  background: var(--navy-800);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
*/
/* Lightbox 
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 34, 64, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 40px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.show { display: flex; opacity: 1; }
.lightbox-art {
  width: min(800px, 90vw);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lightbox-caption {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: 15px; font-weight: 600;
  padding: 10px 20px; background: rgba(0,0,0,0.4); border-radius: 999px;
  backdrop-filter: blur(10px);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: var(--sun-500); color: var(--navy-900); transform: rotate(90deg); }
*/
/* ===================== CONTACT ===================== 
.contact { background: var(--paper); }
.contact-list { list-style: none; margin-top: 28px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.ci {
  flex: none;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-800);
  color: var(--sun-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-list strong {
  display: block; color: var(--navy-900);
  font-family: var(--serif); font-size: 18px; margin-bottom: 4px;
}
.contact-list a { color: var(--navy-800); font-weight: 600; }
.contact-list a:hover { color: var(--sun-600); }
.contact-list span { color: var(--ink-500); font-size: 14px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-card .reserve-success { grid-column: unset; }
*/
