:root {
    --primaryColor: #738678;
    /* Sage green background */
    --accentColor: #023020;
    /* Deep forest green for accent text */
    --textColor: #ffffff;
    --darkText: #1a1a1a;
    --lightGray: #f4f4f4;
    --transition: all 0.4s ease;
}

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

body {
    background-color: var(--primaryColor);
    color: var(--textColor);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Background Patterns */
.bg-strip {
    background-color: var(--primaryColor);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Square grid size */
}

.bg-dot {
    background-color: var(--primaryColor);
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header Redesign - Floating Premium Glass Pill */
.mainHeader {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 10px 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 2500;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.headerLogo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.mainHeader.scrolled {
    top: 10px;
    width: 90%;
    background: rgba(0, 0, 0, 0.85);
    padding: 8px 40px;
}

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logoText {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: none;
    /* Changed from uppercase */
    line-height: 1;
}

.logoText .accentText {
    color: #D4AF37 !important;
    /* Gold for logo */
    font-style: normal;
}

@media (max-width: 768px) {
    .logoText {
        font-size: 1.1rem;
    }
}

.desktopNav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.desktopNav ul li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.desktopNav ul li a:hover {
    color: #D4AF37;
    letter-spacing: 1.5px;
    /* Dynamic interaction */
}

.desktopNav ul li a.active {
    color: #D4AF37;
}

.desktopNav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.desktopNav ul li a:hover::after,
.desktopNav ul li a.active::after {
    width: 20px;
    /* Small gold dot/line effect */
}

.headerCTA {
    background: #D4AF37;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.headerCTA:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Removed legacy shine effect */

.headerActions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobileMenuToggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.mobileMenuToggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mobileMenuToggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobileMenuToggle.active span:nth-child(2) {
    opacity: 0;
}

.mobileMenuToggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobileNavOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 48, 32, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobileNavOverlay.active {
    display: flex;
    transform: translateY(0);
}



.mobileNavHeader {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3100;
}

.mobileLogo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.mobileMenuClose {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobileMenuClose:hover {
    background: #D4AF37;
    color: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.mobileNavLinks {
    list-style: none;
    text-align: center;
}

.mobileNavLinks li {
    margin: 18px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobileNavOverlay.active .mobileNavLinks li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation */
.mobileNavOverlay.active .mobileNavLinks li:nth-child(1) {
    transition-delay: 0.2s;
}

.mobileNavOverlay.active .mobileNavLinks li:nth-child(2) {
    transition-delay: 0.3s;
}

.mobileNavOverlay.active .mobileNavLinks li:nth-child(3) {
    transition-delay: 0.4s;
}

.mobileNavOverlay.active .mobileNavLinks li:nth-child(4) {
    transition-delay: 0.5s;
}

.mobileNavOverlay.active .mobileNavLinks li:nth-child(5) {
    transition-delay: 0.6s;
}

.mobileNavOverlay.active .mobileNavLinks li:nth-child(6) {
    transition-delay: 0.7s;
}

.mobileNavLinks li a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.mobileNavLinks li a:hover {
    color: #D4AF37;
}

.mobileNavFooter {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
}

.mobileSocials {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.5rem;
    color: #ffffff;
}

.mobileSocials a:hover {
    color: #D4AF37;
}

@media (max-width: 1024px) {
    .mobileMenuToggle {
        display: flex;
    }

    .desktopNav {
        display: none;
    }

    .headerCTA {
        padding: 8px 20px;
        font-size: 0.7rem;
    }
}

.heroSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
        url('/frontend/images/hero1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Global visibility boost */
}

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

.tagline {
    display: inline-block;
    font-size: 0.85rem;
    /* Standardized size */
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e0e0e0;
    margin-bottom: 5px;
    /* Reduced spacing to bring title closer */
}

.heroTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    /* Standardized with other sections */
    line-height: 1.2;
    margin-bottom: 25px;
}



.accentText {
    color: var(--accentColor);
    font-style: italic;
}

.pageHero .accentText,
.heroTitle .accentText {
    color: #ffffff;
}

.heroSubtext {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 500px;
    font-family: 'Roboto', sans-serif;
}

.heroButton,
.aboutButton {
    display: inline-block;
    padding: 15px 35px;
    background-color: #023020;
    /* Deep Forest Green */
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.heroButton:hover,
.aboutButton:hover {
    transform: scale(1.05);
    background-color: #054d34;
    box-shadow: 0 10px 20px rgba(2, 48, 32, 0.3);
}

@media (max-width: 991px) {
    .heroContainer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .heroContent {
        order: 2;
    }

    .heroImageWrapper {
        order: 1;
        justify-content: center;
    }

    .heroTitle {
        font-size: 2.8rem;
    }

    .heroSubtext {
        margin-left: auto;
        margin-right: auto;
    }
}

.heroImageWrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mainHeroImage {
    position: relative;
    width: 70%;
    max-width: 450px;
    aspect-ratio: 3.5 / 5;
    /* Elegant portrait ratio */
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid #D4AF37;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mainHeroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.mainHeroImage:hover {
    transform: none;
    /* Keep card fixed as requested */
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

/* Glowing background effect behind the card on hover */
.mainHeroImage::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(15px);
    border-radius: 50px;
}

.mainHeroImage:hover::before {
    opacity: 1;
}

.mainHeroImage:hover img {
    transform: scale(1.05);
    /* Slight internal zoom only */
}

/* Floating decorative element for the hero card */
.mainHeroImage::after {
    content: 'PREMIUM ARTISTRY';
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: #D4AF37;
    color: #fff;
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section (Centered Image Layout) */
.whyChooseUs {
    padding: 60px 5%;
    background-color: var(--primaryColor);
    color: #ffffff;
}

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

.whyTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.whyDesc {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.whyGridCentered {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.whyColumn {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.whyCenterImage {
    display: flex;
    justify-content: center;
}

.whyCenterImage img {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.whyFeatureBox {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.whyIconBox {
    width: 60px;
    height: 60px;
    background-color: #f8f6f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.whyIconBox i,
.whyIconBox svg {
    width: 26px;
    height: 26px;
    color: #2d6a4f;
    /* Vibrant elegant green */
}

.whyFeatureBox:hover .whyIconBox {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.whyTextBox h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.whyTextBox p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .whyGridCentered {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .whyFeatureBox {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .whyIconBox {
        margin-bottom: 15px;
    }

    .whyCenterImage {
        order: -1;
        margin-bottom: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .whyTextBox {
        text-align: center;
    }
}

/* About Section (Image 2 Layout - Clean Aesthetic) */
/* About Section (Editorial Layout - Exact Match) */
.aboutSection {
    padding: 60px 5%;
    position: relative;
}

.aboutClean .aboutContainer {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    /* Vertically center image and text */
    max-width: 1300px;
    margin: 0 auto;
}

.aboutContentSide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Prevent stretching of buttons */
    text-align: left;
}

.aboutClean .tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.aboutClean .aboutTitle {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    /* Balanced size */
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: none;
}

.aboutClean .aboutText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    /* Justify as requested */
}

.btnGroup {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.aboutImageSide {
    position: relative;
    z-index: 20;
}

.aboutArtistImg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    /* Fill the space like a raw image, not a card */
    border-radius: 0;
    box-shadow: none;
    display: block;
}

@media (max-width: 1024px) {
    .aboutImageSide {
        margin-top: 0;
    }

    .aboutClean .aboutContainer {
        grid-template-columns: 1fr;
    }

    .aboutContentSide {
        padding-top: 40px;
        text-align: center;
        order: 2;
    }

    .aboutImageSide {
        order: 1;
    }

    .aboutClean .aboutTitle {
        font-size: 3.5rem;
    }
}


/* Services Section (Image 3 Layout) */
.servicesSection {
    padding: 60px 5%;
}

.serviceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.serviceCard {
    background: linear-gradient(160deg, #b8c6bb 0%, #738678 100%);
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid #D4AF37;
    /* Golden border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.serviceCard:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
    /* Golden glow */
    border-color: #D4AF37;
}

.cardImgBox {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.1);
    /* Fallback */
}

.cardImgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s ease;
}

.serviceCard:hover .cardImgBox img {
    transform: scale(1.15);
}

.serviceCard h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    transition: var(--transition);
}

.serviceCard:hover h3 {
    color: #023020;
    transform: translateY(-5px);
}

.cardButton {
    display: inline-block;
    padding: 12px 30px;
    background-color: #023020;
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.serviceCard:hover .cardButton {
    background-color: #fff;
    color: #023020;
    border-color: #023020;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faqSection {
    padding: 60px 5%;
}

.sectionHeader,
.testimonialHeader {
    text-align: center;
    margin-bottom: 60px;
}

/* FAQ Section (Staggered/Zig-Zag Design) */
.faqSection {
    padding: 60px 5%;
}

.faqContainer {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqItem {
    width: 75%;
    background: linear-gradient(135deg, #023020 0%, #054d34 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Staggering Logic */
.faqItem:nth-child(odd) {
    align-self: flex-start;
    text-align: left;
}

.faqItem:nth-child(even) {
    align-self: flex-end;
    text-align: left;
    /* Keep text left aligned inside the card */
}

.faqQuestion {
    padding: 20px 30px;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.faqIcon {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: transform 0.4s ease;
}

.faqItem.active .faqIcon {
    transform: rotate(180deg);
}

.faqAnswer {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    transition: all 0.5s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faqItem.active .faqAnswer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 25px;
}



.faqItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Final CTA Section (Premium Background Image Design) */
.finalCTA {
    position: relative;
    padding: 160px 5%;
    background-image: linear-gradient(rgba(2, 48, 32, 0.8), rgba(0, 0, 0, 0.85)), url('images/bridal1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    text-align: center;
    overflow: hidden;
}

.finalCTA .ctaContainer {
    max-width: 900px;
    margin: 0 auto;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    padding: 0;
}

.ctaTitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ctaText {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.finalCTA .btnGroup {
    justify-content: center;
}

.finalCTA .heroButton {
    padding: 18px 45px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.finalCTA .aboutButtonOutline {
    border-color: rgba(255, 255, 255, 0.5);
}

.finalCTA .accentText {
    color: #ffffff;
    /* Make white for visibility on dark BG */
}

.faqItem p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #f0f0f0;
}

/* Gallery Section */
.gallerySection {
    padding: 60px 5%;
}

.masonryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.galleryItem {
    overflow: hidden;
    border-radius: 20px;
}

.galleryItem img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.galleryItem:hover img {
    transform: scale(1.1);
}



/* Testimonial Reels Section */
.videoSection {
    padding: 60px 5%;
    background-color: var(--primaryColor);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reelContainer {
    width: 100%;
    overflow: hidden;
    /* Hide scrollbar for marquee */
    padding: 40px 0;
}

.reelScroll {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.testimonialReel {
    position: relative;
    width: 320px;
    height: 600px;
    /* Slightly taller for CTA */
    border-radius: 30px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    background: #000;
}

.reelMedia {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.testimonialReel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.playOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.reelInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    z-index: 10;
    text-align: left;
    transition: 0.3s ease;
}

.testimonialReel.playing .reelInfo {
    opacity: 0.3;
    /* Fade out info while playing */
}

.testimonialReel.playing .reelInfo:hover {
    opacity: 1;
}

.cardCTA {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--accentColor);
    color: #fff;
    text-align: center;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
    transition: var(--transition);
}

.cardCTA:hover {
    background: #084d2b;
    transform: scale(1.02);
}

.reelIframe {
    width: 100%;
    height: 100%;
    border: none;
}

.stars {
    color: #25d366;
    /* Vibrant Green Stars */
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.username {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 10px;
    font-weight: 400;
}

.quote {
    font-size: 0.95rem;
    line-height: 1.4;
    font-style: italic;
    color: #fff;
    font-weight: 300;
}



/* Testimonial Section (Mini Overlapping Style) */
.testimonialSection {
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonialHeader {
    margin-bottom: 40px;
}



.testimonialSlider {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar */
}

.testimonialSlider::-webkit-scrollbar {
    display: none;
}

.testimonialTrack {
    display: flex;
    gap: 150px;
    /* Large spacing as requested */
    padding: 0 10%;
    /* Side padding to see next cards */
    width: max-content;
}

.testimonialSlide {
    scroll-snap-align: center;
    width: 450px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .testimonialSlide {
        width: 85vw;
        /* Responsive width on mobile */
    }

    .testimonialTrack {
        gap: 30px;
        /* Reduced gap on mobile */
    }

    .clientPortrait {
        width: 100px;
        /* Smaller portrait */
        height: 100px;
        margin-right: -30px;
    }

    .testimonialTextBox {
        padding: 20px 20px 20px 45px;
    }
}

.testimonialCard {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.clientPortrait {
    width: 130px;
    /* Mini portrait */
    height: 130px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    margin-right: -40px;
    /* Reduced overlap */
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primaryColor);
}

.clientPortrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.testimonialTextBox {
    padding: 30px 30px 30px 60px;
    border: 1px solid #D4AF37;
    border-radius: 16px;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    max-width: 450px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.testimonialSlide:hover .testimonialTextBox {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    background: rgba(0, 0, 0, 0.2);
}

.testimonialSlide:hover .clientPortrait {
    transform: scale(1.05);
    border-color: #D4AF37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.clientPortrait {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    margin-right: -40px;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primaryColor);
    transition: all 0.3s ease;
}

.clientPortrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialQuote {
    font-size: 0.9rem;
    /* Smaller font */
    line-height: 1.5;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

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

.clientStars {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.clientName {
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
}



/* Premium Footer Redesign */
.mainFooter {
    position: relative;
    background-image: linear-gradient(rgba(2, 48, 32, 0.95), rgba(0, 0, 0, 0.95)), url('/frontend/images/hero1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 80px 5% 60px;
    /* Increased bottom padding */
    overflow: hidden;
}

.footerOverlay {
    display: none;
    /* Keep overlay hidden as we use gradient on background-image */
}

.footerContainer {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    z-index: 2;
}

.footerBrand .footerLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footerBrand .footerLogo i {
    font-size: 2rem;
    color: #023020;
    /* Deep green instead of vibrant green */
    background: rgba(2, 48, 32, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.footerBrand .footerLogo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footerBrand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 350px;
}

.socialIcons {
    display: flex;
    gap: 12px;
}

.socialIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition);
}

.socialIcon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transform: translateY(-5px);
}

.footerLinks h4,
.footerContact h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: none;
}

.footerLinks ul li {
    margin-bottom: 18px;
}

.footerLinks ul li a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 400;
    text-decoration: none;
}

.footerLinks ul li a:hover {
    color: #ffffff !important;
    opacity: 1;
}

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

.contactItem {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #ffffff;
}

.contactItem i {
    margin-top: 5px;
    font-size: 1rem;
    color: #ffffff;
}

.contactItem p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
}

.footerBottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footerBottomContent {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ffffff;
}

.footerBottomLinks {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footerBottomLinks a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footerBottomLinks a:hover {
    color: #ffffff !important;
    opacity: 1;
}

@media (max-width: 1024px) {
    .footerContainer {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footerContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footerBottomContent {
        flex-direction: column;
        text-align: center;
    }
}



/* Gallery Auto-Slide Marquee */
.gallerySection {
    padding: 60px 0;
    overflow: hidden;
}

.galleryWrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.galleryTrack {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: galleryMarquee 40s linear infinite;
}

.galleryItem {
    width: 350px;
    height: 450px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.galleryItem:hover img {
    transform: scale(1.1);
}

@keyframes galleryMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Pause on hover */
.galleryWrapper:hover .galleryTrack {
    animation-play-state: paused;
}

/* Blog Section */
.blogSection {
    padding: 60px 5%;
}

.blogHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blogMainTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
}

.blogTitleDivider {
    width: 60px;
    height: 3px;
    background-color: var(--accentColor);
    margin-top: 15px;
}

.viewAllBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    transition: var(--transition);
}

.viewAllBtn:hover {
    gap: 15px;
    color: var(--accentColor);
}

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

.featuredBlog {
    background: rgba(2, 48, 32, 0.4);
    /* Darker green for card */
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    /* Golden border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.featuredImage {
    height: 350px;
    overflow: hidden;
}

.featuredImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featuredBlog:hover .featuredImage img {
    transform: scale(1.05);
}

.featuredContent {
    padding: 30px;
}

.blogDate {
    display: inline-block;
    padding: 6px 16px;
    background: #fdf2e9;
    /* Light peach background like screenshot */
    color: #d35400;
    /* Deep orange text */
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 15px;
}

.featuredContent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.featuredContent p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.blogList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blogListItem {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
    padding: 20px;
    background: rgba(2, 48, 32, 0.4);
    /* Darker green card */
    border-radius: 20px;
    border: 2px solid #D4AF37;
    /* Golden border */
    transition: var(--transition);
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blogListItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    /* Golden glow on hover */
}

.blogItemText h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 10px 0;
    color: #fff;
    transition: var(--transition);
    line-height: 1.3;
}

.blogItemText p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogItemThumb {
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blogItemThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogListItem:hover .blogItemThumb img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {

    .heroContainer,
    .aboutContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heroTitle {
        font-size: 2.5rem;
    }

    .heroSubtext {
        margin: 0 auto 40px;
    }

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


}

@media (max-width: 768px) {
    .serviceGrid {
        grid-template-columns: 1fr;
    }

    .desktopNav {
        display: none;
    }


}

/* Image Modal (Lightbox) */
.imageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.imageModal.active {
    opacity: 1;
    visibility: visible;
}

.imageModalContent {
    max-width: 90%;
    max-height: 85vh;
    transform: scale(0.9);
    transition: var(--transition);
}

.imageModal.active .imageModalContent {
    transform: scale(1);
}

.imageModalContent img {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.closeImageModal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3010;
    transition: var(--transition);
}

.closeImageModal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Video Modal */
.simpleViewAll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.simpleViewAll i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.simpleViewAll:hover {
    color: var(--accentColor);
    /* Deep Forest Green as seen in Blog */
    gap: 15px;
    /* Animated gap like Blog */
}

.simpleViewAll:hover i {
    transform: none;
    /* Gap handles the spacing now */
}

.videoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.videoModal.active {
    opacity: 1;
    visibility: visible;
}

.modalContent {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: var(--transition);
}

.videoModal.active .modalContent {
    transform: scale(1);
}

.iframeContainer {
    width: 100%;
    height: 100%;
}

.iframeContainer iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 2010;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.closeModal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modalContent {
        max-width: 100%;
        height: 80vh;
        aspect-ratio: auto;
    }
}

/* --- About Us Page Specific Styles --- */

.aboutHero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(2, 48, 32, 0.7), rgba(0, 0, 0, 0.7)), url('/frontend/images/hero1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.aboutHero .heroTitle {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.breadcrumb a {
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #D4AF37;
}

.breadcrumb .separator {
    opacity: 0.5;
}

.breadcrumb .current {
    color: #D4AF37;
    font-weight: 600;
}

/* Journey Section */
.journeySection {
    padding: 60px 5%;
}

.journeyContainer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.journeyImage {
    position: relative;
}

.journeyImage img {
    width: 100%;
    display: block;
}

.experienceBadge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #D4AF37;
    color: #023020;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.experienceBadge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experienceBadge .text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.statGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.statItem h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 5px;
}

.statItem p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.valuesSection {
    padding: 60px 5%;
}

.valuesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.valueCard {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.valueImage {
    width: 100%;
    height: 100%;
}

.valueImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.valueOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.valueContent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Pin content to bottom */
    color: #fff;
    z-index: 2;
    transition: all 0.5s ease;
}

.valueContent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 0;
    color: #fff;
    transition: transform 0.5s ease;
}

.valueContent p {
    opacity: 0;
    max-height: 0;
    /* Collapsed by default */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}

.valueCard:hover .valueImage img {
    transform: scale(1.1);
}

.valueCard:hover .valueContent p {
    opacity: 1;
    max-height: 100px;
    /* Reveal on hover */
    margin-top: 15px;
}

.valueCard:hover .valueOverlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.95) 100%);
}

.valueCard:hover .valueContent h3 {
    transform: translateY(0);
    /* Stay at bottom */
}

/* Artist Deep Dive */
.artistSection {
    padding: 60px 5%;
}

.artistContainer {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.artistImgMain {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {

    .journeyContainer,
    .artistContainer {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .journeyContent,
    .artistContent {
        order: 2;
    }

    .journeyImage,
    .artistImage {
        order: 1;
    }

    .experienceBadge {
        right: 10px;
        bottom: 10px;
    }

    .aboutHero .heroTitle {
        font-size: 3rem;
    }
}

/* --- Magazine Style Layout --- */
.magazineLayout {
    padding: 60px 5%;
    /* Compact padding */
    position: relative;
    overflow: hidden;
}

.magazineContainer {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.magazineGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.verticalTitle {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.verticalTitle span {
    font-size: 13rem;
    /* Balanced size */
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 0.82;
    /* Better breathing room */
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(2, 48, 32, 0.4);
    letter-spacing: -5px;
    display: block;
}

.magazineLeft {
    position: relative;
    z-index: 3;
}

.editorialTag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: -10px;
}

.editorialTitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #fff;
    /* Changed from gold to white */
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Ensure accentText in magazine is consistent */
.magazineLayout .accentText {
    color: var(--accentColor);
    /* Dark Green */
    font-style: italic;
}

.magazineContent {
    max-width: 450px;
}

.magazineContent .aboutText {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Polaroid Group */
.polaroidGroup {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.polaroid {
    width: 130px;
    height: 160px;
    background: #fff;
    padding: 10px 10px 30px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid-1 {
    transform: rotate(-8deg);
}

.polaroid-2 {
    transform: rotate(5deg) translateY(-20px);
}

.polaroid-3 {
    transform: rotate(-5deg);
}

.polaroid:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
}

/* Magazine Right */
.magazineRight {
    position: relative;
}

.mainEditorialImage {
    position: relative;
    display: block;
}

.mainEditorialImage img {
    width: 100%;
    display: block;
}

.verticalBadge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #D4AF37;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
    z-index: 5;
}

@media (max-width: 1024px) {
    .magazineGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .verticalTitle {
        font-size: 12rem;
        left: 50%;
        letter-spacing: -5px;
    }

    .magazineContent {
        max-width: 100%;
        margin: 0 auto;
    }

    .polaroidGroup {
        justify-content: center;
    }

    .editorialTag {
        font-size: 2.5rem;
    }

    .verticalBadge {
        display: none;
    }
}

/* Credentials Section Redesign - Refined Size */
.credentialsSection {
    padding: 60px 5%;
    text-align: center;
    background-color: var(--primaryColor);
}

.statGrid.threeCols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.statItem {
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.statIcon {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #023020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.statNumber {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    /* Reduced from 4.5rem */
    font-weight: 700;
    color: #023020;
    line-height: 1;
}

.statSuffix {
    font-size: 1.8rem;
    /* Reduced from 2.5rem */
    color: #023020;
    font-weight: 300;
}

.statItem p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    /* Smaller text */
    color: rgba(2, 48, 32, 0.8);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .statGrid.threeCols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Final CTA Section with Parallax Background */
.finalCTA {
    padding: 100px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/frontend/images/bridal1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    text-align: center;
    color: #ffffff;
    position: relative;
}

.finalCTA .ctaContainer {
    max-width: 850px;
    margin: 0 auto;
}

.finalCTA .ctaTitle {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.finalCTA .ctaText {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .finalCTA {
        padding: 80px 5%;
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .finalCTA .ctaTitle {
        font-size: 2rem;
    }
}

/* Page Hero Shared Component */
.pageHero {
    padding: 120px 5% 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.pageHeroContent {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pageTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
    /*margin-bottom: 20px;*/
}

.pageSubtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Page Grid */
.galleryPageSection {
    padding: 60px 5% 100px;
    /* Reduced top padding from 100px */
}

.galleryContainer {
    max-width: 1400px;
    margin: 0 auto;
}

.masonryGrid {
    display: grid;
    /* Already updated this, ensuring consistency */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.masonryGrid .galleryItem {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Contact Page Section */
.contactSection {
    padding: 60px 5%;
}

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

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.contactInfoBox h2 {
    margin-bottom: 20px;
}

.contactDetails {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contactDetailItem {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detailIcon {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #023020;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detailText h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.detailText p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.socialConnect {
    margin-top: 50px;
}

.socialConnect h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Booking Form */
.contactFormBox {
    background: #fff;
    padding: 30px;
    /* Smaller padding */
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.formHeader {
    margin-bottom: 25px;
}

.formHeader h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--darkGreen);
    margin-bottom: 5px;
}

.formHeader p {
    color: #777;
    font-size: 0.85rem;
}

.bookingForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Tighter gap */
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.formGroup {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.formGroup label {
    font-size: 0.75rem;
    /* Smaller label */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--darkGreen);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 12px 18px;
    /* Compact padding */
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    transition: var(--transition);
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    background: #fff;
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.08);
}

.formGroup textarea {
    height: 100px;
    /* Shorter textarea */
    resize: none;
}

.submitBtn {
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    /* Compact button */
    font-size: 0.95rem;
}

.submitBtn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Toast Notification Popup */
.contactToast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #023020;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 320px;
}

.contactToast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toastIcon {
    width: 30px;
    height: 30px;
    background: #D4AF37;
    color: #023020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contactToast p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submitBtn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

@media (max-width: 1200px) {
    .contactGrid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .contactFormBox {
        padding: 25px;
    }
}

/* --- Gallery Page Tabs --- */
.galleryTabsContainer {
    padding: 0 5% 20px;
    /* Reduced padding for tighter spacing */
    display: flex;
    justify-content: center;
    background: transparent;
}

.galleryTabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 5px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.tabBtn {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.95rem;
}

.tabBtn i {
    font-size: 1.1rem;
}

.tabBtn.active {
    background: #ffffff;
    color: #023020;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tabBtn.active i {
    color: #023020;
    /* Dark Green to match the theme */
}

/* Specific icon colors based on user's request */
.tabBtn[data-target="photosTab"].active i {
    color: #023020;
}

.tabBtn[data-target="videosTab"].active i {
    color: #023020;
}

.tabBtn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tabContent {
    display: none;
    animation: fadeInTab 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.tabContent.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4-Column Uniform Grid */
.masonryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px 0 60px;
}

.videoGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Make video reels responsive in gallery */
.tabContent .testimonialReel {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
}

.masonryGrid .galleryItem {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    /* Portrait aspect ratio for better makeup shots */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonryGrid .galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonryGrid .galleryItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.masonryGrid .galleryItem:hover img {
    transform: scale(1.1);
}

/* Subtle overlay on hover */
.masonryGrid .galleryItem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(2, 48, 32, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonryGrid .galleryItem:hover::after {
    opacity: 1;
}

@media (max-width: 1100px) {
    .masonryGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .masonryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .masonryGrid {
        grid-template-columns: 1fr;
    }
}

.videoSection.inGallery {
    padding-top: 40px;
}

/* --- Blog Page Styles --- */
.blogArchiveContainer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 5%;
}

.featuredBlogLarge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(2, 48, 32, 0.4);
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featuredBlogImg {
    height: 100%;
    min-height: 400px;
}

.featuredBlogImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featuredBlogTxt {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blogTag {
    display: inline-block;
    padding: 6px 16px;
    background: #D4AF37;
    color: #023020;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 5px;
    margin-bottom: 20px;
    width: max-content;
}

.featuredBlogTxt h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.featuredBlogTxt p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.blogMeta {
    display: flex;
    gap: 15px;
    color: #D4AF37;
    font-size: 0.85rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.readMoreBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    transition: var(--transition);
}

.readMoreBtn:hover {
    color: #D4AF37;
    gap: 15px;
}

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

.blogCard {
    background: rgba(2, 48, 32, 0.4);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.blogCard:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.blogCardImg {
    height: 250px;
    overflow: hidden;
}

.blogCardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blogCard:hover .blogCardImg img {
    transform: scale(1.1);
}

.blogCardBody {
    padding: 30px;
}

.blogCardBody h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blogCardBody p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blogCardLink {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .featuredBlogLarge {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .blogArchiveGrid {
        grid-template-columns: 1fr;
    }

    .featuredBlogTxt {
        padding: 40px 30px;
    }

    .featuredBlogTxt h2 {
        font-size: 2rem;
    }
}

/* --- Testimonial Page Styles --- */
.testimonialPageContainer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 5%;
}

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

.feedbackGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feedbackCard {
    background: rgba(2, 48, 32, 0.4);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.feedbackCard:hover {
    border-color: #D4AF37;
    background: rgba(2, 48, 32, 0.6);
}

.feedbackHeader {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.clientImg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #D4AF37;
}

.clientImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clientMeta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.feedbackText {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .testimonialReelGrid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 600px) {
    .testimonialReelGrid {
        grid-template-columns: 1fr;
    }
}

/* Light Theme for Blog and Testimonials */
.light-theme {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

.light-theme .blogArchiveSection,
.light-theme .testimonialPageSection,
.light-theme .writtenTestimonials,
.light-theme .blogArchiveContainer,
.light-theme .testimonialPageContainer {
    background: #ffffff !important;
}

.light-theme .aboutTitle,
.light-theme .clientMeta h4,
.light-theme .testimonialQuote {
    color: #023020 !important;
}

.light-theme .feedbackCard,
.light-theme .testimonialCard {
    background: #f9f9f9 !important;
    border: 1px solid rgba(2, 48, 32, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.light-theme .tagline {
    color: #023020 !important;
}

.light-theme .readMoreBtn,
.light-theme .blogCardLink,
.light-theme .clientName {
    color: #D4AF37 !important;
}

.light-theme .bg-dot,
.light-theme .bg-strip {
    background-image: none !important;
}

.light-theme .testimonialSlider {
    background: #fdfdfd !important;
    padding: 60px 40px !important;
    border-radius: 40px !important;
}

.light-theme .testimonialTextBox {
    color: #1a1a1a !important;
}

.light-theme .clientPortrait {
    border-color: #023020 !important;
}

/* Maintain dark blog cards on white background */
.light-theme .blogCard,
.light-theme .featuredBlogLarge {
    background: #023020 !important;
    border: 1.5px solid #D4AF37 !important;
}

.light-theme .blogCard h3,
.light-theme .featuredBlogTxt h2 {
    color: #ffffff !important;
}

.light-theme .blogCard p,
.light-theme .featuredBlogTxt p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.light-theme .blogMeta span {
    color: #D4AF37 !important;
}



/* --- MODAL STYLES --- */
.videoModal, .imageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.videoModal.active, .imageModal.active {
    display: flex;
    opacity: 1;
}

.modalContent, .imageModalContent {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.videoModal.active .modalContent, 
.imageModal.active .imageModalContent {
    transform: scale(1);
}

.iframeContainer {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.iframeContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.closeModal, .closeImageModal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 4100;
}

.imageModalContent img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

/* Theme color fix for Watch the Magic */
.bg-theme-green {
    background-color: #023020 !important;
}

.light-theme .blogMeta span {
    color: #D4AF37 !important;
}




.light-theme .blogCard p,
.light-theme .featuredBlogTxt p {
    color: rgba(255, 255, 255, 0.8) !important;
}



/* ============================================================
   PROFESSIONAL EDITOR CONTENT STYLING (.quill-content)
   ============================================================ */
.quill-content {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

/* Headings */
.quill-content h1, 
.quill-content h2, 
.quill-content h3, 
.quill-content h4 {
    font-family: 'Playfair Display', serif;
    color: #023020;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.quill-content h1 { font-size: 2.25rem; }
.quill-content h2 { font-size: 1.85rem; }
.quill-content h3 { font-size: 1.5rem; }
.quill-content h4 { font-size: 1.25rem; }

/* Paragraphs & Text */
.quill-content p {
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.quill-content strong {
    color: #023020;
    font-weight: 700;
}

/* Lists */
.quill-content ul, 
.quill-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.quill-content ul {
    list-style-type: none;
}

.quill-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.quill-content ul li::before {
    content: "•";
    color: #D4AF37;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.quill-content ol {
    list-style-type: decimal;
}

.quill-content ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Nesting support */
.quill-content ul ul, 
.quill-content ol ol, 
.quill-content ul ol, 
.quill-content ol ul {
    margin-top: 0.75rem;
    margin-left: 1rem;
}

/* Tables */
.quill-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.quill-content table th,
.quill-content table td {
    padding: 12px 15px;
    border: 1px solid #edf2f7;
    text-align: left;
}

.quill-content table th {
    background-color: #f8fafc;
    color: #023020;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.quill-content table tr:nth-child(even) {
    background-color: #fdfdfd;
}

/* Images & Media */
.quill-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Blockquotes */
.quill-content blockquote {
    border-left: 4px solid #D4AF37;
    padding: 1.5rem 2rem;
    background: #fdfaf0;
    font-style: italic;
    color: #023020;
    margin: 2.5rem 0;
    border-radius: 0 10px 10px 0;
    font-size: 1.1rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .quill-content h1 { font-size: 1.75rem; }
    .quill-content h2 { font-size: 1.5rem; }
    .quill-content h3 { font-size: 1.25rem; }
    
    .quill-content {
        font-size: 0.95rem;
    }

    .quill-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* --- MOBILE MENU STYLES --- */
.mobileMenuToggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 3000;
}

.mobileMenuToggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #D4AF37; /* Theme Gold */
    transition: all 0.3s ease;
}

.mobileNavOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 48, 32, 0.98); /* var(--accentColor) equivalent */
    z-index: 2800;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobileNavOverlay.active {
    opacity: 1;
    visibility: visible;
}

.mobileNavLinks {
    list-style: none;
    padding: 0;
}

.mobileNavLinks li {
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobileNavOverlay.active .mobileNavLinks li {
    transform: translateY(0);
    opacity: 1;
}

.mobileNavLinks a {
    color: var(--textColor);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobileNavLinks a:hover {
    color: #D4AF37;
    letter-spacing: 4px;
}

/* Toggle Active Animation */
.mobileMenuToggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobileMenuToggle.active span:nth-child(2) {
    opacity: 0;
}
.mobileMenuToggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .mobileMenuToggle {
        display: flex;
    }
}

body.no-scroll {
    overflow: hidden;
}



/* Pagination Styling */
.paginationContainer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.paginationContainer nav {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paginationContainer .relative.inline-flex {
    border: none;
}

.paginationContainer span,
.paginationContainer a {
    color: white !important;
    background: transparent !important;
    border: none !important;
    margin: 0 5px;
    border-radius: 4px;
}

.paginationContainer a:hover {
    color: #D4AF37 !important;
}

.paginationContainer [aria-current="page"] span {
    background: #D4AF37 !important;
    color: #17384d !important;
    border-radius: 4px;
}

/* Mobile Sticky CTA Bar */
.mobileFloatingCTA {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(2 48 32);
    /* Brand Dark Blue with slight transparency */
    backdrop-filter: blur(10px);
    padding: 12px 15px env(safe-area-inset-bottom);
    z-index: 2500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.mobileFloatingCTA .flex {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobileFloatingCTA a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobileFloatingCTA a.bg-black {
    background: #ffffff !important;
    color: #17384d !important;

}

.mobileFloatingCTA a.bg-green-500 {
    background: #25D366 !important;
    color: white !important;
}

.mobileFloatingCTA a:active {
    transform: scale(0.96);
}

/* Image Fitting Fixes */
.clientPortrait img,
.galleryItem img,
.serviceCard img,
.aboutArtistImg img,
.featuredImage img,
.blogItemThumb img,
.whyCenterImage img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

/* Specific aspect ratios for consistency */
.clientPortrait {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.galleryItem {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
}

.serviceCard .serviceImage {
    height: 250px;
    overflow: hidden;
}

.blogItemThumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
}


/* --- COMPREHENSIVE MOBILE RESPONSIVENESS & CENTERING --- */
@media (max-width: 768px) {

    /* Layout & Containers */
    .servicesSection,
    .blogSection,
    .videoSection,
    .aboutSection,
    .gallerySection,
    .faqSection,
    .ctaSection {
        padding: 60px 20px !important;
        text-align: center !important;
    }

  /* whychoose  */
    .whyTitle {
        font-size: 1.8rem !important;
    }
    
    /* Grids */
    .serviceGrid,
    .blogGrid,
    .blogArchiveGrid,
    .masonryGrid,
    .feedbackGrid,
    .testimonialReelGrid {
        grid-template-columns: 1fr !important;
        column-count: 1 !important;
        gap: 30px !important;
    }

    /* Service Cards Centering */
    .serviceCard {
        max-width: 320px;
        margin: 0 auto !important;
    }

    /* Blog Cards */
    .featuredBlog {
        height: auto !important;
    }

    .featuredImage {
        height: 250px !important;
    }

    .blogListItem {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }

    .blogItemThumb {
        width: 100% !important;
        height: 180px !important;
        order: -1 !important;
        margin-bottom: 20px !important;
    }

    /* Testimonial Slider Fixes */
    .testimonialSlider {
        padding: 20px 0 !important;
    }

    .testimonialTrack {
        gap: 20px !important;
        padding: 0 5% !important;
    }

    .testimonialSlide {
        width: 85vw !important;
    }

    .testimonialCard {
        padding: 30px 20px !important;
    }

    /* Video Reels Fixes */
    .testimonialReel {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        height: auto !important;
    }

    /* Typography */
    .aboutTitle {
        font-size: 1.8rem !important;
    }

    .blogMainTitle {
        font-size: 1.2rem !important;
    }

    .heroTitle {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .testimonialSlide {
        width: 90vw !important;
    }

    .testimonialReel {
        width: 260px !important;
        height: 460px !important;
    }
}


light-theme .blogCard p,
.light-theme .featuredBlogTxt p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.light-theme .blogMeta span {
    color: #D4AF37 !important;
}


/* Custom code for Editor Anchor Tags */
.quill-content a,
.luxury-article a {
    color: #D4AF37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.quill-content a:hover,
.luxury-article a:hover {
    color: #B8860B;
}