/* 
* Yasodha Residency - Main Stylesheet
* A professional website for Yasodha Ladies PG
*/

/* === BASE STYLES === */
:root {
    --primary-color: #F4B5C1; /* Light pink */
    --secondary-color: #C0DEDC; /* Duck egg */
    --accent-color: #E4A985;  /* Warm accent */
    --text-color: #333333;    /* Dark gray for readability */
    --light-text-color: #FFFFFF;
    --bg-color: #FFFFFF;      /* White */
    --bg-light: #FFF0F5;      /* Light blush */
    --bg-dark: #F4B5C1;       /* Light pink for dark sections */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --container-width: 1140px;
    --border-radius: 15px;    /* Slightly less rounded */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s ease;
    --primary-color-rgb-val: 244, 181, 193; /* RGB for #F4B5C1 */
    --header-height: 90px; /* Header height including padding */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75em;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* === UTILITY CLASSES === */
.section-padding {
    padding: 60px 0;
}

/* Ensure sections align properly when scrolled to */
section[id] {
    scroll-margin-top: var(--header-height); /* Just the header height, no extra buffer */
}

/* Home section doesn't need offset */
#home {
    scroll-margin-top: 0;
}

.bg-light {
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(192, 222, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 181, 193, 0.1) 0%, transparent 50%);
}

.bg-dark {
    background: linear-gradient(135deg, rgba(244, 181, 193, 0.95) 0%, rgba(192, 222, 220, 0.9) 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.bg-dark::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p {
    color: var(--text-color);
}

.bg-dark a {
    color: var(--primary-color);
}
.bg-dark a:hover {
    color: var(--accent-color);
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #3CC8A8; /* Darker shade of secondary */
    color: #fff;
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

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

.bg-dark .section-title::after {
    background-color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3em; /* More space below subtitle */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.bg-dark .section-subtitle {
    color: rgba(51, 51, 51, 0.8);
}

/* === HEADER & NAVIGATION === */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.1); /* Very transparent for glassy effect */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 15px 0; /* Vertical padding for the header bar itself */
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(244, 181, 193, 0.25), /* Pink glow */
        0 8px 32px rgba(192, 222, 220, 0.15), /* Duck egg shadow */
        0 2px 8px rgba(0, 0, 0, 0.1), /* Subtle dark shadow for depth */
        inset 0 1px 0 rgba(255, 255, 255, 0.3); /* Inner light edge */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    overflow: hidden; /* Ensure content respects the rounded corners */
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform, box-shadow; /* Optimize for animations */
}

/* Override .container behavior specifically for the header's main nav bar */
#main-header > .container {
    max-width: none; /* Allow it to be full width */
    margin-left: 0;  /* Remove auto margin for centering */
    margin-right: 0; /* Remove auto margin for centering */
    padding-left: 30px;  /* New edge padding for header content alignment */
    padding-right: 30px; /* New edge padding for header content alignment */
    /* display: flex and align-items: center are on #main-header nav which also targets this element */
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98); /* More opaque white on scroll */
    padding: 10px 0;
    box-shadow: 
        0 6px 30px rgba(244, 181, 193, 0.35), /* Stronger pink glow */
        0 12px 40px rgba(192, 222, 220, 0.25), /* Deeper duck egg shadow */
        0 3px 12px rgba(0, 0, 0, 0.15), /* More pronounced depth shadow */
        0 1px 0 rgba(255, 255, 255, 0.9) inset, /* Bright inner edge */
        0 20px 60px -20px rgba(228, 169, 133, 0.5); /* Warm undertone glow */
    border-bottom: none; /* Remove the border when scrolled */
    transform: translateY(0); /* Ensure smooth positioning */
}

.logo a {
    color: var(--text-color) !important;
}

#main-header.scrolled .nav-links a {
    color: var(--text-color);
}
#main-header.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

/* Ensure hamburger is dark on scrolled (light) background */
#main-header.scrolled .nav-toggle .hamburger span {
    background-color: var(--text-color);
}
/* Hamburger spans are white on glassy header */
#main-header .nav-toggle .hamburger span {
    background-color: #FFFFFF; 
}


#main-header nav {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
}

