/* 
   Theme Colors 
   Sea Blue: #004B87
   Sand White: #F8F9FA
   Sunset Orange: #FF7B54
   Dark Text: #212529
   Light Text: #FFFFFF
*/

:root {
    --sea-blue: #0A365D;
    /* Darker, more premium navy */
    --sand-white: #F4F7F6;
    /* Softer, cooler sand/grey */
    --sunset-orange: #E85A35;
    /* Deeper, more sophisticated orange */
    --dark-text: #1A1A1A;
    --light-text: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--sand-white);
    line-height: 1.7;
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: #ffffff;
}

.bg-sand {
    background-color: var(--sand-white);
}

/* Sea Blue Section */
.bg-blue {
    background-color: var(--sea-blue);
    color: var(--light-text);
}

.bg-blue .section-title h2,
.bg-blue .about-text h2,
.bg-blue .info-item h4 {
    color: var(--light-text);
}

.bg-blue .section-title p,
.bg-blue .about-text p,
.bg-blue .features li,
.bg-blue .info-item p {
    color: rgba(255, 255, 255, 0.85);
}

.bg-blue .features i {
    color: var(--sunset-orange);
}

.bg-blue .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd085;
}

/* Sunset Orange Section */
.bg-orange {
    background-color: var(--sunset-orange);
    color: var(--light-text);
}

.bg-orange .section-title h2 {
    color: var(--light-text);
}

.bg-orange .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-orange .reviews-container::before {
    background: linear-gradient(to right, var(--sunset-orange) 0%, transparent 100%);
}

.bg-orange .reviews-container::after {
    background: linear-gradient(to left, var(--sunset-orange) 0%, transparent 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--sea-blue);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--sunset-orange);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(232, 90, 53, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:hover {
    background-color: #d14926;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 90, 53, 0.5);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

.large-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: var(--sea-blue);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 40, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    transition: var(--transition);
}

.site-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    vertical-align: middle;
}

header.scrolled .logo a {
    color: var(--light-text);
}

header.scrolled .site-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--light-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

header.scrolled .nav-links li a {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links li a:hover {
    color: var(--sunset-orange);
}

.hamburger {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

header.scrolled .hamburger {
    color: var(--light-text);
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 600px;
    background: url('images/gallery/img_8628-A3QOMvvn0gSL0BgL.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 54, 93, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 123, 84, 0.1);
    color: var(--sunset-orange);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.badge i {
    color: #FFD700;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--sea-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: var(--sea-blue);
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
}

#about.section {
    padding: 50px 0;
}

.about-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Reviews Section */
.reviews-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.reviews-container::before,
.reviews-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-container::before {
    left: 0;
    background: linear-gradient(to right, var(--sand-white) 0%, transparent 100%);
}

.reviews-container::after {
    right: 0;
    background: linear-gradient(to left, var(--sand-white) 0%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #eee;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--sea-blue);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.reviewer-info h4 {
    margin: 0;
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.reviewer-info p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.review-stars i {
    color: #FBBC05;
    font-size: 1.1rem;
}

.review-stars i.far {
    color: #e4e5e9;
}

.review-text {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-weight: 500;
}

.google-review-badge i {
    color: #4285F4;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 50px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--sunset-orange);
    background: rgba(255, 123, 84, 0.1);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    color: var(--sea-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    font-size: 1rem;
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background-color: var(--sea-blue);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--sunset-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--sea-blue);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links li a {
        color: var(--light-text);
    }

    header.scrolled .nav-links li a {
        color: rgba(255, 255, 255, 0.85);
    }

    .hamburger {
        display: block;
    }

    /* Footer */
    footer {
        background-color: var(--sea-blue);
        color: var(--light-text);
        padding: 60px 0 30px;
    }

    footer .footer-logo h3 {
        margin-bottom: 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .social-links a {
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Lightbox Gallery Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--sunset-orange);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
    border-radius: 3px 0 0 3px;
}

.lightbox-next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

/* Premium Scroll Animations */
.animate-hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, filter, transform;
}

.animate-show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger Effects */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* Mobile Premium Menu */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 75, 135, 0.98);
    /* Deep Sea Blue */
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

#mobile-menu-overlay ul {
    text-align: center;
    list-style: none;
    padding: 0;
}

#mobile-menu-overlay ul li {
    margin: 30px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

#mobile-menu-overlay.active ul li {
    transform: translateY(0);
    opacity: 1;
}

/* Detailed staggered menu items */
#mobile-menu-overlay.active ul li:nth-child(1) {
    transition-delay: 0.1s;
}

#mobile-menu-overlay.active ul li:nth-child(2) {
    transition-delay: 0.2s;
}

#mobile-menu-overlay.active ul li:nth-child(3) {
    transition-delay: 0.3s;
}

#mobile-menu-overlay.active ul li:nth-child(4) {
    transition-delay: 0.4s;
}

#mobile-menu-overlay ul li a {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

#mobile-menu-overlay ul li a:hover {
    color: var(--sunset-orange);
}

.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.menu-close-btn:hover {
    color: var(--sunset-orange);
    transform: rotate(90deg);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--sunset-orange);
}

@media (max-width: 768px) {

    /* Base spacing and fonts */
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    /* Header & Navigation */
    .nav-links {
        display: none;
        /* Hidden on mobile to use overlay */
    }

    .hamburger {
        display: block;
        /* Show hamburger icon */
    }

    .site-logo {
        height: 50px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Grids & Layouts */
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Features List */
    .features li {
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .large-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}