/* ================================================= */
/* --- Global Styles & Variables --- */
/* ================================================= */
:root {
    --primary-color: #1A2A4D; /* Deep Navy Blue */
    --accent-color: #D4A056;  /* Gold/Ochre */
    --light-gray: #f4f4f7;
    --dark-gray: #333333;
    --white: #ffffff;
 	--font-heading: 'Figtree', sans-serif;
  	--font-body: 'Figtree', sans-serif;
}

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

html {
    overflow-y: scroll; /* Prevents layout shift */
}

body {
    font-family: var(--font-body);
    font-weight: 400; /* Regular */
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* --- Bullet List Formatting Fix --- */
ul, ol {
  margin-left: 2rem;
  padding-left: 1rem;
  list-style-type: disc;
}

li {
  margin-bottom: 0.5rem;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.8rem; letter-spacing: 1px; }
h2 {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

p { margin-bottom: 1rem; }
a { color: var(--accent-color); text-decoration: none; }
.text-center { text-align: center; }


/* ================================================= */
/* --- Header & Navigation --- */
/* ================================================= */
header {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    left: 0; 
    right: 0;
    z-index: 100;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

header.scrolled:not(.header-hidden) {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
	height: 50px;
    color: var(--primary-color);
}

.nav-links { display: flex; align-items: center; }
.nav-links a { color: var(--primary-color); padding: 5px 14px; margin: 0px; font-weight: 700; position: relative; }
.nav-links a.active::after, .nav-links a:hover::after { content: ''; position: absolute; bottom: -5px; left: 15px; right: 15px; height: 2px; background-color: var(--accent-color); }

.mobile-menu-button { display: none; font-size: 2rem; background: none; border: none; color: var(--primary-color); cursor: pointer; }


/* ================================================= */
/* --- Buttons --- */
/* ================================================= */
.btn { display: inline-block; padding: 12px 28px; border-radius: 5px; font-weight: 700; font-family: var(--font-body); transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background-color: var(--accent-color); color: var(--white); }
.btn-secondary { background-color: transparent; color: var(--accent-color); border: 2px solid var(--accent-color); }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}


/* ================================================= */
/* --- Page Sections --- */
/* ================================================= */
.hero { height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); position: relative; background-size: cover; background-position: center center; background-repeat: no-repeat; }
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.hero h1 { color: var(--white); }
.hero p { font-size: 1.2rem; }

.page-header {
    padding: 4rem 0;
    position: relative; 
    overflow: hidden;   
}

.page-header-gradient {
    background-color: #f0f2f5; 
}
.page-header-gradient::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(212, 160, 86, 0.15), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(26, 42, 77, 0.15), transparent 40%);
    background-repeat: no-repeat;
}
.page-header-gradient::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: repeating-radial-gradient(circle at 25% 90%, rgba(26, 42, 77, 0.04), rgba(26, 42, 77, 0.04) 1px, transparent 1px, transparent 20px),
                      repeating-radial-gradient(circle at 75% 10%, rgba(26, 42, 77, 0.04), rgba(26, 42, 77, 0.04) 1px, transparent 1px, transparent 20px);
    mask-image: radial-gradient(circle at center, transparent 0%, black 100%);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 100%);
}
.page-header-gradient .container {
    position: relative;
    z-index: 3;
}


section { padding: 4rem 0; }
.bg-light-gray { background-color: var(--light-gray); }

.cta-split { background: var(--light-gray); }
.cta-split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.cta-card { background: var(--white); padding: 2rem; text-align: center; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.cta-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }


