/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f8f5;
    overflow-x: hidden;
}

/* Text Selection Styling */
::selection {
    background-color: #737856;
    color: #ffffff;
    font-size: 1.1em;
}

::-moz-selection {
    background-color: #737856;
    color: #ffffff;
    font-size: 1.1em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #737856;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #737856;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.nav-logo .logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:focus,
.nav-link:active {
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    background: #f8f8f5;
    position: relative;
}

.hero > .container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Photo Carousel - Enhanced for full size display */
.photo-carousel {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    min-height: 750px;
    /* Enhanced container for better image display */
    border-radius: 0 0 0 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

/* Carousel container optimization */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Ensure smooth transitions */
    background: #f8f8f5;
}

/* Enhanced carousel slide positioning */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    /* Prevent image overflow */
    overflow: hidden;
}

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

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

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Enhanced responsive image handling */
    max-width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    /* Prevent image distortion */
    aspect-ratio: auto;
    /* Smooth image loading */
    transition: transform 0.3s ease;
}

/* Full size image display optimization */
.carousel-slide img:hover {
    transform: scale(1.02);
}

/* Ensure images maintain quality at all sizes */
@media (min-width: 1920px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        min-height: 100%;
        min-width: 100%;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
    }
}

/* Tablet landscape optimization */
@media (min-width: 768px) and (max-width: 1199px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
        /* Maintain aspect ratio while filling container */
        min-height: 100%;
    }
}

/* Mobile optimization */
@media (max-width: 767px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
        /* Ensure full coverage on mobile */
        min-height: 100%;
        border-radius: 15px;
    }
}

