/* ==========================================
   AMOUR SANSKRITI - LUXURY BENGALI HERITAGE
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lato:wght@400;500;700&family=Montserrat:wght@500;600;700&display=swap');

:root {
    /* Backgrounds - Warm Ivory/Cream Palette */
    --bg-main: #FBF6EF;
    --bg-light: #F6EBDD;
    --bg-card: #FBF6EF;
    --bg-secondary: #F6EBDD;

    /* Brand - Bengal Maroon */
    --primary: #7A0E2D;
    --primary-dark: #5D0A22;
    --burgundy: #8B1538;

    /* Gold - Antique & Light */
    --gold: #B58A43;
    --gold-light: #D8B06A;
    --champagne: #EFD9B0;
    --decorative-gold: #C9A25D;
    --accent-orange: #D8923A;

    /* Browns - Heritage */
    --brown-heading: #6A3E2B;
    --brown-body: #4A3A33;

    /* Typography Colors */
    --heading: #7A0E2D;
    --text: #4A3A33;
    --text-light: #6A3E2B;
    --text-muted: #8B7B73;

    /* Borders & Decorative */
    --border: #E8D6C3;
    --border-light: #F0E6DC;

    /* White */
    --white: #FFFFFF;
    --text-on-dark: #FFFFFF;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    --font-nav: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--brown-body);
    line-height: 1.8;
    background-color: var(--bg-main);
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

img, svg {
    max-width: 100%;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background: var(--bg-main);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(93, 10, 25, 0.08);
    border-bottom: 1px solid var(--border-light);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 240px;
    max-width: 100%;
    padding: 0 40px;
}

.nav-brand {
    flex: 1;
}

.logo-link {
    text-decoration: none;
    color: var(--heading);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.trademark-mark {
    position: absolute;
    left: 76.5%;
    top: 44%;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.logo-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.logo-link:hover .logo-image {
    transform: scale(1.03);
}

.logo-text {
    font-size: 26px;
    font-family: var(--font-heading);
    color: var(--heading);
    letter-spacing: 1px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--brown-body);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-nav);
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.cta-link {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: var(--font-nav);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--heading);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img,
.hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.32) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.decorative-divider {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.decorative-divider-left {
    justify-content: flex-start;
}

.decorative-divider svg {
    width: 180px;
    height: 24px;
}

.hero p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: var(--font-body);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--font-nav);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 80px 20px;
    background: var(--bg-main);
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    color: var(--heading);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--primary);
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border: 2px solid var(--border-light);
}

.image-placeholder svg,
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
}

.service-card {
    flex: 1 1 180px;
    max-width: 210px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: var(--heading);
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-choose {
    padding: 80px 20px;
    background: var(--bg-main);
}

.why-choose h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--heading);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    color: var(--heading);
    font-size: 21px;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: 70px 20px;
    background: var(--bg-light);
}

.testimonials h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--heading);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.testimonials > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 780px;
    margin: 0 auto 25px;
}

.testimonial-carousel {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    width: 100%;
}

.testimonial-content {
    background: var(--bg-main);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
}

.testimonial-image-container {
    flex: 0 0 130px;
    width: 130px;
    height: 170px;
    min-width: 130px;
    max-width: 130px;
}

.author-image {
    width: 130px;
    height: 170px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--gold-light);
    display: block;
}

.author-image-contain {
    object-fit: contain;
    background: var(--bg-light);
}

.testimonial-content-wide {
    align-items: center;
}

.testimonial-image-container-wide {
    flex: 0 0 220px;
    width: 220px;
    height: 165px;
    min-width: 220px;
    max-width: 220px;
}

.author-image-wide {
    width: 220px;
    height: 165px;
    object-fit: contain;
    background: var(--bg-light);
}

.testimonial-text-container {
    flex: 1;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
    text-align: left;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info h4 {
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}

.author-info p {
    color: var(--gold-light);
    font-size: 14px;
    text-align: left;
    margin: 0;
}

.nav-btn {
    flex: 0 0 auto;
    background: var(--primary);
    color: var(--text-on-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 16px;
}

.nav-btn:hover {
    background: var(--primary-dark);
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--gold-light);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
    text-align: center;
    color: var(--heading);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--heading);
}

.cta .btn-primary {
    background: var(--primary);
    color: var(--text-on-dark);
}

