@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
    --dark-green: #08241b;
    --dark-green-light: #0d382b;
    --ivory: #f7f5ef;
    --ivory-dark: #ebe7dd;
    --gold: #d2b464;
    --text-dark: #1a2421;
    --text-light: #e0e6e4;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--ivory);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Floating Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Global Sand Texture */
body::before, body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-conic-gradient(#0003 0.000001%, #fff0 .00005%, #fff0 .00035%, #fff0 .00005%), repeating-conic-gradient(#fff2 0.00002%, #fff0 .00008%, #fff0 .0008%, #fff0 .00008%);
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
    z-index: -1;
}

body::after {
    transform: rotate(180deg) scale(5);
    filter: none;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(8, 36, 27, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(210, 180, 100, 0.2);
}

.logo {
    color: var(--ivory);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Page Header for subpages */
.page-header {
    background: var(--dark-green);
    background-image: url('image/dark_bg.png');
    background-size: cover;
    background-position: center;
    padding: 150px 5% 80px;
    text-align: center;
    color: var(--ivory);
}
.page-header h1 {
    font-size: 4rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    background-color: var(--dark-green);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Reduced dark overlay so the original image colors pop more */
    background: linear-gradient(to bottom, rgba(8, 36, 27, 0.2), rgba(8, 36, 27, 0.05));
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: sliderFade 36s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

.slide:nth-child(5) {
    animation-delay: 24s;
}

.slide:nth-child(6) {
    animation-delay: 30s;
}

@keyframes sliderFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    6% {
        opacity: 1;
        transform: scale(1.01);
    }

    16% {
        opacity: 1;
        transform: scale(1.02);
    }

    23% {
        opacity: 0;
        transform: scale(1.03);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--ivory);
    font-size: 6rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s forwards 0.5s;
}

.hero p {
    color: var(--ivory);
    font-size: 1.2rem;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.8s;
}

/* Animated Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    /* No rotation needed here, it stays at the bottom connecting to dark section below */
}

.wave {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,60 C300,120 300,0 600,60 C900,120 900,0 1200,60 L1200,120 L0,120 Z" fill="%2308241b"/></svg>') repeat-x;
    background-size: 1200px 120px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    animation: waveMove 10s linear infinite;
    transform: translate3d(0, 0, 0);
}

.wave-divider .wave:nth-of-type(2) {
    bottom: 0px;
    opacity: 0.5;
    animation: waveMove 15s linear infinite reverse;
}

.wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    transform: rotate(180deg);
}

.wave-divider-top .wave {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,60 C300,120 300,0 600,60 C900,120 900,0 1200,60 L1200,120 L0,120 Z" fill="%2308241b"/></svg>') repeat-x;
    background-size: 1200px 120px;
}

/* Sand-textured wave for image transitions */
.wave-sand .wave {
    background: var(--ivory) !important;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,60 C300,120 300,0 600,60 C900,120 900,0 1200,60 L1200,120 L0,120 Z" fill="black"/></svg>');
    -webkit-mask-size: 1200px 120px;
    -webkit-mask-repeat: repeat-x;
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,60 C300,120 300,0 600,60 C900,120 900,0 1200,60 L1200,120 L0,120 Z" fill="black"/></svg>');
    mask-size: 1200px 120px;
    mask-repeat: repeat-x;
}

.wave-sand .wave::before, .wave-sand .wave::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: repeating-conic-gradient(#0003 0.000001%, #fff0 .00005%, #fff0 .00035%, #fff0 .00005%), repeating-conic-gradient(#fff2 0.00002%, #fff0 .00008%, #fff0 .0008%, #fff0 .00008%);
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
}

.wave-sand .wave::after {
    transform: rotate(180deg) scale(5);
    filter: none;
}

/* Ivory Section */
.ivory-section {
    background-color: transparent;
    padding: 120px 5%;
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
}

.ivory-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ivory-section h2 {
    font-size: 3.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.ivory-section p {
    font-size: 1.15rem;
    color: #4a5d56;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--ivory-dark);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.feature-item h3 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--ivory-dark);
    text-align: left;
    transition: var(--transition);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--dark-green);
    font-size: 1.1rem;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--dark-green);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--gold);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    color: #555;
    font-size: 1rem;
    margin-top: 15px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Dark Green Section */