.logo a {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap; /* Ensure logo text stays on one line */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* New grouping for right-aligned header content */
.header-right-content {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center; /* Align LIs vertically */
    list-style: none; 
    padding: 0; 
    margin: 0; 
    margin-right: 20px; /* Add some space between links and CTA button */
}

.nav-links li {
    margin: 0 8px; /* Further reduced horizontal margins */
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 5px;
    transition: color var(--transition-speed), transform var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

/* Ensure the active link's underline is accent color by default */
.nav-links a.active::after {
    background-color: var(--accent-color);
    width: 100%; /* Ensure active link underline is always full width */
}

#main-header.scrolled .nav-links a::after {
    background-color: var(--primary-color); /* Default underline for scrolled links */
}

/* Ensure active link underline remains accent color even when scrolled */
#main-header.scrolled .nav-links a.active::after {
    background-color: var(--accent-color);
}

.nav-links a:hover::after,
.nav-links a.active::after { /* This rule can now just manage width for active, hover handles its own color */
    width: 100%;
}

/* Add this new rule for the hover underline color */
.nav-links a:hover::after {
    background-color: var(--accent-color);
}

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

/* Style for the active link text color */
.nav-links a.active {
    color: var(--accent-color);
}

/* Ensure active link text remains accent color even when scrolled */
#main-header.scrolled .nav-links a.active {
    color: var(--accent-color);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 10px 15px; /* Slightly reduced padding */
    font-size: 0.9rem;
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav links in mobile */
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text-color);
    position: relative;
    transition: transform var(--transition-speed);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--light-text-color);
    left: 0;
    transition: transform var(--transition-speed), top var(--transition-speed), bottom var(--transition-speed);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Nav Toggle Active State (for mobile menu) */
.nav-toggle.active .hamburger {
    transform: rotate(45deg);
}
.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(90deg);
}
.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
    opacity: 0; /* Hides the bottom bar to form X */
}


/* === HERO SECTION === */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pg-photos/WhatsApp Image 2025-08-04 at 09.48.10.jpeg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(3px); 
    transform: scale(1.05); /* Slightly scale up to avoid blur edges */
    z-index: 0; 
    overflow: hidden; 
}

.hero-background video { /* This rule for video can be removed or kept if you might switch back */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* Cover the area, might crop a bit */
}

/* Example for video background:
.hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 181, 193, 0.3), rgba(192, 222, 220, 0.3)); /* Pink to duck egg overlay */
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 0.5em 0;
    color: var(--light-text-color);
    line-height: 1.2;
    text-align: center;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 10px rgba(244, 181, 193, 0.8),
        0 0 20px rgba(244, 181, 193, 0.6),
        0 0 30px rgba(244, 181, 193, 0.4),
        0 0 40px rgba(244, 181, 193, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(244, 181, 193, 0.8),
            0 0 20px rgba(244, 181, 193, 0.6),
            0 0 30px rgba(244, 181, 193, 0.4),
            0 0 40px rgba(244, 181, 193, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(244, 181, 193, 1),
            0 0 30px rgba(244, 181, 193, 0.8),
            0 0 40px rgba(244, 181, 193, 0.6),
            0 0 50px rgba(244, 181, 193, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.hero-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 5px rgba(244, 181, 193, 0.6),
        0 0 10px rgba(244, 181, 193, 0.4),
        1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0 0 2em 0;
    line-height: 1.6;
    text-align: center;
}

.hero-cta {
    font-size: 1.1rem;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--light-text-color);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-10px); 
    }
    60% {
        transform: translateY(-5px); 
    }
}

/* === ABOUT / THE EXPERIENCE SECTION === */
.about-section {
    padding: 80px 0 0 0 !important; /* Standard top padding, no bottom padding */
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 0.75em;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-item {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(244, 181, 193, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(192, 222, 220, 0.3);
}

.experience-item::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(0deg, var(--secondary-color), var(--bg-color), var(--secondary-color)); /* Coral, Blush - Horizontal wave */
    background-size: 200% 100%; /* Adjusted for horizontal wave effect */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    animation: gradientFlow 5s linear infinite; /* Slightly adjusted speed */
}

.experience-item:hover::before {
    opacity: 1;
}

.experience-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(244, 181, 193, 0.3);
}

