body {
font-family: 'Lato', sans-serif;
            color: var(--text-primary);
            overflow-x: hidden;
            background: linear-gradient(rgba(74, 98, 116, 0.5), rgba(74, 98, 116, 0.5)), 
                        url('../images/hero.png') center/cover;
            background-attachment: fixed;
}

.header {
position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            background-color: transparent;
}

.header.scrolled {
background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
width: 48px;
            height: 48px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header.scrolled .logo-img {
filter: none;
}

.logo-title {
font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
}

.header.scrolled .logo-title {
color: var(--primary);
            text-shadow: none;
}

.logo-subtitle {
font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: var(--light);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .logo-subtitle {
color: var(--text-secondary);
            text-shadow: none;
}

.nav-item {
position: relative;
}

.nav-link {
font-size: 0.875rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            transition: opacity 0.2s;
            cursor: pointer;
}

.header.scrolled .nav-link {
color: var(--text-primary);
            text-shadow: none;
}

.dropdown {
display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 0.5rem;
            margin-top: 0;
            padding-top: 0.5rem;
            min-width: 220px;
            z-index: 1001;
}

.nav-item:hover .dropdown {
display: block;
}

.dropdown a {
display: block;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            text-shadow: none;
            transition: background-color 0.2s;
            font-size: 0.875rem;
}

.dropdown a:first-child {
border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown a:last-child {
border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown a:hover {
background-color: var(--light);
}

.book-btn {
padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            text-decoration: none;
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
}

.header.scrolled .book-btn {
background: rgba(74, 98, 116, 0.9);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 4px 16px rgba(74, 98, 116, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.book-btn:hover {
transform: scale(1.05);
            box-shadow: 
                0 6px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.header.scrolled .book-btn:hover {
background: rgba(74, 98, 116, 1);
            box-shadow: 
                0 6px 24px rgba(74, 98, 116, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.book-btn:active {
transform: scale(0.98);
}

.hamburger span {
width: 28px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .hamburger span {
background: var(--primary);
            box-shadow: none;
}

.hero {
min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
}

.hero-content {
max-width: 1152px;
            z-index: 10;
}

.hero-title {
font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
}

.hero-subtitle {
font-size: clamp(1.25rem, 2vw, 1.5rem);
            color: var(--light);
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
}

.hero-btn {
display: inline-block;
            padding: 1.25rem 3rem;
            font-size: 1.25rem;
            font-weight: 600;
            background: rgba(235, 234, 232, 0.9);
            color: var(--primary);
            text-decoration: none;
            border-radius: 1rem;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
}

.hero-btn::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                110deg,
                transparent 40%,
                rgba(255, 255, 255, 0.6) 50%,
                transparent 60%
            );
            background-size: 200% 100%;
            opacity: 0;
            transition: opacity 0.3s;
}

.hero-btn:hover::before {
animation: shimmer 1.5s;
            opacity: 1;
}

.hero-btn:hover {
background: rgba(255, 255, 255, 0.95);
            box-shadow: 
                0 0 40px rgba(235, 234, 232, 0.8),
                0 12px 48px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            transform: translateY(-4px);
}

.hero-btn:active {
transform: translateY(-2px);
}

.quick-links {
padding: 5rem 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            margin: 2rem 1.5rem;
            border-radius: 1.5rem;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
}

.quick-links::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(74, 98, 116, 0.05) 0%, transparent 50%);
            pointer-events: none;
}

.quick-links-container {
max-width: 1152px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 1;
}

.quick-link-card {
padding: 2rem;
            background: rgba(235, 234, 232, 0.5);
            border-radius: 1.25rem;
            text-decoration: none;
            color: var(--text-primary);
            box-shadow: 
                0 4px 20px rgba(31, 38, 135, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
}

.quick-link-card::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                110deg,
                transparent 40%,
                rgba(255, 255, 255, 0.4) 50%,
                transparent 60%
            );
            background-size: 200% 100%;
            opacity: 0;
            transition: opacity 0.3s;
}

.quick-link-card:hover::before {
animation: shimmer 1.5s ease-out;
}

.quick-link-card:hover {
background: rgba(74, 98, 116, 0.85);
            color: white;
            transform: translateY(-8px);
            box-shadow: 
                0 12px 40px rgba(74, 98, 116, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
}

.quick-link-icon {
width: 64px;
            height: 64px;
            margin-bottom: 1.5rem;
            opacity: 0.8;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.quick-link-icon img {
width: 100%;
            height: 100%;
            object-fit: contain;
}

.quick-link-card:hover .quick-link-icon {
opacity: 1;
            transform: translateY(-4px);
            filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.quick-link-title {
font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-desc {
line-height: 1.6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews {
padding: 5rem 1.5rem;
            background: linear-gradient(135deg, 
                rgba(205, 212, 205, 0.4) 0%, 
                rgba(173, 184, 185, 0.35) 50%,
                rgba(139, 160, 175, 0.4) 100%);
            margin: 2rem 1.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
}

.reviews::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 98, 116, 0.1) 0%, transparent 50%);
            pointer-events: none;
}

.reviews::after {
content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.5), 
                rgba(255, 255, 255, 0.1));
            border-radius: 1.5rem;
            opacity: 0.3;
            z-index: -1;
            filter: blur(20px);
}

.reviews-container {
max-width: 1024px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
}

/* Subtle shimmer effect */
        @keyframes shimmer {
0% {
                background-position: -200% center;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                background-position: 200% center;
                opacity: 0;
            }
}

.review-card::after {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                110deg,
                transparent 40%,
                rgba(255, 255, 255, 0.5) 50%,
                transparent 60%
            );
            background-size: 200% 100%;
            border-radius: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
}

.review-card:hover::after {
animation: shimmer 2s infinite;
            opacity: 0.3;
}

.reviews-title {
font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1.5rem;
}

.reviews-title::after {
content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
            border-radius: 1.5px;
}

.carousel-container {
position: relative;
}

.review-card {
background: rgba(255, 255, 255, 0.7);
            padding: 4rem 3rem 3rem;
            border-radius: 1.5rem;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
background: rgba(255, 255, 255, 0.8);
            box-shadow: 
                0 12px 48px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transform: translateY(-4px);
}

.review-card::before {
content: '"';
            position: absolute;
            top: -0.5rem;
            left: 2rem;
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            line-height: 1;
            background: linear-gradient(135deg, 
                rgba(74, 98, 116, 0.15) 0%, 
                rgba(139, 160, 175, 0.1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.8;
}

.stars {
display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.875rem;
            color: #FFD700;
            filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.review-text {
font-size: clamp(1.125rem, 2vw, 1.375rem);
            font-style: italic;
            color: rgba(44, 62, 80, 0.85);
            line-height: 1.9;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 400;
            position: relative;
}

.review-author {
font-size: 1.125rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            letter-spacing: 0.03em;
            position: relative;
            display: inline-block;
            margin-left: 50%;
            transform: translateX(-50%);
}

.review-author::before {
content: '';
            position: absolute;
            left: -2.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, rgba(74, 98, 116, 0.4));
            box-shadow: 0 1px 3px rgba(74, 98, 116, 0.2);
}

.review-author::after {
content: '';
            position: absolute;
            right: -2.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 1.5px;
            background: linear-gradient(90deg, rgba(74, 98, 116, 0.4), transparent);
            box-shadow: 0 1px 3px rgba(74, 98, 116, 0.2);
}

.carousel-btn {
position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.6);
            color: var(--primary);
            border: 1px solid rgba(255, 255, 255, 0.5);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 4px 20px rgba(74, 98, 116, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
transform: translateY(-50%) scale(1.08);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 
                0 8px 30px rgba(74, 98, 116, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.carousel-btn:active {
transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
left: -1rem;
}

.carousel-btn.next {
right: -1rem;
}

.carousel-dots {
display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
}

.dot {
width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(74, 98, 116, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
}

.dot:hover {
background: rgba(255, 255, 255, 0.7);
            border-color: rgba(74, 98, 116, 0.4);
            transform: scale(1.2);
}

.dot.active {
background: rgba(74, 98, 116, 0.8);
            width: 28px;
            border-radius: 5px;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 2px 8px rgba(74, 98, 116, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.map-section {
padding: 5rem 1.5rem;
            background: rgba(235, 234, 232, 0.5);
            margin: 2rem 1.5rem 2rem 1.5rem;
            border-radius: 1.5rem;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
}

.map-section::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(74, 98, 116, 0.05) 0%, transparent 50%);
            pointer-events: none;
}

.map-container {
max-width: 1152px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
}

.map-title {
font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1.5rem;
}

.map-title::after {
content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
            border-radius: 1.5px;
}

.map-grid {
display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
}

.map-embed {
border-radius: 1.25rem;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.4);
}

.map-embed iframe {
width: 100%;
            height: 400px;
            border: 0;
}

.contact-info {
padding: 2rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 1.25rem;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover {
background: rgba(255, 255, 255, 0.8);
            box-shadow: 
                0 12px 48px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transform: translateY(-4px);
}

.contact-title {
font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
}

.contact-item {
display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
}

.contact-icon {
font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
}

.contact-label {
font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
}

.contact-link {
color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
}

.contact-link:hover {
color: var(--primary);
            text-shadow: 0 0 8px rgba(74, 98, 116, 0.2);
}

.office-hours {
margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(74, 98, 116, 0.15);
}

.hours-title {
font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
}

.hours-list {
font-size: 0.875rem;
            color: var(--text-secondary);
}

.hours-item {
display: flex;
            justify-content: space-between;
            margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {

  .map-grid {
  grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .review-card::before {
  font-size: 5rem;
                top: 0;
                left: 1rem;
  }

  .review-card {
  padding: 3rem 1.5rem 2rem;
  }

  .review-author::before,
            .review-author::after {
  display: none;
  }

}
