/* ============================================= */
/* ABOUT PAGE - COMPLETE CSS                    */
/* ============================================= */

/* ============================================= */
/* SECTION 1: HERO BANNER WITH IMAGE            */
/* ============================================= */

.about-hero-image {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1210;
}

.about-hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.60) 0%, rgba(44, 24, 16, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 92%;
    max-width: 800px;
    padding: 20px 16px;
    animation: aboutFadeIn 0.9s ease forwards;
}

@keyframes aboutFadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.about-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 700;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    border: 1px solid rgba(255, 215, 190, 0.15);
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.about-hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 8vw, 58px);
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 6px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(24px, 3vw, 38px);
    color: #D4A574;
    margin-bottom: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    font-style: normal;
}

/* Removed .about-hero-name */
/* Removed .about-hero-name strong */
/* Removed .about-hero-name span */

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */

@media (max-width: 992px) {
    .about-hero-image {
        height: 70vh;
        min-height: 500px;
        max-height: 750px;
    }
}

@media (max-width: 768px) {
    .about-hero-image {
        height: 60vh;
        min-height: 450px;
        max-height: 650px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 22px;
    }

    .about-hero-badge {
        font-size: 10px;
        padding: 4px 14px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 576px) {
    .about-hero-image {
        height: 50vh;
        min-height: 400px;
        max-height: 550px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-hero-badge {
        font-size: 9px;
        padding: 3px 12px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .about-hero-content {
        padding: 15px 10px;
        width: 95%;
    }
}

@media (max-width: 400px) {
    .about-hero-image {
        height: 45vh;
        min-height: 350px;
        max-height: 480px;
    }

    .about-hero-title {
        font-size: 20px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-badge {
        font-size: 8px;
        padding: 2px 10px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
    }
}
/* ============================================= */
/* SECTION 2: CAKES STRIP - CONTINUOUS MOTION    */
/* ============================================= */

.cakes-strip {
    background: #fcf6f0;
    padding: 30px 0 20px;
    overflow: hidden;
    border-top: 2px solid rgba(139, 69, 19, 0.06);
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

/* ============================================= */
/* CAKES STRIP HEADER                            */
/* ============================================= */

.cakes-strip-header {
    text-align: center;
    margin-bottom: 25px;
}

.cakes-strip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.cakes-strip-header h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #2c1810;
    margin-bottom: 4px;
}

.cakes-strip-header h3 span {
    color: #8B4513;
}

.cakes-strip-subtitle {
    font-size: 15px;
    color: #888;
    font-style: italic;
    margin: 0;
}

.cakes-strip-subtitle strong {
    color: #8B4513;
    font-style: normal;
}

/* ============================================= */
/* CAKES MARQUEE - BIGGER CARDS                 */
/* ============================================= */
.cakes-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    will-change: transform;
}

.cakes-marquee-track {
    display: flex;
    animation: scrollCakes 20s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.cakes-marquee-track span {
    flex-shrink: 0;
    width: 220px;
    height: 210px;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cakes-marquee-track span:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.12);
}

.cakes-marquee-track span img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Prevent image flickering */
    image-rendering: auto;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

@keyframes scrollCakes {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover - desktop only */
@media (min-width: 769px) {
    .cakes-strip:hover .cakes-marquee-track {
        animation-play-state: paused;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .cakes-strip-header h3 {
        font-size: 38px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .cakes-strip-header h3 {
        font-size: 32px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .cakes-strip-header h3 {
        font-size: 28px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .cakes-strip-header {
        margin-bottom: 18px;
    }

    .cakes-strip-header h3 {
        font-size: 24px;
    }

    .cakes-strip-subtitle {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cakes-strip-header {
        margin-bottom: 14px;
    }

    .cakes-strip-header h3 {
        font-size: 20px;
    }

    .cakes-strip-subtitle {
        font-size: 12px;
    }

    .cakes-strip-badge {
        font-size: 10px;
        padding: 3px 14px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .cakes-strip-header h3 {
        font-size: 18px;
    }

    .cakes-strip-badge {
        font-size: 9px;
        padding: 2px 12px;
        letter-spacing: 0.8px;
    }

    .cakes-strip-subtitle {
        font-size: 11px;
    }
}

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .cakes-strip-header {
        margin-bottom: 12px;
    }

    .cakes-strip-header h3 {
        font-size: 20px;
    }

    .cakes-strip-badge {
        font-size: 10px;
        padding: 3px 12px;
        margin-bottom: 4px;
    }

    .cakes-strip-subtitle {
        font-size: 12px;
    }
}

/* ============================================= */
/* SECTION 3: MADAM INTRODUCTION + IMAGE        */
/* IMAGE LEFT - RESPONSIVE                      */
/* ============================================= */

.about-madam {
    padding: 80px 0;
    background: #fff;
}

.about-madam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-madam-image {
    position: relative;
    width: 100%;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.12);
}

.about-madam-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.about-madam-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.about-madam-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-madam-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    z-index: 2;
}

.about-madam-text {
    padding: 10px 0;
}

.about-madam-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.08);
    color: #8B4513;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.about-madam-text h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #2c1810;
    margin-bottom: 2px;
}

.about-madam-text h4 {
    font-size: 18px;
    color: #8B4513;
    font-weight: 400;
    margin-bottom: 16px;
}

.about-madam-text blockquote {
    font-size: 18px;
    color: #555;
    font-style: italic;
    padding: 16px 0 16px 24px;
    border-left: 4px solid #D4A574;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-madam-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.about-madam-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fcf6f0;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.06);
}

.about-madam-feature i {
    font-size: 22px;
    color: #8B4513;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.about-madam-feature strong {
    display: block;
    font-size: 15px;
    color: #2c1810;
}

.about-madam-feature span {
    font-size: 12px;
    color: #888;
}

.about-madam-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.about-madam-social .btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-madam-social .btn-social.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F56040);
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
}

.about-madam-social .btn-social.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
}

.about-madam-social .btn-social.whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.about-madam-social .btn-social.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* ============================================= */
/* RESPONSIVE - KEEP 2 COLUMNS ON ALL DEVICES    */
/* ============================================= */

/* ---------- Tablet (<=991px) ---------- */
@media (max-width: 991px) {

    .about-madam{
        padding:60px 20px;
    }

    .about-madam-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        align-items:center;
        gap:30px;
        max-width:100%;
    }

    .about-madam-image{
        width:100%;
        max-width:100%;
        margin:0;
        border-radius:16px;
    }

    .about-madam-img-wrapper{
        padding-bottom:100%;
    }

    .about-madam-img-wrapper img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .about-madam-text{
        text-align:left;
    }

    .about-madam-tag{
        display:inline-block;
        margin:0 0 10px;
    }

    .about-madam-text h2,
    .about-madam-text h4{
        text-align:left;
    }

    .about-madam-text blockquote{
        text-align:left;
        margin:0;
        max-width:100%;
    }

    .about-madam-features{
        max-width:100%;
        margin-bottom:20px;
    }

    .about-madam-social{
        justify-content:flex-start;
    }
}


/* ---------- Mobile Landscape (<=767px) ---------- */
@media (max-width:767px){

    .about-madam{
        padding:40px 15px;
    }

    .about-madam-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        align-items:center;
    }

    .about-madam-image{
        max-width:100%;
    }

    .about-madam-text{
        text-align:left;
    }

    .about-madam-text h2{
        font-size:24px;
        text-align:left;
    }

    .about-madam-text h4{
        font-size:15px;
        text-align:left;
    }

    .about-madam-text blockquote{
        font-size:14px;
        max-width:100%;
    }

    .about-madam-features{
        grid-template-columns:1fr;
    }

    .about-madam-social{
        justify-content:flex-start;
        flex-wrap:wrap;
    }
}

