/* ===== GLOBAL STYLES ===== */
:root {
    /* Ocean & Beach Color Theme */
    --primary-color: #0077be;        /* Ocean Blue */
    --primary-dark: #005a8e;         /* Deep Ocean */
    --primary-light: #33a3d9;        /* Light Blue */
    --secondary-color: #f4a460;      /* Sandy Brown */
    --secondary-light: #ffd89b;      /* Light Sand */
    --accent-color: #00bcd4;         /* Turquoise */
    --ocean-teal: #008B8B;           /* Dark Cyan */

    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8fbff;
    --gray-light: #e0e7ef;
    --gray: #6c757d;
    --dark: #2c3e50;
    --black: #1a1a1a;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.98); */
    background: rgb(1 12 78);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.99);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

footer > div > div.footer-content > div:nth-child(3) > ul > li:nth-child(2){
    font-size: 15px;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 119, 190, 0.2));
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 119, 190, 0.3));
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    color: var(--gray-light);
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu a i {
    font-size: 1rem;
    transition: var(--transition);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.08), rgba(0, 188, 212, 0.08));
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover i {
    transform: scale(1.15);
}

.nav-menu a.active {
    color: var(--primary-color);
    /* background: linear-gradient(135deg, rgba(0, 119, 190, 0.12), rgba(0, 188, 212, 0.12)); */
    box-shadow: 0 2px 8px rgba(0, 119, 190, 0.15);
}

.nav-menu a.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Book Now Button */
.nav-cta {
    margin-left: 0.5rem;
}

.btn-nav-booking {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-nav-booking::before {
    display: none;
}

.btn-nav-booking::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-nav-booking:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--ocean-teal));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 119, 190, 0.4);
}

.btn-nav-booking:hover::after {
    width: 300px;
    height: 300px;
}

.btn-nav-booking.active {
    background: linear-gradient(135deg, var(--primary-dark), var(--ocean-teal));
    box-shadow: 0 6px 25px rgba(0, 119, 190, 0.4);
}

.btn-nav-booking i {
    font-size: 1.1rem;
}

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

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION WITH SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.7) 0%, rgba(0, 188, 212, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 10px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism shine effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.3);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

/* Animated gradient background */
.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-light), var(--primary-color));
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
    transform: scale(1.05);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
    transition: var(--transition);
}

.feature-card:hover p {
    color: var(--dark);
}

/* ===== SECTION COMMON STYLES ===== */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    filter: blur(8px);
    opacity: 0.5;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Floating shapes background */
.why-choose-us::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 119, 190, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(0, -50px) scale(1); }
    75% { transform: translate(-30px, -30px) scale(0.9); }
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-text h3 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.why-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.why-text p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.9;
    font-size: 1.05rem;
}

.check-list {
    margin: var(--spacing-md) 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--dark);
    font-size: 1.05rem;
    transition: var(--transition);
}

.check-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.check-list li:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--primary-color);
}

/* Why Choose Us Image Slider */
.why-image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-image-slider::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    opacity: 0.15;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.why-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.why-slide.active {
    opacity: 1;
    transform: scale(1);
}

.why-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Navigation Arrows for Why Slider */
.why-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--primary-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.why-slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(0, 119, 190, 0.4);
}

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

.why-prev {
    left: 20px;
}

.why-next {
    right: 20px;
}

/* Thumbnail Navigation */
.why-thumbnails {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.why-thumb {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-thumb:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.why-thumb:hover::before {
    opacity: 0.3;
}

.why-thumb.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.5);
}

.why-thumb.active::before {
    opacity: 1;
}

/* Shine effect overlay */
.why-image-slider::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -150%; }
    50%, 100% { left: 150%; }
}

/* Legacy styles for fallback */
.why-image {
    position: relative;
}

.why-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.why-image:hover::before {
    transform: rotate(0deg);
    opacity: 0.15;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.why-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 119, 190, 0.3);
}

/* ===== PRICE LIST ===== */
.pricelist {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.price-tables {
    display: grid;
    gap: var(--spacing-md);
}

.price-table {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.price-table h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.price-table tr:hover {
    background: var(--light-bg);
}

.price-table .price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.price-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--secondary-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.price-note i {
    color: var(--secondary-color);
    margin-right: var(--spacing-xs);
}

/* ===== BOOKING & CONTACT FORMS ===== */
.booking, .contact {
    padding: var(--spacing-xl) 0;
}

.booking-form-wrapper, .contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--dark);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.review-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.review-info h4 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.review-rating {
    color: #ffc107;
}

.review-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.about-text h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-card p,
.contact-card a {
    color: var(--gray);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.qr-code {
    max-width: 200px;
    margin: var(--spacing-sm) auto 0;
    border-radius: 8px;
}

.map-container {
    margin-top: var(--spacing-lg);
}

.map-container h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--ocean-teal));
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-section p,
.footer-section li {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* ===== MOBILE BOTTOM CONTACT BAR ===== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0.5rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 2px solid var(--light-bg);
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 70px;
}

