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

        :root {
            --primary-blue: #0066cc;
            --ocean-blue: #006994;
            --deep-blue: #003d5c;
            --coral-red: #e63946;
            --light-blue: #48cae4;
            --sand: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: white;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand img {
            max-height: 60px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            max-height: 45px;
        }

        .nav-link {
            color: var(--deep-blue) !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .nav-link:hover {
            color: var(--coral-red) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--coral-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .dropdown-menu {
            background: white;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            margin-top: 0.5rem;
            border-radius: 8px;
        }

        .dropdown-item {
            color: var(--deep-blue);
            transition: all 0.3s ease;
            padding: 0.6rem 1.5rem;
        }

        .dropdown-item:hover {
            background: var(--sand);
            color: var(--coral-red);
        }

        /* Hero Section - Page 1 */
        .hero-container {
            margin-top: 76px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: white;
            padding: 2rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: var(--deep-blue);
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            font-weight: 900;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 300;
        }

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

        .hero-logo img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
        }

        /* CTA Buttons */
        .btn-dive {
            background: var(--coral-red);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
            margin-bottom: 1rem;
        }

        .btn-dive:hover {
            background: #d62828;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
            color: white;
            text-decoration: none;
        }

        /* Red Background Section */
        .red-section {
            background: linear-gradient(135deg, var(--coral-red) 0%, #d62828 100%);
            color: white;
            padding: 6rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .red-section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .red-section p {
            font-size: 1.3rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Features Grid */
        .features-section {
            padding: 6rem 2rem;
            background: var(--sand);
        }

        .features-section h2 {
            font-size: 2.8rem;
            text-align: center;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .features-section .subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--coral-red);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .feature-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Footer */
        footer {
            background: var(--deep-blue);
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }

        footer h5 {
            color: var(--light-blue);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        footer p, footer li {
            color: #ccc;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        footer a {
            color: var(--light-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: white;
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--coral-red);
            color: white;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }

        /* Founder Story Section */
        .story-section {
            width: 100%;
            height: 1000px;
            margin: 0;
        }

        .story-content {
            width: 100%;
            margin: 0;
            display: grid;
            grid-template-columns: 50% 50%;
            gap: 0;
            align-items: stretch;
        }

        .story-image,
        .story-letter {
            margin: 0;
            padding: 0;
            box-shadow: none;
        }

        .story-image {
            overflow: hidden;
            min-height: 100%;
        }

        .story-letter {
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            box-shadow: none;
            border: none;
        }

        .story-letter {
            background: linear-gradient(145deg, #e63946 0%, #d62828 100%);
            color: white;
            border-radius: 0;
            padding: 2.5rem;
            box-shadow: none;
            border: none;
            line-height: 1.8;
            font-size: 1.05rem;
            font-family: 'Inter', sans-serif;
            white-space: pre-line;
        }

        .story-letter h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #fff;
            font-family: 'Playfair Display', serif;
        }

        .story-letter p {
            margin-bottom: 0.4rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .story-letter .signature {
            display: block;
            margin-top: 1.5rem;
            font-style: italic;
            font-weight: 700;
            text-align: right;
        }

        @media (max-width: 992px) {
            .story-section {
                height: auto;
            }

            .story-content {
                grid-template-columns: 1fr;
            }
            .story-letter {
                padding: 2rem;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

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

            .red-section p {
                font-size: 1.1rem;
            }

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

            .nav-link {
                padding: 0.5rem 1rem !important;
                font-size: 0.9rem;
            }
        }

html, body { height: 100%; }
        body { margin: 0; font-family: 'Inter', sans-serif; background: #f8f9fa; color: #222; display: flex; flex-direction: column; }
        .navbar { background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .navbar-brand { font-family: 'Playfair Display', serif; font-weight: 900; letter-spacing: 0.05em; }
        .gallery-header { padding: 5rem 0 2rem; text-align:center; }
        .gallery-header h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 0.5rem; }
        .gallery-header p { color: #555; font-size: 1.1rem; }
        .gallery-grid { max-width:1200px; margin:0 auto; padding: 1rem; }
        .gallery-item { overflow: hidden; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 35px rgba(0,0,0,0.2); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .footer { background: #003d5c; color: #f2f2f2; padding: 1.5rem 0; text-align: left; }
        .footer a { color: #f8f9fa; text-decoration: none; }

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #eef5f8 100%);
    text-align: center;
}

.contact-form-section h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 16px 38px rgba(0, 61, 92, 0.12);
    border: 1px solid rgba(0, 61, 92, 0.08);
    text-align: left;
}

.contact-form .form-label {
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid #d6dde2;
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fbfdff;
}

.contact-form .form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(72, 202, 228, 0.2);
    background: #ffffff;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--coral-red) 0%, #d62828 100%);
    border: none;
    padding: 0.85rem 2.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(230, 57, 70, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(230, 57, 70, 0.35);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.25rem;
        border-radius: 12px;
    }
}

/* Active nav link styling */
.nav-link.active {
    border-bottom: 3px solid var(--coral-red);
    color: var(--deep-blue) !important;
}

.nav-link {
    transition: border-bottom 0.3s ease;
}

/* Contact button styling */
.nav-link[href*="contact"] {
    border: 2px solid var(--coral-red);
    color: var(--coral-red) !important;
    border-radius: 5px;
    padding: 0.5rem 1rem !important;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link[href*="contact"]:hover {
    background-color: var(--coral-red);
    color: white !important;
}

.nav-link[href*="contact"].active {
    background-color: var(--coral-red);
    color: white !important;
    border-color: var(--coral-red);
}

/* Lightbox Modal Styles */
#lightboxImage {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}