:root {
    --primary-blue: #0077b6;      /* Vibrant Ocean Blue */
    --primary-hover: #00b4d8;    /* Brighter Blue */
    --dark-navy: #023e8a;        /* Deep Royal Blue */
    --gold: #D4AF37;             /* Elegant Metallic Gold */
    --gold-light: #F1D279;       /* Soft Gold */
    --white: #FFFFFF;
    --off-white: #f8f9fa;        /* Clean Off-white */
    --bg-soft: #CAF0F8;          /* Very light aqua background */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-navy);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

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

.gold-text {
    color: var(--gold);
}


/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--dark-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

header.scrolled .nav-links a {
    color: var(--dark-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-nav {
    background: var(--gold);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

header.scrolled .btn-nav {
    background: var(--gold);
    color: var(--white);
}

.btn-nav:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .hamburger,
.hamburger.active {
    color: var(--dark-green);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 500px;
    background: url('images/heroN.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 62, 138, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* Services */
.services-section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--off-white);
    padding: 50px 40px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(58, 139, 136, 0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(58, 139, 136, 0.25);
}

.service-card:hover .icon-wrapper i {
    color: var(--white);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-section {
    padding: 100px 0;
}

.bg-pastel {
    background-color: var(--primary-green);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.carousel-track-wrapper {
    width: 100%;
    padding: 10px 0; /* To prevent box-shadow clipping */
}

.carousel-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--dark-green);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(58, 139, 136, 0.3);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 80%; /* Takes up 80% of width on mobile to show hint of next */
    margin: 0 10px;
    box-sizing: border-box;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .gallery-item {
        min-width: calc(50% - 30px);
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        min-width: calc(33.333% - 30px);
    }
}



.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    gap: 15px;
    border: 1px dashed var(--primary-blue);
}

.image-placeholder i {
    font-size: 3rem;
}

/* Location */
.location-section {
    padding: 100px 20px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.location-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-social {
    margin-bottom: 30px !important;
}

.facebook-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.facebook-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.facebook-link i {
    font-size: 1.3rem;
    color: var(--gold) !important;
}

.location-info i {
    color: var(--primary-blue);
    margin-right: 10px;
    width: 20px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--dark-green);
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--dark-green);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* bitlayout credit */
.bitlayout-credit {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.bitlayout-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.bitlayout-link:hover {
    color: var(--gold-light);
}

.bitlayout-link i {
    font-size: 0.8rem;
}


/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 4rem;
    }
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 70%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark-green);
        font-size: 1.2rem;
        margin: 15px 0;
        display: block;
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .btn-nav {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prev-btn, .next-btn {
        display: none; /* Hide arrows on mobile */
    }

    .services-section, .gallery-section, .location-section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .carousel-track .gallery-item {
        min-width: 85%; /* Make it slightly smaller so the next image is visible */
        margin: 0 10px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn-nav {
        display: none; /* Hide button to leave only logo if too cramped, or keep it */
    }
}