.cta .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-on-dark);
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 19px;
    color: var(--text-light);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery-section {
    padding: 80px 20px;
    background: var(--bg-main);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gold-light);
    color: var(--heading);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--text-on-dark);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.gallery-item.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--bg-card);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 10, 25, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-heading);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 80px 20px;
    background: var(--bg-main);
    scroll-margin-top: 210px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-area h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--heading);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group {
    display: flex;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card);
    color: var(--brown-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(199, 154, 88, 0.1);
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

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

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.info-card h3 {
    color: var(--heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.info-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-item h4 {
    color: var(--heading);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
}

.info-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    color: var(--primary);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

.footer-corner {
    position: absolute;
    bottom: 0;
    width: 170px;
    height: 170px;
    pointer-events: none;
    opacity: 0.9;
}

.footer-corner-left {
    left: 0;
}

.footer-corner-right {
    right: 0;
    transform: scaleX(-1);
}

@media (max-width: 480px) {
    .footer-corner {
        width: 100px;
        height: 100px;
    }
}

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

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

.footer-section p {
    color: rgba(247, 239, 230, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(247, 239, 230, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--gold-light);
}

.footer-section-right {
    text-align: right;
}

.footer-contact-list li {
    display: block;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 239, 230, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(247, 239, 230, 0.7);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(247, 239, 230, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ==========================================
   CTA GALLERY
   ========================================== */

.cta-gallery {
    text-align: center;
}

.cta-gallery h2 {
    margin-bottom: 15px;
}

.cta-gallery p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
        justify-content: center;
        flex-wrap: wrap;
        min-height: 190px;
        padding: 10px 0;
    }

    .nav-brand {
        flex: none;
    }

    .logo-image {
        width: 180px;
        height: 180px;
    }

    .trademark-mark {
        font-size: 12px;
    }

    .hamburger {
        position: absolute;
        right: 20px;
        top: 100px;
        transform: translateY(-50%);
        display: flex;
        z-index: 1000;
    }

    .contact-section {
        scroll-margin-top: 160px;
    }

    .nav-menu {
        display: none;
        flex-basis: 100%;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--bg-main);
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
        padding: 10px 20px 20px;
        margin-top: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .cta-link {
        display: inline-block;
    }

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

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

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

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        gap: 30px 20px;
    }

    .service-card {
        flex-basis: 45%;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-area h2 {
        font-size: 26px;
        white-space: nowrap;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .testimonial-row {
        gap: 10px;
    }

    .testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .testimonial-image-container {
        flex: 0 0 auto;
        width: 100px;
        height: 130px;
        min-width: 100px;
        max-width: 100px;
    }

    .author-image {
        width: 100px;
        height: 130px;
    }

    .testimonial-image-container-wide {
        width: 200px;
        height: 150px;
        min-width: 200px;
        max-width: 200px;
    }

    .author-image-wide {
        width: 200px;
        height: 150px;
    }

    .testimonial-text {
        font-size: 14px;
        text-align: center;
    }

    .testimonial-author {
        align-items: center;
    }

    .author-info h4,
    .author-info p {
        text-align: center;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .hero {
        min-height: 400px;
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .about-text h2,
    .services h2,
    .why-choose h2,
    .testimonials h2,
    .cta h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 25px 15px;
    }

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

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-form-area h2 {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section-right {
        text-align: left;
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATION
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group > * {
    transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================
   HOVER DEPTH ENHANCEMENTS
   ========================================== */

.service-card:hover {
    transform: translateY(-6px);
}

.service-card:hover .service-icon svg {
    transform: scale(1.08);
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.feature {
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature:hover .feature-icon svg {
    transform: scale(1.1) rotate(-4deg);
}

.feature-icon svg {
    transition: transform 0.35s ease;
}

.gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(93, 10, 25, 0.18);
}

.gallery-image-wrapper img {
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

.testimonial-content {
    transition: box-shadow 0.4s ease;
}

.author-image {
    transition: transform 0.4s ease;
}

.testimonial-content:hover .author-image {
    transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .service-card:hover,
    .feature:hover,
    .gallery-item:hover,
    .service-card:hover .service-icon svg,
    .feature:hover .feature-icon svg,
    .gallery-item:hover .gallery-image-wrapper img,
    .testimonial-content:hover .author-image {
        transform: none;
    }
}

/* ==========================================
   GALLERY LIGHTBOX
   ========================================== */

.gallery-item {
    cursor: pointer;
}

.gallery-overlay .lightbox-hint {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 8px;
    opacity: 0.9;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 8, 10, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--champagne);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--champagne);
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--champagne);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 600px) {
    .lightbox-content {
        max-width: 94vw;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 14px;
        right: 16px;
        font-size: 32px;
    }
}
