@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #F8F5F2; /* Cream/Off-White */
    --text-primary: #1A3636; /* Deep Forest Green */
    --text-secondary: #405D5D;
    --accent-color: #D4AF37; /* Gold/Rose Gold */
    --accent-hover: #C5A028;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

/* Navbar / Glassmorphism */
.c-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo span {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.brand-logo:hover span {
    color: var(--accent-color);
}

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

.brand-logo img {
    height: 50px; /* Adjust size based on logo proportions */
    width: auto;
    object-fit: contain;
}

.c-nav {
    font-size: 1.1rem;
    gap: 20px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.c-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.c-nav .nav-link:hover, .c-nav .nav-link.active {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 90vh; /* Adjust height based on nav bar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 33, 33, 0.4); /* Subdued matching dark green overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
}

.cta-title {
    font-family: var(--font-heading); 
    font-size: 4rem; 
    font-weight: 700; 
    color: #FFF; 
    margin-bottom: 20px; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.cta-subtitle {
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    font-style: italic; 
    margin-bottom: 40px; 
    color: #FFF; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

/* Our Story Luxury Layout */
.story-wrapper {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.story-content-box {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    margin-right: -100px; /* Overlap effect */
    margin-top: 40px;
}

.story-img-container {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-img-container:hover img {
    transform: scale(1.05);
}

/* Image Background Callout Sections */
.bg-image-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.bg-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark Overlay */
    z-index: 1;
}

.bg-image-section .container {
    position: relative;
    z-index: 2;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.hiw-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.08); /* Frosted Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, background 0.4s ease;
}

.hiw-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.hiw-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hiw-text {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Remove old static about styles since we upgraded to story-wrapper */
.about-img-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.text-content {
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* Image Grids */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 54, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Packages Cards Table UI - Light Styling Reference */
.pricing-wrapper {
    padding: 20px;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Shadow borders */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background-color: var(--primary-color);
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    padding: 0 20px;
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.pricing-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 0 20px;
}

.pricing-upgrade {
    margin-top: auto; /* Pushes to the bottom */
    font-size: 0.9rem;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.pricing-btn {
    display: block;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto; /* Ensure it stays below everything */
    letter-spacing: 1px;
}

.pricing-btn:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

/* Footer structure */
.footercontainer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 60px 0 30px 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    color: var(--white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.contact-card:hover .contact-icon {
    background-color: var(--accent-color);
}

.contact-icon img {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon img {
    filter: brightness(0) invert(1);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-card p, .contact-card a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

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

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

.animate-on-load {
    animation: fadeIn 1.2s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Media Queries */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .brand-logo span {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-img-container {
        margin-top: 40px;
    }
    
    .c-nav {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center !important;
    }
    
    .masonry-grid {
        column-count: 1;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .story-content-box {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: -50px;
        padding: 30px 20px;
        z-index: 2;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .story-img-container {
        height: 400px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-top: 0 !important;
        z-index: 1;
    }

    .cta-title {
        font-size: 2.5rem !important;
    }

    .cta-subtitle {
        font-size: 1.5rem !important;
    }

    .c-nav-inner {
        flex-direction: column;
        gap: 15px;
    }

    .brand-logo {
        font-size: 1.2rem;
    }
}