.experience-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

/* New styles for the content area within experience-item */
.experience-item-content {
    padding: 20px; /* Overall padding for the content area */
    /* background: linear-gradient(135deg, #E6E6FA, #D8BFD8); Moved to hover state */
    background: transparent; /* Default transparent background */
    transition: background 0.4s ease-in-out; /* For smooth gradient appearance */
    border-radius: 0 0 var(--border-radius) var(--border-radius); /* Match bottom corners of parent if image is flush top */
    position: relative; /* Ensure stacking context */
    z-index: 1;         /* Ensure it's above parent's ::before pseudo-element */
}

.experience-item:hover .experience-item-content {
    background: linear-gradient(135deg, #E6E6FA, #D8BFD8); /* Lavender gradient on hover */
}

.experience-item h3 {
    /* padding: 20px 20px 10px 20px; Adjusted */
    padding: 0 0 10px 0; /* Remove side padding, adjust bottom padding */
    font-size: 1.4rem;
    color: var(--primary-color); /* Or change to a color that contrasts well with lavender */
}

.experience-item p {
    /* padding: 0 20px 20px 20px; Adjusted */
    padding: 0 0 0 0; /* Remove side padding */
    font-size: 0.95rem;
    color: #555; /* Or change to a color that contrasts well with lavender */
}

/* New styles for Experience Details Grid */
.experience-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
}

.experience-detail-item {
    /* background-color: var(--bg-light); Replaced for glass effect */
    background-color: rgba(192, 222, 220, 0.3); /* Glassy duck egg */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    position: relative; /* Added for pseudo-element positioning */
    overflow: hidden; /* Added for pseudo-element clipping */
}

.experience-detail-item::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(0deg, var(--secondary-color), var(--bg-color), var(--secondary-color)); /* Coral, Blush - Horizontal wave */
    background-size: 200% 100%; /* Adjusted for horizontal wave effect */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    animation: gradientFlow 5s linear infinite; /* Slightly adjusted speed */
}

.experience-detail-item:hover::before {
    opacity: 1;
}

.experience-detail-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.experience-detail-item h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.experience-detail-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
/* End of New styles for Experience Details Grid */

/* === STATISTICS SECTION === */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0 40px 0 !important;
    margin-top: 20px !important;
    background: transparent;
    position: relative;
}

/* Optional: Add a subtle separator before statistics */
.stats-container::before {
    display: none; /* Disabled to reduce visual spacing */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    display: inline-block;
    margin-left: -5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === AMENITIES SECTION === */
.amenities-section {
    position: relative;
    overflow: hidden;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 2em;
    margin-bottom: 0; /* Remove bottom margin */
}

.amenity-card {
    background-color: rgba(192, 222, 220, 0.15); /* Light duck egg green tint like experience section */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(192, 222, 220, 0.3); /* Green border instead of pink */
    opacity: 1 !important; /* Ensure cards are always visible */
    visibility: visible !important;
}


.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(192, 222, 220, 0.25); /* Green shadow */
    border-color: rgba(192, 222, 220, 0.6); /* Stronger green border on hover */
    background-color: rgba(192, 222, 220, 0.25); /* Slightly more green on hover */
}

.amenity-card:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFFFFF;
}

.amenity-card i {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(192, 222, 220, 0.25), rgba(192, 222, 220, 0.4)); /* Green gradient */
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.amenity-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.amenity-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 280px;
}

/* === GALLERY SECTION === */
.gallery-section .swiper-container {
    width: 100%;
    height: 500px; /* Adjust as needed */
    border-radius: var(--border-radius);
    overflow: hidden; /* Ensures rounded corners are applied to slides */
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    position: absolute;
}

.lightbox-nav.prev::after {
    transform: rotate(-135deg);
    right: 16px;
}

.lightbox-nav.next::after {
    transform: rotate(45deg);
    left: 16px;
}

/* Image counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* For caption */
}

.gallery-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.gallery-section .swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.5), 
                0 0 50px rgba(255, 182, 193, 0.3),
                0 0 70px rgba(255, 182, 193, 0.2);
    filter: brightness(1.05);
}