.dark-section {
    background: url('image/dark_bg.png') center/cover no-repeat;
    background-color: var(--dark-green);
    padding: 60px 5% 150px;
    position: relative;
    color: var(--ivory);
    z-index: 1;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 36, 27, 0.85);
    z-index: -1;
}

.dark-section h2 {
    text-align: center;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.dark-section>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    border: 1px solid rgba(210, 180, 100, 0.2);
    display: flex;
    align-items: flex-end;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 36, 27, 0.95) 0%, rgba(8, 36, 27, 0.4) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-card:hover::before {
    background: linear-gradient(to top, rgba(8, 36, 27, 0.98) 0%, rgba(8, 36, 27, 0.6) 60%, transparent 100%);
}

.package-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition);
}

.package-card:hover .package-content {
    transform: translateY(0);
}

.package-card h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.package-card p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--dark-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-green);
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--ivory);
    padding: 60px 5% 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-section.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible,
.fade-in-bottom.is-visible {
    opacity: 1;
    transform: none;
}

/* Gallery Page Specifics */
.page-header {
    height: 60vh;
    background: linear-gradient(to bottom, rgba(8, 36, 27, 0.6), rgba(8, 36, 27, 0.4)), url('image/dark_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-header h1 {
    color: var(--gold);
    font-size: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .ivory-section h2,
    .dark-section h2 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}
/* About Page Redesign */
.editorial-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.drop-cap::first-letter {
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    color: var(--dark-green);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .editorial-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Glassmorphism Testimonial Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ivory) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.glass-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Light Testimonial Cards (With Amazing Hover) */
.testimonial-light-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(8, 36, 27, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(8, 36, 27, 0.03);
}

.testimonial-light-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.testimonial-light-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(8, 36, 27, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-light-card:hover::before {
    opacity: 0.08;
}

.testimonial-light-card .quote-icon {
    transition: transform 0.5s ease;
}

.testimonial-light-card:hover .quote-icon {
    transform: scale(1.2) rotate(-10deg);
}

.testimonial-light-card img {
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.testimonial-light-card:hover img {
    transform: scale(1.1);
    border-color: var(--dark-green) !important;
}

/* Contact Page Redesign */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 3.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.detail-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.detail-item .icon {
    background-color: var(--dark-green);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(8, 36, 27, 0.1);
}

.detail-item:hover .icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(8, 36, 27, 0.2);
    background-color: var(--gold);
    color: var(--dark-green);
}

.detail-item h4 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.detail-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.detail-item a {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--gold);
}

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(8, 36, 27, 0.05);
}

.contact-form-container h3 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    text-align: left;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0 10px;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-green);
    border: none;
    border-bottom: 2px solid rgba(8, 36, 27, 0.1);
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1.1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--gold);
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--gold);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info h2 {
        font-size: 2.8rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

/* Gallery Layout */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(8, 36, 27, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* Lightbox Styles */
#lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 36, 27, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

#lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--ivory);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--dark-green);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(8, 36, 27, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(8, 36, 27, 0.6);
    background-color: var(--gold);
    color: var(--dark-green);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navbar & Mobile Menu */
    nav {
        padding: 1.5rem 20px;
    }
    nav.scrolled {
        padding: 1rem 20px;
        backdrop-filter: none !important;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition);
        margin-right: 10px;
    }
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--ivory);
        border-radius: 3px;
        transition: var(--transition);
    }
    nav.scrolled .menu-toggle span {
        background-color: var(--ivory);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 36, 27, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 999;
        gap: 2.5rem;
    }
    .nav-links.active {
        right: 0 !important;
        display: flex !important;
    }
    .nav-links a {
        color: var(--ivory) !important;
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.8rem;
        font-style: italic;
        text-transform: capitalize;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.active a:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.5s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.6s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.7s; }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--ivory) !important;
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--ivory) !important;
    }

    /* Typography & Spacing */
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .hero-content {
        padding: 0 5%;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    /* Layouts */
    .split-layout {
        flex-direction: column;
    }
    .split-image {
        min-height: 300px;
    }
    .shikara-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}