/* ---------- Small Mobile (<=480px) ---------- */
@media (max-width:480px){

    
    .about-madam{
        padding:40px 10px;
    }

    .about-madam-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .about-madam-image{
        width:95%;          /* 100% ki jagah 95% */
        max-width:none;     /* max-width hata do */
        margin:0 auto;
    }

    .about-madam-img-wrapper{
        width:100%;
        padding-bottom:140%;   /* 180% bahut zyada hai */
    }

    .about-madam-img-wrapper img{
        width:100%;
        height:100%;
        object-fit:cover;
    }


    .about-madam-text{
        text-align:center;
    }

    .about-madam-tag{
        display:inline-block;
        margin:0 auto 10px;
    }

    .about-madam-text h2{
        font-size:20px;
    }

    .about-madam-text h4{
        font-size:13px;
    }

    .about-madam-text blockquote{
        font-size:13px;
        text-align:left;
    }

    .about-madam-features{
        grid-template-columns:1fr;
    }

    /* Center Buttons */
    .about-madam-social{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .about-madam-social .btn-social{
        width:auto;
        max-width:none;
    }
}
/* ---------- Very Small Phones (<=400px) ---------- */
@media (max-width: 400px) {
    .about-madam-image {
        max-width: 240px;
        border-radius: 12px;
    }

    .about-madam-text h2 {
        font-size: 22px;
    }

    .about-madam-text h4 {
        font-size: 13px;
    }

    .about-madam-text blockquote {
        font-size: 13px;
        padding: 8px 0 8px 12px;
    }

    .about-madam-badge {
        font-size: 9px;
        padding: 3px 10px;
        bottom: 8px;
        right: 8px;
    }

    .about-madam-feature {
        padding: 6px 10px;
    }

    .about-madam-feature i {
        font-size: 14px;
        width: 18px;
    }

    .about-madam-feature strong {
        font-size: 12px;
    }

    .about-madam-feature span {
        font-size: 10px;
    }

    .about-madam-social .btn-social {
        font-size: 12px;
        padding: 6px 14px;
        max-width: 240px;
    }
}

/* ---------- Landscape Phones ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .about-madam {
        padding: 30px 15px;
    }

    .about-madam-grid {
        gap: 20px;
        max-width: 800px;
    }

    .about-madam-image {
        max-width: 280px;
    }

    .about-madam-img-wrapper {
        padding-bottom: 80%;
    }

    .about-madam-text h2 {
        font-size: 24px;
    }

    .about-madam-text h4 {
        font-size: 14px;
    }

    .about-madam-text blockquote {
        font-size: 14px;
        padding: 8px 0 8px 12px;
    }

    .about-madam-features {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .about-madam-feature {
        padding: 6px 10px;
    }

    .about-madam-feature i {
        font-size: 14px;
        width: 20px;
    }

    .about-madam-feature strong {
        font-size: 12px;
    }

    .about-madam-feature span {
        font-size: 10px;
    }
}

/* ---------- iPad & Tablet Landscape ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-madam-grid {
        gap: 35px;
        max-width: 900px;
    }

    .about-madam-image {
        max-width: 400px;
    }

    .about-madam-text h2 {
        font-size: 32px;
    }

    .about-madam-text blockquote {
        font-size: 16px;
    }

    .about-madam-features {
        gap: 10px;
    }
}

/* ---------- Large Screens (>=1400px) ---------- */
@media (min-width: 1400px) {
    .about-madam-grid {
        max-width: 1200px;
        gap: 60px;
    }

    .about-madam-image {
        max-width: 550px;
    }

    .about-madam-text h2 {
        font-size: 42px;
    }

    .about-madam-text blockquote {
        font-size: 20px;
    }
}
/* ============================================= */
/* SECTION 4: MADAM'S GALLERY - 6 IMAGES        */
/* ============================================= */

.about-gallery {
    padding: 80px 0;
    background: #fcf6f0;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    aspect-ratio: 1/1;
    background: #fff;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.about-gallery-item:hover img {
    transform: scale(1.02);
}

.about-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 8px;
}