/* Ultra-wide displays (4K and above) */
@media (min-width: 2560px) {
    .photo-carousel {
        min-height: 900px;
    }
    
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        min-height: 900px;
        /* Enhanced quality for large screens */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* High DPI/Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .carousel-slide img {
        /* Enhanced image quality for retina displays */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        /* Ensure sharp images at high DPI */
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Landscape mobile devices */
@media (max-width: 767px) and (orientation: landscape) {
    .photo-carousel {
        height: 100vh;
        min-height: 500px;
    }
    
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        height: 100%;
        width: 100%;
    }
}

/* Portrait tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .photo-carousel {
        min-height: 600px;
    }
    
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        min-height: 600px;
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-prev,
.carousel-next {
    background: rgba(115, 120, 86, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #737856;
    transform: scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
    display: none;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: rgba(115, 120, 86, 0.9);
    border-color: rgba(115, 120, 86, 1);
}

.carousel-dot:hover {
    background: rgba(115, 120, 86, 0.7);
    transform: scale(1.2);
}

/* Hero Content */
.hero-content {
    width: 45%;
    padding-right: 50px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 750px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.8vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 30px;
}

.cta-button {
    background: #737856;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}



/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 100%;
    height: 418px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Medium screens (tablets) responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .story-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    
    .story-image img {
        height: 385px;
        object-position: center;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .story-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image img {
        height: 330px;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Packages Section */
.packages-section {
    padding: 20px 0 100px 0;
    background: #f8f8f5;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card.featured {
    border-color: #737856;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #737856;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.package-price {
    font-size: 48px;
    font-weight: 700;
    color: #737856;
    margin-bottom: 25px;
}

.package-features {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.package-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: #737856;
    width: 16px;
}

.package-button {
    background: #737856;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0 auto;
    text-align: center;
}

.package-button:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #737856;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c2c2c;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.process-text {
    flex: 1;
}

.process-text p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.process-section .section-header h2 {
    color: white;
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 30px 20px;
        gap: 15px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



.step-number {
    width: 60px;
    height: 60px;
    background: #737856;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f8f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-photo-bw,
.about-photo-color {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-photos-only {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.about-photo-full {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-photo-full:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #737856;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f8f5;
    border-radius: 10px;
}

.contact-item i {
    font-size: 24px;
    color: #737856;
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f8f5;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #737856;
}

.submit-button {
    background: #737856;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

.button-loading {
    display: none;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-section ul li a:hover {
    color: #737856;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #737856;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 16px;
}



/* Large Screens */
@media (min-width: 1920px) {
    .hero > .container {
        max-width: 1600px;
    }
    
    .photo-carousel {
        width: 55%;
    }
    
    .hero-content {
        width: 45%;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .hero > .container {
        max-width: 1400px;
    }
    
    .photo-carousel {
        width: 55%;
    }
    
    .hero-content {
        width: 45%;
    }
}

/* Tablet Landscape */
@media (min-width: 1025px) and (max-width: 1439px) {
    .hero-content {
        width: 48%;
    }
    
    .photo-carousel {
        width: 52%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        width: 50%;
    }
    
    .photo-carousel {
        width: 50%;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .superpower-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-block {
        margin-top: 0;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #737856;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        padding: 100px 0 30px;
        text-align: center;
    }

    .photo-carousel {
        position: relative;
        width: 100%;
        height: 600px;
        margin-bottom: 40px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .carousel-slide img {
        object-fit: cover;
        border-radius: 15px;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        min-height: auto;
        text-align: center;
    }

/* Medium Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .photo-carousel {
        min-height: 650px;
    }
    
    .hero-content {
        min-height: 650px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}



    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.featured {
        transform: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .package-price {
        font-size: 36px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .photo-carousel {
        height: 400px;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-dots {
        display: none;
    }
    
    .carousel-nav {
        padding: 0 15px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Loading and Animation States */
.button-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

/* New sections styling */

/* Together Section */
.together-section {
    padding: 60px 0;
    background: #f8f8f5;
    text-align: center;
}

.together-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #737856;
    margin-bottom: 16px;
    font-weight: 600;
}

.together-section .section-header p {
    font-size: 18px;
    color: #666;
}

/* Updated Package Cards */
.package-description {
    padding: 0 20px 20px;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}

.package-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.package-note p {
    font-size: 14px;
    color: #888;
    line-height: 1.4;
}

/* Updated Process Section */
.process-section .stages-label {
    font-size: 14px;
    color: #737856;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #f8f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon img {
    width: 40px;
    height: 40px;
}

/* Save Moments Section */
.save-moments-section {
    padding: 80px 0;
    background: #737856;
    color: white;
    text-align: center;
}

.save-moments-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.save-moments-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button.large {
    font-size: 18px;
    padding: 20px 40px;
    background: white;
    color: #737856;
}

.cta-button.large:hover {
    background: #f8f8f5;
    transform: translateY(-3px);
}

/* Gift Section */
.gift-section {
    padding: 80px 0;
    background: white;
}

.gift-main {
    max-width: 1200px;
    margin: 0 auto;
}

.gift-intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.gift-intro-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.gift-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.gift-left {
    padding-top: 80px;
    padding-right: 20px;
}

.gift-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 54px);
    color: #2c2c2c;
    margin-bottom: 35px;
    line-height: 1.15;
    font-weight: 600;
    text-align: center;
}

.gift-section .highlight {
    color: #737856;
    font-style: italic;
}

.gift-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.5;
}

.gift-quote-box {
    background: #f8f8f5;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    text-align: center;
}

.gift-quote-box p {
    font-size: 20px;
    font-style: italic;
    color: #737856;
    margin: 0;
    font-weight: 500;
}

.gift-types-left {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gift-type-item {
    padding: 8px 0;
    text-align: center;
}

.gift-type-item p {
    font-size: 18px;
    color: #2c2c2c;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.gift-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.gift-image-container {
    width: 100%;
    max-width: 350px;
}

.gift-image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gift-photo-1,
.gift-photo-2 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gift-bottom {
    text-align: center;
}

.gift-conclusion {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    color: #737856;
    margin: 0 0 45px;
    line-height: 1.25;
    font-weight: 500;
}

.gift-note-box {
    background: #f8f8f5;
    padding: 35px 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.gift-note-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 968px) {
    .gift-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gift-right {
        padding-top: 0;
    }
    
    .gift-left h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gift-section {
        padding: 60px 0;
    }
    
    .gift-types-left {
        gap: 15px;
    }
    
    .gift-type-item {
        padding: 15px 20px;
    }
    
    .gift-note-box {
        padding: 20px;
    }
}

/* Updated About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text .cta-button {
    display: block;
    width: 200px;
    margin: 30px auto;
    text-align: center;
    background: #737856;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-text .cta-button:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

.work-areas {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-areas h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #737856;
    margin-bottom: 15px;
    font-weight: 600;
}

.work-areas p {
    color: #666;
    font-size: 16px;
}

.superpower {
    text-align: center;
    padding: 40px;
    background: #737856;
    color: white;
    border-radius: 15px;
}

.superpower h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
    color: white;
}

.superpower p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.superpower .cta-button {
    display: block;
    width: 200px;
    margin: 30px auto 0 auto;
    text-align: center;
    background: white;
    color: #737856;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.superpower .cta-button:hover {
    background: #f8f8f5;
    transform: translateY(-2px);
}

/* Superpower Contact Grid */
.superpower-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

/* Contact Block */
.contact-block {
    padding: 30px;
    background: #2c2c2c;
    border-radius: 15px;
    color: white;
    margin-top: 60px;
    position: relative;
    top: -20px;
}

.contact-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-link:hover {
    color: #737856;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 16px;
    width: 20px;
    display: inline-block;
}

.contact-link span:last-child {
    font-size: 16px;
}

/* Mobile responsiveness for superpower-contact grid */
@media (max-width: 768px) {
    .superpower-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Responsive - About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        align-items: center;
        gap: 15px;
    }
    
    .about-photo-bw,
    .about-photo-color {
        max-width: 250px;
        width: 90%;
    }
    
    .about-photos-only {
        align-items: center;
        gap: 15px;
    }
    
    .about-photo-full {
        width: 85%;
        max-width: 320px;
        min-height: 320px;
    }
    
    .about-text {
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    
    .work-areas {
        margin: 40px 0;
        padding: 30px 20px;
    }
    
    .work-areas h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .work-areas p {
        font-size: 14px;
    }
    
    .superpower {
        padding: 30px 20px;
    }
    
    .superpower h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .superpower p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .contact-block {
        margin-top: 0;
        top: 0;
        padding: 25px 20px;
    }
    
    .contact-block h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .contact-links {
        gap: 12px;
    }
    
    .contact-link {
        padding: 10px 0;
        font-size: 15px;
    }
    
    .contact-icon {
        font-size: 14px;
        width: 18px;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .superpower-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-block {
        max-width: 600px;
        margin: 20px auto 0;
        top: 0;
    }
    
    .about-photos-only {
        align-items: center;
    }
    
    .about-photo-full {
        width: 90%;
        max-width: 420px;
        min-height: 400px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .about-photo-bw,
    .about-photo-color {
        max-width: 200px;
        width: 85%;
    }
    
    .about-photo-full {
        width: 85%;
        max-width: 260px;
        min-height: 280px;
    }
    
    .contact-block {
        padding: 20px 15px;
        margin: 15px;
    }
    
    .contact-block h3 {
        font-size: 18px;
    }
    
    .contact-link span:last-child {
        font-size: 14px;
    }
    
    .superpower {
        padding: 25px 15px;
    }
    
    .superpower h3 {
        font-size: 22px;
    }
    
    .superpower p {
        font-size: 14px;
    }
}

/* Large screen optimization */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .superpower-contact-grid {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 80px;
        max-width: 1200px;
        margin: 60px auto 0;
    }
    
    .contact-block {
        max-width: 400px;
        padding: 35px;
        margin-top: 40px;
        top: -10px;
    }
    
    .about-content {
        max-width: 1200px;
        margin: 0 auto 60px;
    }
    
    .about-photo-bw,
    .about-photo-color {
        max-width: 320px;
    }
    
    .about-photo-full {
        max-width: 520px;
        min-height: 550px;
    }
}

/* Extra large screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .superpower-contact-grid {
        max-width: 1400px;
        gap: 100px;
    }
    
    .about-content {
        max-width: 1400px;
    }
    
    .contact-block {
        max-width: 450px;
        padding: 40px;
    }
    
    .about-photo-bw,
    .about-photo-color {
        max-width: 380px;
    }
    
    .about-photo-full {
        max-width: 600px;
        min-height: 600px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #2c2c2c;
    margin: 2% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 1000;
}

.modal-close:hover {
    color: #737856;
}

.modal h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #555;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #737856;
    background-color: #333;
}

/* Ensure date input has consistent styling */
.form-group input[type="date"] {
    border: 2px solid #555 !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-group input[type="date"]:focus {
    border-color: #737856 !important;
    background-color: #333 !important;
    outline: none !important;
}

/* Style the date picker calendar icon */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Remove any browser-specific date input styling */
.form-group input[type="date"]::-webkit-inner-spin-button,
.form-group input[type="date"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Ensure phone input has consistent styling */
.form-group input[type="tel"] {
    border: 2px solid #555 !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-group input[type="tel"]:focus {
    border-color: #737856 !important;
    background-color: #333 !important;
    outline: none !important;
}

/* Ensure select dropdown has consistent styling */
.form-group select {
    border: 2px solid #555 !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23ffffff' d='M6 9L1.5 4.5h9z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
}

.form-group select:focus {
    border-color: #737856 !important;
    background-color: #333 !important;
    outline: none !important;
}

/* Style select options */
.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.modal-submit-btn {
    width: 100%;
    background: #737856;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-submit-btn:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

.modal-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

/* Success and Error Modal Styles */
.success-modal,
.error-modal {
    text-align: center;
    max-width: 500px;
}

.success-icon,
.error-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.success-icon {
    color: #4CAF50;
}

.error-icon {
    color: #f44336;
}

.modal-close-btn {
    background: #737856;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.modal-close-btn:hover {
    background: #5a5d42;
    transform: translateY(-2px);
}

/* Embedded Google Form Styling */
.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    width: 100%;
    max-width: 640px;
    height: 800px;
    border: none;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .contact-form {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .contact-form iframe {
        max-width: 100%;
        height: 750px;
    }
}

/* Mobile responsive for embedded form */
@media (max-width: 768px) {
    .contact-form {
        padding: 0 15px;
    }
    
    .contact-form iframe {
        height: 650px;
        border-radius: 8px;
    }
    
    .contact-form h2 {
        margin-bottom: 20px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .contact-form {
        padding: 0 10px;
    }
    
    .contact-form iframe {
        height: 600px;
        border-radius: 6px;
    }
    
    .contact-form h2 {
        margin-bottom: 15px;
    }
}

/* Mobile responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
}