/* ===== CSS VARIABLES ===== */
:root {
    /* A - Animation settings */
    --transition: all 0.3s ease;

    /* B - Border settings */
    --border-radius: 8px;

    /* C - Color palette */
    --color-black: #1a1a1a;
    --color-gold: #c6a467;
    --color-gray: #6c6c6c;
    --color-lightgold: #e4d6b8;
    --color-lightgray: #eaeaea;
    --color-offwhite: #f8f5f2;
    --color-white: #ffffff;

    /* F - Font families */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* L - Layout settings */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    background-color: var(--color-gold);
    bottom: -15px;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-black);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    margin: 0 auto;
    max-width: var(--container-width);
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

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

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== BUTTONS ===== */
.btn,
.btn-gold,
.btn-outline {
    align-items: center;
    backdrop-filter: blur(8px);
    border-radius: 40px;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0.3px;
    overflow: hidden;
    padding: 12px 28px;
    position: relative;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn {
    background: linear-gradient(135deg, #f49cb2 0%, #e9708f 50%, var(--color-gold) 100%);
    border: none;
    box-shadow: 0 6px 18px rgba(233, 112, 143, 0.45);
    color: var(--color-white);
}

.btn::before {
    content: "";
    opacity: 0;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 60%);
    transition: opacity 0.4s ease;
}

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

.btn:hover {
    box-shadow: 0 10px 25px rgba(233, 112, 143, 0.6);
    transform: translateY(-3px) scale(1.03);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e9708f;
    box-shadow: inset 0 0 12px rgba(233, 112, 143, 0.1);
    color: #e9708f;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #f49cb2, #e9708f);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(233, 112, 143, 0.4);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-lightgold) 0%, var(--color-gold) 80%);
    border: none;
    box-shadow: 0 6px 18px rgba(198, 164, 103, 0.45);
    color: var(--color-black);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-lightgold));
    box-shadow: 0 10px 25px rgba(198, 164, 103, 0.55);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.02);
}

.btn i,
.btn-outline i,
.btn-gold i {
    font-size: 16px;
    margin-right: 8px;
    transition: transform 0.3s;
}

.btn:hover i,
.btn-outline:hover i,
.btn-gold:hover i {
    transform: translateX(3px);
}

.btn:focus,
.btn-outline:focus,
.btn-gold:focus {
    box-shadow: 0 0 0 4px rgba(233, 112, 143, 0.4);
    outline: none;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 1rem 0;
    position:relative;
    top: 0;
    transition: var(--transition);
    width: 100%;
    z-index: 1000;
}

header.scrolled {
    padding: 0.5rem 0;
}

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

.logo {
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--color-gold);
}