.about-gallery-item:hover .about-gallery-overlay {
    opacity: 1;
}

.about-gallery-overlay i {
    font-size: 30px;
    color: #fff;
}

.about-gallery-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: rgba(139, 69, 19, 0.6);
    padding: 4px 16px;
    border-radius: 50px;
}

/* ============================================= */
/* SECTION 5: PACKAGING TEMPLATES               */
/* ============================================= */

.about-packaging {
    padding: 80px 0;
    background: #fff;
}

.packaging-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.packaging-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.1);
    border-color: #D4A574;
}

.packaging-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #faf6f2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.packaging-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.packaging-card:hover .packaging-image img {
    transform: scale(1.05);
}

.packaging-card h5 {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

/* ============================================= */
/* SECTION 7: PRE-BAKING TRAINING                */
/* ============================================= */

.prebaking-training {
    padding: 80px 0;
    background: #fcf6f0;
}

.prebaking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.prebaking-card {
    background: #fff;
    padding: 28px 22px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.prebaking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.prebaking-icon {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 12px;
}

.prebaking-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 6px;
}

.prebaking-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ============================================= */
/* SECTION 10: FINAL CTA                         */
/* ============================================= */

.cta-contact {
    margin-top: 16px;
    color: #d4c5b8;
    font-size: 16px;
}

.cta-contact .sep {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.2);
}