.testimonial-snippet { background: var(--light-gray); color: var(--dark-gray); }
.testimonial-snippet .quote { font-size: 1.8rem; font-style: italic; font-family: var(--font-heading); color: var(--primary-color); }
.testimonial-snippet .attribution { font-size: 1.1rem; font-weight: 700; margin-top: 1rem; opacity: 0.8; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > .grid-item { direction: ltr; }
.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.content-image:hover {
    transform: scale(1.05);
}

.grid-item-text {
    background-color: #EBF0F6;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.grid-item-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.service-icon {
    font-size: 2rem;
    color: var(--accent-color);
}
.service-title-wrapper h3 {
    margin-bottom: 0;
}


.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; text-align: center; }
.feature-icon { width: 80px; height: 80px; transition: transform 0.3s ease; }
.feature-icon:hover { transform: scale(1.1); }
.feature-icon-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.styled-list {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    text-align: left;
}
.styled-list li { font-size: 1.1rem; padding: 1rem; border-bottom: 1px solid #e0e0e0; }
.styled-list li:before { content: '✔'; color: var(--accent-color); font-weight: bold; margin-right: 1rem; }
.styled-list li:last-child { border-bottom: none; }

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.partner-item { background-color: var(--white); padding: 1.5rem; border-radius: 5px; border: 1px solid #e0e0e0; transition: all 0.3s ease; }
.partner-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }


.case-study {
    background: #EBF0F6;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.case-study h3 { color: var(--accent-color); }


.testimonial-block { text-align: center; padding: 2rem; }
.testimonial-block-full { background-color: var(--white); padding: 2rem; margin-top: 2rem; border-radius: 8px; border: 1px solid #eee; }
.testimonial-block-full h3 { color: var(--accent-color); margin-bottom: 1.5rem; }
.testimonial-content { display: flex; align-items: center; gap: 2rem; }
.testimonial-img { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem auto; }
.testimonial-img-large { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.testimonial-block .quote { font-size: 1.4rem; font-style: italic; }
.testimonial-block-full .quote { font-size: 1.2rem; font-style: italic; margin: 0; }
.testimonial-block-full .attribution { margin-top: 1rem; font-weight: 700; }

.cta-banner { background-color: var(--primary-color); color: var(--white); }
.cta-banner h2 { color: var(--white); }
.cta-banner.cta-banner-light { background-color: var(--white); color: var(--dark-gray); } 
.cta-banner.cta-banner-light h2 { color: var(--primary-color); }


/* --- Gallery Styles --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; transition: transform 0.3s ease; display: block; }

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

.amenities-list {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    text-align: left;
}
.amenities-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}
.amenities-list li::before {
    content: '✔';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}


/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; }
.location-image { width: 100%; height: auto; border-radius: 5px; margin-top: 1rem; transition: transform 0.3s ease; }
.location-image:hover { transform: scale(1.05); }
.contact-info-block { margin-bottom: 2rem; }

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
}


/* ================================================= */
/* --- Footer --- */
/* ================================================= */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 3rem;
	
}
footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: start;
}
footer .logo { color: var(--white); height: 38px; margin-top: -5px }
footer h4 { color: var(--white); margin-bottom: 0.5rem; border-bottom: 1px solid var(--accent-color); padding-bottom: 0.5rem; display: inline-block; }
footer a { color: #ccc; display: block; margin-bottom: 0.5rem; transition: color 0.3s; }
footer a:hover { color: var(--white); }
footer a:hover .footer-label { color: var(--white); }

footer .footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}
footer .footer-col p a {
    display: inline;
    margin-left: 0rem;
    margin-bottom: 0;
}
.footer-links-grid {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 1rem;
}

.footer-bottom { text-align: center; padding: 1rem 0; margin-top: 2rem; border-top: 1px solid #334a75; font-size: 0.9rem; }
.footer-bottom p {
    margin: 0.25rem 0;
}


/* ================================================= */
/* --- Premium Animations --- */
/* ================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================= */
/* --- Responsive Design (ALL AT THE BOTTOM) --- */
/* ================================================= */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    h2::after {
        display: none;
    }
    
    .nav-links { display: none; flex-direction: column; width: 100%; background: var(--white); position: absolute; top: 65px; left: 0; padding: 1rem 0; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-links a { text-align: center; padding: 1rem; width: 100%; }
    .nav-links .btn-secondary { margin: 1rem 20px 0 20px; }
    
    .mobile-menu-button { display: block; }

    .cta-split .container,
    .contact-grid,
    .content-grid, 
    .content-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
    .content-grid > .grid-item { direction: ltr; }
    .feature-list { grid-template-columns: 1fr; }
    .amenities-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
    .testimonial-content { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }

    .partner-grid {
        grid-template-columns: 1fr;
    }
    .footer-links-grid {
        columns: 1;
    }
}

@media (max-width: 1065px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        position: absolute;
        top: 65px;
        left: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        text-align: center;
        padding: 1rem;
  		width: auto; /* or remove this line entirely */
  		white-space: nowrap; /* prevents wrapping */

    }

    .mobile-menu-button {
        display: block;
    }
}
