:root {
    --ocean-blue: #1a4d6f;
    --ocean-light: #3b7a9e;
    --sand: #e8dcc4;
    --cream: #f5f1e8;
    --dark: #1a1a1a;
    --grey: #6b6b6b;
    --light-grey: #f8f8f8;
    --white: #ffffff;
    --accent: #c89f6f;
    --gradient-primary: linear-gradient(135deg, #1a4d6f 0%, #3b7a9e 100%);
    --gradient-accent: linear-gradient(135deg, #c89f6f 0%, #d4b896 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ocean-blue);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--ocean-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.9) 0%, rgba(59, 122, 158, 0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,800L1392,800C1344,800,1248,800,1152,800C1056,800,960,800,864,800C768,800,672,800,576,800C480,800,384,800,288,800C192,800,96,800,48,800L0,800Z"></path></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 77, 111, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.8s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 159, 111, 0.3);
}

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

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

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    background: var(--cream);
}

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

.intro-text p {
    margin-bottom: 20px;
    color: var(--grey);
}

.intro-text .lead {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    font-weight: 400;
    margin-bottom: 30px;
}

.intro-text strong {
    color: var(--ocean-blue);
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.intro-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.intro-img:hover {
    transform: scale(1.02);
}

/* Vision Section */
.vision-section {
    background: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vision-text p {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Experience Section */
.experience-section {
    background: var(--light-grey);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.experience-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 77, 111, 0.1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ocean-blue);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.5rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.experience-card p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Details Section */
.details-section {
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.detail-block {
    margin-bottom: 50px;
}

.detail-block h3 {
    font-size: 2rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1.2rem;
    color: var(--grey);
}

.package-includes {
    list-style: none;
    margin-top: 20px;
}

.package-includes li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--grey);
    border-bottom: 1px solid var(--light-grey);
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-weight: 600;
}

.detail-block p {
    color: var(--grey);
    margin-bottom: 15px;
}

.detail-block .highlight {
    color: var(--ocean-blue);
    font-weight: 500;
    margin-top: 20px;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.sidebar-card p {
    color: var(--grey);
}

.highlight-card {
    background: var(--gradient-primary);
    color: var(--white);
}

.highlight-card h3,
.highlight-card p {
    color: var(--white);
}

.impact-list {
    list-style: none;
}

.impact-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--grey);
}

.impact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--ocean-blue);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--grey);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 77, 111, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(26, 77, 111, 0.1);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50% {
        transform: scaleY(0.5);
        transform-origin: bottom;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .intro-grid,
    .vision-content,
    .details-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