.logo img {
    border-radius: 50%;
    height: 70px;
    margin-right: 10px;
    object-fit: cover;
    vertical-align: middle;
    width: 70px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

nav li {
    margin-left: 0;
}

nav a {
    color: var(--color-black);
    font-weight: 600;
    position: relative;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

nav a:hover {
    background-color: rgba(198, 164, 103, 0.08);
    color: var(--color-gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

nav a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    display: none;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background-color: rgba(198, 164, 103, 0.1);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}


/* ===== HERO SECTION ===== */
.hero {
    align-items: center;
    background: url('photo/banner.webp') center/cover no-repeat;
    color: #111;
    display: flex;
    justify-content: center;
    min-height: 90vh;
    padding: 20px;
    position: relative;
    text-align: center;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.5);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn,
.hero-buttons .btn-gold,
.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.32s cubic-bezier(.2,.9,.2,1), box-shadow 0.32s, opacity 0.25s;
    text-decoration: none;
}

/* ===== PROFESSIONAL HERO PANEL REDESIGN ===== */
.hero-panel {
    /* Background image + soft color overlay */
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.75),
            rgba(249, 154, 208, 0.75)
        ),
        url("/photo/banner.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 24px;
    padding: 3rem 3.5rem;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(198, 164, 103, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.879);

    display: grid;
    gap: 2rem;
    align-items: center;

    position: relative;
    overflow: hidden;
}


.hero-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 164, 103, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.hero-panel .hero-text {
    position: relative;
    z-index: 1;
}

.hero-panel .hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-panel .lead {
    color: #555555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Hero button variants */
.hero-ctas .btn,
.hero-ctas .btn-gold {
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-primary {
    background: linear-gradient(135deg, #ff6b8a 0%, #ff4d6d 50%, #ff8a6b 100%);
    color: #fff;
    border: none;
    box-shadow: 0 12px 32px rgba(255, 75, 109, 0.2);
}

.hero-primary:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(255, 75, 109, 0.3);
}

.hero-secondary {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-secondary:hover {
    background: linear-gradient(135deg, #e0e0e0, #d8d8d8);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-ctas .btn-gold {
    background: linear-gradient(135deg, #ffd86b 0%, #c6a467 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 12px 32px rgba(198, 164, 103, 0.25);
    font-weight: 700;
}

.hero-ctas .btn-gold:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 48px rgba(198, 164, 103, 0.35);
    background: linear-gradient(135deg, #ffe080, #d4b556);
}

.hero-ctas .btn i,
.hero-ctas .btn-gold i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-ctas .btn:hover i,
.hero-ctas .btn-gold:hover i {
    transform: translateX(4px) rotate(-8deg);
}

.hero-note {
    display: inline-block;

    color: #6f6f6f;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;

    background: rgba(255, 255, 255, 0.65);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    text-align: center;
    margin: 0.5rem auto 0;

    position: relative;
    z-index: 1;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Professional responsive design */
@media (max-width: 1024px) {
    .hero-panel {
        padding: 2.5rem 2.75rem;
    }
    .hero-panel .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-panel .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero-panel {
        padding: 1.8rem 1.5rem;
        gap: 1.5rem;
        border-radius: 16px;
    }
    .hero-panel .hero-text h1 {
        font-size: 1.85rem;
        margin-bottom: 0.5rem;
    }
    .hero-panel .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-ctas .btn,
    .hero-ctas .btn-gold {
        width: 100%;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
    }
    .hero-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-panel {
        padding: 1.4rem 1.2rem;
        gap: 1.2rem;
    }
    .hero-panel .hero-text h1 {
        font-size: 1.6rem;
    }
    .hero-ctas .btn,
    .hero-ctas .btn-gold {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}


/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--color-offwhite);
}

.about-container {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.about-image:before {
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    bottom: 20px;
    content: '';
    left: -20px;
    position: absolute;
    right: 20px;
    top: -20px;
    z-index: -1;
}

.about-image img {
    display: block;
    height: auto;
    transition: var(--transition);
    width: 100%;
}

.hindi-text {
    border-top: 1px solid var(--color-lightgray);
    color: var(--color-gray);
    font-family: 'Hindi', 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

/* ===== TAILOR INTRODUCTION SECTION ===== */
.tailor-intro {
    background-color: var(--color-white);
}

.tailor-container {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
}

.tailor-image {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.tailor-image img {
    display: block;
    height: auto;
    transition: var(--transition);
    width: 100%;
}

.tailor-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    bottom: 0;
    color: var(--color-white);
    left: 0;
    padding: 2rem 1.5rem 1rem;
    position: absolute;
    right: 0;
    text-align: center;
}

.tailor-content h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.tailor-title {
    color: var(--color-gray);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--color-white);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-lightgray);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.service-icon {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.price {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

/* ===== GALLERY SECTION ===== */
:root {
    --border-radius: 12px;
    --color-offwhite: #f9f9f9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-offwhite);
    margin: 0;
    padding: 0;
}

.section.gallery {
    padding: 60px 20px;
}

.gallery-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* Stack image and details */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY IMAGE (No Cropping) ===== */
.gallery-item img {
    width: 100%;
    height: auto;
    /* Keep original aspect ratio */
    object-fit: contain;
    /* Show full image without cropping */
    display: block;
    transition: transform 0.4s ease;
    border-radius: var(--border-radius);
    background-color: #fff;
    /* Fill empty space */
    padding: 10px;
    /* Optional: space around image */
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Optional overlay effect on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease;
}

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

/* ===== BLOUSE DETAILS ===== */
.blouse-details {
    text-align: center;
    padding: 12px 10px;
    background-color: #fff;
}

.blouse-details h3 {
    font-size: 16px;
    color: #000;
    margin: 5px 0 3px;
    font-weight: 600;
}

.blouse-details .sku {
    font-size: 14px;
    color: #666;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
}

.reveal:nth-child(1) {
    animation-delay: 0.1s;
}

.reveal:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal:nth-child(3) {
    animation-delay: 0.3s;
}

.reveal:nth-child(4) {
    animation-delay: 0.4s;
}

.reveal:nth-child(5) {
    animation-delay: 0.5s;
}

.reveal:nth-child(6) {
    animation-delay: 0.6s;
}

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

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .gallery-item img {
        padding: 5px;
        /* smaller padding on mobile */
    }
}

:root {
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-offwhite: #fefcf5;
    --color-gray: #666666;
    --color-lightgray: #ddd;
    --color-whatsapp: #25d366;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

/* Button */
.btn {
    padding: 0.5rem 1rem;
    background: #ff3366;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
    margin: 20px;
}

.btn:hover {
    opacity: 0.9;
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    background: linear-gradient(145deg, var(--color-offwhite), #fffaf3);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    max-height: 90vh;
    max-width: 920px;
    overflow: auto;
    padding: 1rem 1.5rem;
    position: relative;
    width: 100%;
}

/* Popup Title */
#popupTitle {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 1rem;
}

/* Blouse Grid */
.blouse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

/* Single Blouse Card (Square) */
.blouse-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.blouse-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Card Thumbnail (Square with object-fit cover) */
.card-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Makes the image container square */
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop and fill square */
    display: block;
}

/* Card Body */
.card-body {
    padding: 8px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 6px 0 4px;
    color: var(--color-black);
}

.card-sub {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 6px;
}

.whatsapp-btn {
    display: inline-block;
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: auto;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 24px;
    background: transparent;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1100;
}

.lightbox-content {
    max-width: 1100px;
    max-height: 90vh;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.close-lightbox {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}



/* ===== CTA BUTTON STYLING ===== */
.cta {
    align-items: center;
    background: #cc9d45;
    border: none;
    box-shadow: 6px 6px 0 black;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    padding: 11px 33px;
    text-decoration: none;
    transform: skewX(-15deg);
    transition: 0.6s;
}

.cta:hover {
    box-shadow: 10px 10px 0 #efce74;
    transition: 0.4s;
}

.span {
    transform: skewX(15deg);
}

.second {
    margin-left: 15px;
    position: relative;
    top: 12%;
    width: 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--color-white);
}

.testimonials-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--color-offwhite);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
}

.testimonial-card:before {
    color: var(--color-lightgold);
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    left: 1rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
}

.stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--color-black);
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--color-offwhite);
}

.contact-container {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.contact-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    min-width: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.contact-form {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-container {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-top: 120%;
    position: relative;
    width: 100%;
}

.form-container iframe {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    color: var(--color-white);
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-links h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-lightgray);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    height: 40px;
    justify-content: center;
    transition: var(--transition);
    width: 40px;
}

.social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-lightgray);
    font-size: 0.9rem;
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
}

.creator {
    color: #aaa;
    font-size: 14px;
}

.creator a {
    color: #ffcc00;
    text-decoration: none;
}

.creator a:hover {
    text-decoration: underline;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    animation: pulse 2s infinite;
    background-color: #25D366;
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 28px;
    height: 55px;
    position: fixed;
    right: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 55px;
    z-index: 1000;
}

.whatsapp-float i {
    margin-top: 14px;
}

.whatsapp-float:hover {
    background-color: #20b358;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-container,
    .contact-container,
    .tailor-container {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .about-image:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav ul {
        background-color: var(--color-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        left: 0;
        padding: 1rem 0;
        position: absolute;
        top: 100%;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    nav li {
        margin: 0.5rem 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .pricing-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

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

    .cta {
        font-size: 16px;
        margin-top: 2.5rem;
        padding: 10px 25px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 250px;
    }

    .form-container {
        padding-top: 150%;
    }

    .whatsapp-float {
        bottom: 15px;
        font-size: 30px;
        height: 60px;
        right: 15px;
        width: 60px;
    }

    .whatsapp-float i {
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    .form-container {
        padding-top: 75%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* ===== Responsive adjustments ===== */
@media (min-width:700px) {
    .blouse-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .popup-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .popup-controls {
        left: unset;
        right: calc(50% - 480px);
        top: 50%;
    }
}

@media (min-width:1000px) {
    .blouse-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .popup-content {
        padding: 1.25rem;
    }

    .popup-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* A - Accessibility focus */
button:focus,
a:focus {
    outline: 3px solid rgba(199, 146, 157, 0.25);
    outline-offset: 2px;
}
@media (max-width: 768px) {
    #navMenu {
        position: fixed;
        left: -260px;
        top: 0;
        width: 260px;
        height: 100vh;
        background: white;
        transition: 0.3s;
        padding-top: 100px;
        flex-direction: column;
    }

    #navMenu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: flex;
    }
}