/* Gallery loading state */
.gallery-loading {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gallery-loader {
    text-align: center;
    color: var(--primary-color);
}

.gallery-loader i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gallery-loader p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Gallery instruction text */
.gallery-instruction {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.8;
}

.gallery-instruction i {
    margin-right: 5px;
    color: var(--primary-color);
}

.swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-text-color);
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
}


/* Custom Swiper Navigation Arrows */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 44px; /* Fixed size for better appearance */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}
.gallery-section .swiper-button-next:hover,
.gallery-section .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(244, 181, 193, 0.4);
}
.gallery-section .swiper-button-next::after,
.gallery-section .swiper-button-prev::after {
    font-size: 1.2rem; /* Adjust icon size */
    font-weight: 700;
}

/* Position adjustments for gallery arrows */
.gallery-button-next,
.gallery-section .swiper-button-next {
    right: 20px !important;
}

.gallery-button-prev,
.gallery-section .swiper-button-prev {
    left: 20px !important;
}

/* Custom Swiper Pagination Dots */
.gallery-section .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.7;
    width: 10px;
    height: 10px;
    transition: background-color var(--transition-speed), opacity var(--transition-speed);
}

.gallery-section .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
}

/* === LOCATION SECTION === */
.location-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 40px;
    align-items: center;
    margin-top: 2em;
}

/* On larger screens, make it two columns */
@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 2fr 1fr; /* Map takes more space */
    }
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden; /* To ensure iframe respects border-radius */
    box-shadow: var(--box-shadow);
    height: 450px; /* Ensure map has a good height */
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.location-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.location-info p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.location-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.location-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.location-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px; /* Align icons */
    text-align: center;
}
.location-info address {
    font-style: normal;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    line-height: 1.6;
}
.location-info address strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}


/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: #FFFFFF;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(244, 181, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(192, 222, 220, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    overflow: visible; /* Ensure navigation buttons can extend outside */
}

.testimonials-section .section-title {
    text-align: center !important;
    font-size: 2.8rem !important;
    margin: 0 auto 1.5rem auto !important;
    color: var(--text-color) !important;
    font-weight: 700 !important;
    position: relative !important;
    padding-bottom: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    line-height: 1.2 !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonials-section .section-subtitle {
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto 3rem auto !important;
    font-size: 1.1rem !important;
    color: #666 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    position: relative !important;
}

.testimonials-section .swiper-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 50px 60px 50px; /* Add horizontal padding for navigation buttons */
    position: relative;
    overflow: hidden; /* Changed from visible to hidden to contain slides */
}

/* Fix initial positioning */
.testimonials-swiper {
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: grab;
}

.testimonials-swiper:active {
    cursor: grabbing;
}

.testimonials-swiper.swiper-initialized {
    opacity: 1;
}

.testimonials-section .swiper-wrapper {
    align-items: stretch;
    display: flex;
    transition-timing-function: ease-out;
}

.testimonials-section .swiper-slide {
    width: auto; /* Let Swiper handle width */
    height: auto;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.testimonials-section .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonials-section .swiper-slide-prev,
.testimonials-section .swiper-slide-next {
    opacity: 1;
    transform: scale(1);
}


.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    min-height: 320px;
    max-width: 350px;
    width: 100%;
    height: 100%;
    text-align: left;
    position: relative;
    border: 1px solid rgba(244, 181, 193, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    box-shadow: 
        0 20px 40px rgba(244, 181, 193, 0.2),
        0 15px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.3;
    transform: rotate(15deg) scale(1.1);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin: 20px 0 30px;
    color: var(--text-color);
    line-height: 1.7;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 181, 193, 0.2);
}

.testimonial-author {
    text-align: left;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.testimonial-author .testimonial-role {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Custom Swiper Pagination Dots for Testimonials */
.testimonials-section .swiper-pagination {
    bottom: 0 !important;
    position: relative;
    margin-top: 30px;
}

.testimonials-section .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.4;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 4px !important;
}

.testimonials-section .swiper-pagination-bullet:hover {
    opacity: 0.7;
    transform: scale(1.2);
}

.testimonials-section .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 15px;
    transform: scale(1);
}