.mobile-bottom-bar {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
}

.mobile-bottom-item i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-bottom-item:active {
    transform: scale(0.95);
}

/* Individual icon colors */
.mobile-bottom-item:nth-child(1) {
    /* Call */
    color: var(--primary-color);
}

.mobile-bottom-item:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1), rgba(0, 119, 190, 0.15));
}

.mobile-bottom-item:nth-child(2) {
    /* Email */
    color: #EA4335;
}

.mobile-bottom-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1), rgba(234, 67, 53, 0.15));
}

.mobile-bottom-item:nth-child(3) {
    /* WhatsApp */
    color: #25D366;
}

.mobile-bottom-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.15));
}

.mobile-bottom-item:nth-child(4) {
    /* WeChat */
    color: #09B83E;
}

.mobile-bottom-item:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(9, 184, 62, 0.1), rgba(9, 184, 62, 0.15));
}

.mobile-bottom-item:hover i {
    transform: scale(1.2);
}

/* Animation for mobile bottom bar */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-slide {
    opacity: 0;
    animation: fadeInSlide 0.8s ease forwards;
}

.fade-in-slide.delay-0 {
    animation-delay: 0.1s;
}

.fade-in-slide.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-slide.delay-2 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== QUICK SERVICES ===== */
.quick-services {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Animated gradient border */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-light));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderFlow 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 119, 190, 0.25);
    background: var(--white);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2.25rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.3);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(180deg);
    box-shadow: 0 20px 40px rgba(0, 119, 190, 0.4);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition);
}

.service-card:hover p {
    color: var(--dark);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: var(--spacing-sm) 0;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.btn-small {
    padding: 0.625rem 1.75rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-small:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated wave background */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
}

.cta-section::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

.cta-section::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: wave 20s ease-in-out infinite reverse;
}

@keyframes wave {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, 5%) rotate(90deg); }
    50% { transform: translate(0, 10%) rotate(180deg); }
    75% { transform: translate(-5%, 5%) rotate(270deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInDown 0.8s ease-out;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.95; }
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===== CUSTOMER GALLERY (MASONRY STYLE) ===== */
.customer-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.masonry-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    width: calc(25% - 15px);
    margin-bottom: 15px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.masonry-item a {
    display: block;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 190, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.masonry-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* Responsive Masonry Grid */
@media (max-width: 1200px) {
    .masonry-item {
        width: calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .masonry-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .masonry-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .masonry-grid {
        padding: 0 10px;
    }
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.lb-data .lb-number {
    font-size: 0.875rem;
}

/* ===== CUSTOMER PHOTOS HOME ===== */
.customer-photos-home {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
    position: relative;
}

.customer-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: var(--spacing-md) 0;
}

.customer-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1 / 1;
    opacity: 0;
    animation: revealPhoto 0.6s ease forwards;
}

/* Stagger animation for each photo */
.customer-photo-item:nth-child(1) { animation-delay: 0.1s; }
.customer-photo-item:nth-child(2) { animation-delay: 0.2s; }
.customer-photo-item:nth-child(3) { animation-delay: 0.3s; }
.customer-photo-item:nth-child(4) { animation-delay: 0.4s; }
.customer-photo-item:nth-child(5) { animation-delay: 0.5s; }
.customer-photo-item:nth-child(6) { animation-delay: 0.6s; }
.customer-photo-item:nth-child(7) { animation-delay: 0.7s; }
.customer-photo-item:nth-child(8) { animation-delay: 0.8s; }
.customer-photo-item:nth-child(9) { animation-delay: 0.9s; }
.customer-photo-item:nth-child(10) { animation-delay: 1s; }
.customer-photo-item:nth-child(11) { animation-delay: 1.1s; }
.customer-photo-item:nth-child(12) { animation-delay: 1.2s; }

@keyframes revealPhoto {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.customer-photo-item:hover {
    transform: translateY(-12px) scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 119, 190, 0.3);
    z-index: 10;
}

.customer-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.customer-photo-item:hover img {
    transform: scale(1.1);
}

.customer-photo-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.9), rgba(0, 188, 212, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.customer-photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.customer-photo-item:hover .photo-overlay i {
    transform: scale(1) rotate(360deg);
}

/* Responsive Customer Photos */
@media (max-width: 1024px) {
    .customer-photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .customer-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .customer-photo-item {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .customer-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .photo-overlay i {
        font-size: 2rem;
    }
}