.cta-contact i {
    color: #D4A574;
    margin-right: 6px;
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */

@media (max-width: 992px) {


    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .prebaking-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cakes-marquee-track span {
        width: 200px;
        height: 180px;
        margin: 0 10px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .about-hero-video {
        height: 70vh;
        min-height: 450px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-madam {
        padding: 50px 0;
    }

    .about-madam-text blockquote {
        font-size: 16px;
        padding-left: 16px;
    }

    .about-madam-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-madam-feature {
        padding: 8px 12px;
    }

    .about-madam-feature i {
        font-size: 18px;
        width: 24px;
    }

    .about-madam-feature strong {
        font-size: 13px;
    }

    .about-madam-feature span {
        font-size: 11px;
    }

    .about-gallery {
        padding: 50px 0;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-packaging {
        padding: 50px 0;
    }

    .packaging-image {
        height: 170px;
    }

    .prebaking-training {
        padding: 50px 0;
    }

    .prebaking-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {

    .about-hero-video {
        height: 90vh;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 29px;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    .about-hero-name strong {
        font-size: 18px;
    }

    .about-hero-name span {
        font-size: 12px;
    }

    .about-hero-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .cakes-marquee-track span {
        width: 150px;
        height: 180px;
        margin: 0 10px;
        padding: 6px;
    }

    /* ================= ABOUT MADAM ================= */

    .about-madam-image{
        width:100%;
        max-width:380px;      /* Image horizontal width badh gayi */
        margin:0 auto;
    }

    .about-madam-img-wrapper{
        padding-bottom:120%;
    }

    .about-madam-text{
        text-align:center;
    }

    .about-madam-tag{
        display:inline-block;
        margin:0 auto 10px;
    }

    .about-madam-text h2{
        font-size:26px;
        text-align:center;
    }

    .about-madam-text h4{
        font-size:15px;
        text-align:center;
    }

    .about-madam-text blockquote{
        text-align:center;
        border-left:none;
        padding:12px 0;
    }

    .about-madam-features{
        grid-template-columns:1fr;
        gap:8px;
    }

    .about-madam-feature{
        justify-content:center;
        text-align:center;
    }

    .about-madam-social{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-direction:column;
        gap:10px;
        width:100%;
    }

    .about-madam-social .btn-social{
        width:100%;
        max-width:280px;
        justify-content:center;
    }

    /* ================= GALLERY ================= */

    .about-gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .about-gallery-overlay i{
        font-size:20px;
    }

    .about-gallery-overlay span{
        font-size:12px;
        padding:2px 12px;
    }

    /* ================= PACKAGING ================= */

    .packaging-image{
        height:150px;
        padding:10px;
    }

    .packaging-card h5{
        font-size:14px;
        padding:12px;
        text-align:center;
    }

    /* ================= PRE BAKING ================= */

    .prebaking-grid{
        grid-template-columns:1fr;
        gap:14px;
        max-width:400px;
    }

    .prebaking-card{
        padding:20px 16px;
        text-align:center;
    }

    .prebaking-card h4{
        font-size:15px;
    }

    .prebaking-card p{
        font-size:13px;
    }

    /* ================= CTA ================= */

    .cta-contact{
        font-size:14px;
        text-align:center;
    }

    .cta-contact .sep{
        margin:0 6px;
    }
}
@media (max-width: 400px) {
    .about-hero-title {
        font-size: 29px;
    }

    .about-hero-subtitle {
        font-size: 13px;
    }

    .cakes-marquee-track span {
        width: 140px;
        height: 120px;
        margin: 0 8px;
        padding: 4px;
    }

    .about-gallery-grid {
        gap: 8px;
    }

    .packaging-image {
        height: 130px;
        padding: 8px;
    }

    .packaging-card h5 {
        font-size: 12px;
        padding: 10px;
    }
}


/* ============================================= */
/* JOURNEY TIMELINE - PATISSERIE180             */
/* ============================================= */

.journey-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #2c1810;
}

.section-title h2 span {
    color: #8B4513;
}

.section-title .title-border {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.section-title p {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

/* ============================================= */
/* TIMELINE STYLES                              */
/* ============================================= */

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #D4A574, #8B4513, #D4A574);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.15);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

/* Content */
.timeline-content {
    width: 42%;
    background: #fcf6f0;
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 55%;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
    text-align: left;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #D4A574;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
}

.timeline-content.gold {
    border-color: #F4B400;
    background: linear-gradient(135deg, #fcf6f0, #fdf4e0);
}

.timeline-content.gold:hover {
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.15);
}

/* Year */
.timeline-year {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 4px;
}

.timeline-year.gold {
    color: #F4B400;
}

/* Icon */
.timeline-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.timeline-icon i {
    color: #8B4513;
}

.timeline-content.gold .timeline-icon i {
    color: #F4B400;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Tag */
.timeline-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-tag.gold {
    background: rgba(244, 180, 0, 0.15);
    color: #F4B400;
}

.timeline-tag.gold i {
    margin-right: 4px;
}

/* Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #8B4513;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #D4A574, 0 4px 15px rgba(139, 69, 19, 0.2);
    z-index: 2;
}

.timeline-dot.gold {
    background: #F4B400;
    box-shadow: 0 0 0 4px #F4B400, 0 4px 20px rgba(244, 180, 0, 0.3);
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */

@media (max-width: 992px) {
    .timeline-content {
        width: 45%;
        padding: 22px 24px;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 50px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-bottom: 40px;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%) translateY(-50%);
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-year {
        font-size: 20px;
    }

    .timeline-icon {
        font-size: 24px;
    }

    .timeline-content h4 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 13px;
    }

    .timeline::before {
        left: 16px;
        width: 2px;
    }

    .timeline-dot {
        left: 16px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 16px 18px;
        border-radius: 12px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 50px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px !important;
    }

    .timeline-year {
        font-size: 18px;
    }

    .timeline-icon {
        font-size: 20px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 12px;
    }

    .timeline-tag {
        font-size: 10px;
        padding: 2px 12px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 400px) {
    .timeline::before {
        left: 12px;
    }

    .timeline-dot {
        left: 12px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        width: calc(100% - 44px);
        margin-left: 44px !important;
        padding: 14px 16px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 44px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 44px !important;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-icon {
        font-size: 18px;
    }

    .timeline-content h4 {
        font-size: 14px;
    }

    .timeline-content p {
        font-size: 11px;
    }
}


/* ============================================= */
/* SERVICES SECTION                             */
/* ============================================= */

.services-section {
    padding: 80px 0;
    background: #fcf6f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #2c1810;
}

.section-header h2 span {
    color: #8B4513;
}

.title-border {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.section-header .subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #888;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.1);
    border-color: #D4A574;
}

.service-icon {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 15px;
    display: block;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8B4513;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #D4A574;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================= */
/* RESPONSIVE - SERVICES                        */
/* ============================================= */

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-card h4 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 400px;
    }

    .service-card {
        padding: 16px 12px;
        border-radius: 10px;
    }

    .service-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .service-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .service-link {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 12px 10px;
    }

    .service-icon {
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 11px;
    }
}


/* ============================================= */
/* DOT NAVIGATION - RESPONSIVE                   */
/* ============================================= */

.cakes-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 5px 0;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.cakes-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #D4A574;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.cakes-dot:hover {
    background: #D4A574;
    transform: scale(1.2);
}

.cakes-dot.active {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    border-color: #8B4513;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.3);
}

/* ============================================= */
/* RESPONSIVE - CONTROL VISIBLE DOTS            */
/* ============================================= */

/* Desktop - Show 4-5 dots */
@media (min-width: 992px) {
    .cakes-dots {
        gap: 12px;
        margin-top: 22px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cakes-dot {
        width: 14px;
        height: 14px;
        border-width: 2.5px;
    }

    /* Hide extra dots on desktop (show only first 5) */
    .cakes-dot:nth-child(n+6) {
        display: none;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
    .cakes-dots {
        gap: 10px;
        margin-top: 18px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .cakes-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    /* Show 6 dots on tablet */
    .cakes-dot:nth-child(n+7) {
        display: none;
    }
}

/* Small Tablet - Show 6-7 dots */
@media (max-width: 768px) and (min-width: 577px) {
    .cakes-dots {
        gap: 8px;
        margin-top: 15px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .cakes-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    /* Show 7 dots on small tablet */
    .cakes-dot:nth-child(n+8) {
        display: none;
    }
}

/* Mobile - Show all 8 dots */
@media (max-width: 576px) {
    .cakes-dots {
        gap: 6px;
        margin-top: 12px;
        max-width: 100%;
        padding: 0 10px;
    }

    .cakes-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    .cakes-dot.active {
        transform: scale(1.3);
    }

    /* Show all dots on mobile */
    .cakes-dot:nth-child(n+1) {
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .cakes-dots {
        gap: 5px;
        margin-top: 10px;
    }

    .cakes-dot {
        width: 7px;
        height: 7px;
        border-width: 1.5px;
    }
}

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .cakes-dots {
        gap: 6px;
        margin-top: 10px;
    }

    .cakes-dot {
        width: 8px;
        height: 8px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .cakes-dot {
        transition: none;
    }
}


/* ============================================= */
/* CONTACT PAGE - CSS                          */
/* ============================================= */

/* Contact Hero */
.contact-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    text-align: center;
    color: #fff;
}

.contact-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #f5ede5;
    margin-bottom: 8px;
}

.contact-hero h1 span {
    color: #D4A574;
}

.contact-hero p {
    font-size: 18px;
    color: #d4c5b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c1810;
    margin-bottom: 8px;
}

.contact-info h3 span {
    color: #8B4513;
}

.contact-info-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #fcf6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    font-size: 18px;
}

.contact-info-detail h5 {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-info-detail a,
.contact-info-detail p {
    font-size: 16px;
    color: #2c1810;
    text-decoration: none;
    display: block;
}

.contact-info-detail a:hover {
    color: #8B4513;
}

/* Social Links */
.contact-social {
    margin-top: 20px;
}

.contact-social h5 {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C);
}

.contact-social-link.youtube {
    background: #FF0000;
}

.contact-social-link.whatsapp {
    background: #25D366;
}

.contact-social-link.facebook {
    background: #1877F2;
}

.contact-social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c1810;
    margin-bottom: 24px;
}

.contact-form-wrapper h3 span {
    color: #8B4513;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    display: block;
    margin-bottom: 4px;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #8B4513;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

/* Map Section */
.contact-map {
    padding: 60px 0;
    background: #fcf6f0;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Working Hours */
.contact-hours {
    padding: 60px 0;
    background: #fff;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-card {
    background: #fcf6f0;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.06);
}

.hours-icon {
    font-size: 32px;
    color: #8B4513;
    margin-bottom: 12px;
}

.hours-card h4 {
    font-size: 18px;
    color: #2c1810;
    margin-bottom: 12px;
}

.hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid rgba(139, 69, 19, 0.04);
}

.hours-card ul li:last-child {
    border-bottom: none;
}

/* FAQ */
.contact-faq {
    padding: 60px 0;
    background: #fcf6f0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fcf6f0;
}

.faq-question h4 {
    font-size: 16px;
    color: #2c1810;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: #8B4513;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #8B4513;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .faq-question {
        padding: 14px 16px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 26px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-social-links {
        justify-content: center;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .hours-card {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 14px;
    }
}