/* Add navigation arrows for testimonials */
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-section .swiper-button-prev {
    left: -60px;
}

.testimonials-section .swiper-button-next {
    right: -60px;
}

.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-section .swiper-button-next::after,
.testimonials-section .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

/* Responsive testimonials navigation */
@media (max-width: 1200px) {
    .testimonials-section .swiper-button-prev {
        left: -40px;
    }
    
    .testimonials-section .swiper-button-next {
        right: -40px;
    }
}

@media (max-width: 992px) {
    .testimonials-section .swiper-button-prev {
        left: 10px;
    }
    
    .testimonials-section .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-section .swiper-button-next,
    .testimonials-section .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-section .swiper-button-prev {
        left: 5px;
    }
    
    .testimonials-section .swiper-button-next {
        right: 5px;
    }
    
    .testimonials-section .swiper-button-next::after,
    .testimonials-section .swiper-button-prev::after {
        font-size: 0.8rem;
    }
}


/* === CONTACT & BOOKING INQUIRY SECTION === */

/* FORCE ALL LABELS IN CONTACT FORM TO BE BLACK */
#contact label,
#contact .form-group label,
#contact .contact-form label,
.contact-section label,
.contact-section .form-group label,
.contact-section .contact-form label,
.contact-form-container label,
.contact-form-container .form-group label {
    color: #000000 !important;
    opacity: 1 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
    margin-top: 2em;
}

/* On larger screens, make it two columns */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr; /* Form takes more space */
    }
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(244, 181, 193, 0.3);
    border: 2px solid rgba(244, 181, 193, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(244, 181, 193, 0.3), rgba(192, 222, 220, 0.3), rgba(244, 181, 193, 0.3));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 1; /* Always visible, not just on hover */
    transition: opacity 0.3s ease;
}

.contact-form-container:hover::before {
    opacity: 1;
}

.bg-dark .contact-form-container {
    background-color: rgba(255, 255, 255, 0.98);
}


.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333 !important; /* Force dark text color */
}
.bg-dark .contact-form label {
    color: #333333 !important; /* Force dark text color in bg-dark sections */
}

/* Specific fix for form labels in contact section */
#contact .contact-form label {
    color: #333333 !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
    background-color: #fff; /* Explicit background for inputs */
    color: var(--text-color); /* Explicit text color for inputs */
    resize: vertical; /* Allow vertical resize only */
    min-height: 44px; /* Same as input fields */
    height: 44px; /* Default to same height as other inputs */
}
.bg-dark .contact-form input[type="text"],
.bg-dark .contact-form input[type="email"],
.bg-dark .contact-form input[type="tel"],
.bg-dark .contact-form input[type="date"],
.bg-dark .contact-form textarea {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(244, 181, 193, 0.4);
    color: var(--text-color);
}


.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="date"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb-val), 0.25);
}

/* Date input specific styles - FRESH START */
.contact-form input[type="date"] {
    position: relative;
    cursor: pointer;
    color: #333333 !important;
    background-color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Ensure date text is always dark and readable */
.contact-form input[type="date"]::-webkit-datetime-edit,
.contact-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.contact-form input[type="date"]::-webkit-datetime-edit-text,
.contact-form input[type="date"]::-webkit-datetime-edit-month-field,
.contact-form input[type="date"]::-webkit-datetime-edit-day-field,
.contact-form input[type="date"]::-webkit-datetime-edit-year-field {
    color: #333333 !important;
}

/* Style the calendar icon */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
    filter: invert(0.8); /* Makes it darker */
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Firefox date input */
.contact-form input[type="date"]::-moz-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #FFFFFF;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(244, 181, 193, 0.3);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 181, 193, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

#form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

#form-status:not(:empty) {
    display: block;
}

#form-status.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

#form-status.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

#form-status.info {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* Contact Details Styling */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Mobile specific gap reduction */
@media (max-width: 767px) {
    .contact-details {
        gap: 15px;
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(244, 181, 193, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 181, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(244, 181, 193, 0.3);
    border-color: var(--primary-color);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h3 i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-item {
    font-size: 1rem;
    line-height: 1.8;
}

.phone-link {
    display: inline-block;
    color: #000000 !important;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(244, 181, 193, 0.4);
    text-align: center;
}

.phone-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(244, 181, 193, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #000000 !important;
}

address {
    font-style: normal;
    color: var(--text-color);
    line-height: 1.8;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 181, 193, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: var(--text-color);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}


/* === SUBSCRIBE SECTION === */
.subscribe-section .section-title {
    margin-bottom: 0.5em; /* Less margin for a compact section */
}

.subscribe-section .section-subtitle {
    margin-bottom: 2em;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscription-form .form-group-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.subscription-form input[type="email"] {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
}

.subscription-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb-val), 0.25);
}

.subscription-form button[type="submit"] {
    padding: 12px 25px;
    white-space: nowrap; /* Prevent button text from wrapping */
}

#subscription-form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}
#subscription-form-status.success {
    color: green;
}
#subscription-form-status.error {
    color: red;
}


/* === FOOTER === */
#main-footer {
    background-color: var(--text-color); /* Dark footer for contrast */
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-col a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-col p i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Footer contact icons and social icons hover */
.footer-col p i, 
.social-links a i {
    transition: transform var(--transition-speed), color var(--transition-speed);
}

.footer-col p:hover i, /* For phone, email, address icons */
.social-links a:hover i { /* For social media icons */
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Ensure specific styling for social link icons if needed */
.social-links li {
    display: inline-block;
    margin-right: 10px;
}
.social-links a {
    color: rgba(255, 255, 255, 0.7); /* Default social icon color */
    font-size: 1.2rem;
}
.social-links a:hover {
    color: var(--accent-color); /* Social icon hover - link color changes, icon also gets accent */
}

/* New styles for the header CTA button */
.btn-cta-header {
    padding: 12px 30px;
    color: #000000;
    border: 2px solid var(--primary-color); 
    background-color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px; 
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-cta-header:hover {
    transform: scale(1.05);
    background-color: #E89FAD; /* Darker pink on hover */
    border-color: #E89FAD;
    color: #FFFFFF !important; /* White text on hover */
}

.btn-cta-header:active,
.btn-cta-header:focus {
    color: #FFFFFF !important; /* White text when clicked/focused */
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 181, 193, 0.3);
}

@keyframes animatedGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* New keyframes for the flowing perimeter glow */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Advanced Loader Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease;
}

.loader-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

body.loaded .loader {
    opacity: 0;
    visibility: hidden;
}

/* Reveal on scroll animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Duplicate statistics section removed - see line 756 for main definition */

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

/* Enhanced form styles */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333 !important; /* Force dark text */
    position: static;
    transform: none;
    transition: color 0.3s ease;
}

.form-group.focused label {
    color: var(--primary-color);
}

/* Card 3D tilt effect */
.amenity-card,
.experience-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Smooth page transitions */
main > section {
    position: relative;
}

main > section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-color) 100%);
    opacity: 0.05;
    pointer-events: none;
}

/* Enhanced hover states */
.amenity-card:hover,
.experience-item:hover,
.contact-info-card:hover {
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

/* Ripple effect styles */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Reveal animation for scroll effects */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Character counter for forms */
.char-counter {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

/* Smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}


/* NUCLEAR SPACING FIX - OVERRIDE ALL */
#about.about-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Fix the subtitle's huge margin */
#about .section-subtitle {
    margin-bottom: 30px !important; /* Reduce from 3em */
}

#about .experience-details-grid {
    margin-bottom: 20px !important; /* Minimal space before image cards */
    margin-top: 0 !important;
    gap: 20px !important; /* Reduce grid gap */
}

#about .experience-grid {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    gap: 20px !important; /* Reduce grid gap */
}

/* Remove transform animations that create visual space */
#about .experience-item,
#about .experience-detail-item {
    transform: none !important;
    opacity: 1 !important;
}

/* Reduce card padding */
#about .experience-detail-item {
    padding: 20px !important;
}

#about .stats-container {
    margin-top: 30px !important;
    padding-top: 0 !important;
}

/* Force no spacing after about section */
#about + section {
    margin-top: 0 !important;
}
