

/* ── Breadcrumb ── */
.breadcrumb-section {
    background-color: #f8f4ef;
    padding: 14px 0;
    border-bottom: 1px solid #e8ddd4;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.breadcrumb a {
    color: #8B5E3C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3C1E12;
}

.breadcrumb .separator {
    color: #bbb;
}

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


/* ── About Hero ── */
.about-hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-hero {
    background-color: #fff;
    padding: 70px 0 80px;
    position: relative;
    border-bottom: 1px solid #f0e8de;
}
/* Subtle gold glow pattern */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(201, 168, 108, 0.10),
        rgba(201, 168, 108, 0.05),
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}



.about-hero-left h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #3C1E12;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-hero-left h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    margin-top: 10px;
    border-radius: 2px;
}

.about-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(60, 30, 18, 0.15);
    border: 3px solid #f0e8de;
}

.about-hero-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.03);
}

.about-hero-right {
    padding-top: 0;
    margin-top: 75px;
}


.about-intro-content {
    background: #fffdf8;
    border: 1px solid #f0e8de;
    border-left: 4px solid #c9a86c;
    border-radius: 0 12px 12px 0;
    padding: 24px 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-intro-content p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
    text-align: justify;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}


/* ── Our Story ── */
.our-story {
    background-color: #faf7f3;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #f0e8de;
    border-bottom: 1px solid #f0e8de;
}

.our-story .container {
    max-width: 820px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: #3C1E12;
    margin-bottom: 40px;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    margin: 14px auto 0;
    border-radius: 2px;
}

.story-content {
    background: #fdf8ec;
    border: 1px solid #f0e8de;
    border-radius: 18px;
    padding: 40px 44px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.story-content p {
    font-size: 1.08rem;
    line-height: 2;
    color: #555;
    margin-bottom: 22px;
    font-weight: 400;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    color: #c9a86c;
}

/* ── Vision & Mission ── */
.vision-mission {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid #f0e8de;
    border-bottom: 1px solid #f0e8de;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Light gold tinted card */
.vm-card {
    background: #fffdf6;
    padding: 38px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0e4c4;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 48px rgba(60, 30, 18, 0.12);
    border-color: #d4b47c;
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #3C1E12;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.vm-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(201, 168, 108, 0.5), rgba(201, 168, 108, 0.1), transparent);
    position: relative;
}

.vm-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #c9a86c, #e0c080);
    transition: width 0.6s ease;
}

.vm-card:hover .vm-line::after {
    width: 65%;
}

.vm-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #fdf3d0 0%, #f9e89a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card:hover .vm-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #8B5E3C, #3C1E12);
}

.vm-icon i {
    font-size: 1.6rem;
    color: #8B5E3C;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon i {
    color: #ffffff;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ── Trust Strip ── */
.trust-strip {
    background: linear-gradient(135deg, #3C1E12, #5a2d1a);
    padding: 50px 0;
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #f9e89a;
    letter-spacing: 2px;
}

.trust-item p {
    font-size: 0.95rem;
    color: #f5f5f5;
    letter-spacing: 0.5px;
}

.trust-item h3 {
    transition: transform 0.3s ease;
}

.trust-item:hover h3 {
    transform: scale(1.1);
}

/* ── Why Choose Us ── */
.why-choose {
    background-color: #faf7f3;
    position: relative;
    padding: 80px 0;
    border-top: 1px solid #f0e8de;
    border-bottom: 1px solid #f0e8de;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Light gold card */
.why-card {
    text-align: center;
    padding: 44px 30px;
    background: #fffdf6;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #f0e4c4;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    border-radius: 18px 18px 0 0;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(60, 30, 18, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #fdf3d0 0%, #f9e89a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #8B5E3C;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 5px 18px rgba(201, 168, 108, 0.25);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #8B5E3C, #3C1E12);
    color: #ffffff;
    transform: rotateY(180deg);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #3C1E12;
    margin-bottom: 14px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── Section Titles ── */
.about-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #3C1E12;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Centered with gold underline — Why Choose Us, Request Us */
.why-choose .about-section-title,
.request-section .about-section-title {
    display: block;
    text-align: center;
    position: relative;
}

.why-choose .about-section-title::after,
.request-section .about-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Hero right subtitle stays left-aligned, no underline */
.about-hero-right .about-section-title {
    text-align: left;
    display: block;
}

/* ── Our Locations ── */
.locations-section {
    background-color: #fff;
    padding-bottom: 90px;
    position: relative;
    border-top: 1px solid #f0e8de;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #3C1E12;
    margin-bottom: 12px;
    font-weight: 700;
}

.location-underline {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    border-radius: 2px;
    margin-bottom: 20px;
}

.location-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 45px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-left {
    display: flex;
    flex-direction: column;
}

/* Light gold address box */
.address-box {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    background: #fffdf6;
    border: 1px solid #f0e4c4;
    border-left: 4px solid #c9a86c;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    color: #444;
}

.address-box strong {
    font-weight: 700;
    color: #3C1E12;
}

/* Store visuals container */
.store-visuals {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Main store image */
.main-store-img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Floating map card */
.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px; /* change to left:20px; if you want left side */
    width: 280px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
     backdrop-filter: blur(5px);
}

/* Map iframe */
.map-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover effect */
.store-visuals:hover .map-overlay {
    transform: scale(1.05);
}
/* Working hours — light gold card */
.working-hours-box {
    background: linear-gradient(135deg, #FDF8EC 0%, #f9efcc 100%);
    padding: 50px 42px;
    border-radius: 22px;
    text-align: center;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 35px rgba(60, 30, 18, 0.1);
    border: 1px solid #f0e4c4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.working-hours-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(60, 30, 18, 0.14);
}

.working-icon {
    font-size: 2.6rem;
    color: #8B5E3C;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf3d0, #f9e89a);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0 5px 18px rgba(201, 168, 108, 0.3);
}

.working-hours-box h3 {
    font-family: var(--font-heading, serif);
    font-size: 1.9rem;
    color: #3C1E12;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hours-list {
    background: rgba(255, 255, 255, 0.65);
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid #f0e4c4;
}

.hours-list p {
    font-size: 1.08rem;
    color: #3C302A;
    margin-bottom: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.hours-list p:last-child {
    margin-bottom: 0;
}

/* ── Store Gallery ── */
.store-gallery {
    background-color: #faf7f3;
    border-top: 1px solid #f0e8de;
}

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

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid #f0e4c4;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-highlight {
    background: #fffdf6;
    border: 1px solid #f0e4c4;
    border-left: 4px solid #c9a86c;
    padding: 40px;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.gallery-highlight h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #3C1E12;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gallery-highlight p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ── Request / Contact Section ── */
.request-section {
    background-color: #fff;
    position: relative;
    border-top: 1px solid #f0e8de;
}

.request-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

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

/* Light gold card */
.request-card {
    text-align: center;
    padding: 35px 22px;
    background: #fffdf6;
    border: 1px solid #f0e4c4;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.request-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a86c, #e0c080);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.request-card:hover {
    box-shadow: 0 14px 36px rgba(60, 30, 18, 0.12);
    transform: translateY(-8px);
    border-color: #d4b47c;
}

.request-card:hover::before {
    transform: scaleX(1);
}

.request-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fdf3d0 0%, #f9e89a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8B5E3C;
    font-size: 1.9rem;
    box-shadow: 0 4px 14px rgba(201, 168, 108, 0.25);
    transition: all 0.3s ease;
}

.request-card:hover .request-icon {
    background: linear-gradient(135deg, #8B5E3C, #3C1E12);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.request-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #3C1E12;
    margin-bottom: 14px;
    font-weight: 700;
}

.request-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.request-card a {
    color: #8B5E3C;
    text-decoration: none;
    font-weight: 500;
}

.request-card a:hover {
    text-decoration: underline;
    color: #3C1E12;
}

.request-time {
    font-size: 0.84rem;
    color: #999;
    font-style: italic;
}

/* ── CTA Banner — Logo title colour (#3C1E12) ── */
.cta-banner {
    background: linear-gradient(135deg, #3C1E12 0%, #5a2d1a 50%, #7a3d22 100%);
    padding: 65px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gold shimmer overlay */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(201, 168, 108, 0.08) 0%,
            rgba(224, 192, 128, 0.14) 50%,
            rgba(201, 168, 108, 0.08) 100%);
    pointer-events: none;
}

/* Gold accent line at top */
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a86c, #e0c080, #c9a86c);
}

.cta-banner a {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: #fff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: letter-spacing 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.cta-banner a:hover h2 {
    letter-spacing: 5px;
    transform: scale(1.04);
    color: #f9e89a;
}

/* ── Shared Section Padding ── */
.section-padding {
  padding: 90px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-hero-content {
        gap: 40px;
    }

    .vm-grid {
        gap: 28px;
    }

    .vm-card {
        padding: 28px;
    }

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

    .request-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 0 60px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .about-hero-right {
        margin-top: 0;
    }

    .about-hero-left h1 {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }

    .about-hero-right .about-section-title {
        font-size: 1.5rem;
    }

    .about-intro-content p {
        text-align: left;
    }

    .story-title {
        font-size: 1.9rem;
    }

    .our-story {
        padding: 60px 0;
    }

    .story-content {
        padding: 28px 24px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vm-card h3 {
        font-size: 1.2rem;
    }
     .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gallery-highlight {
        padding: 25px;
    }

    .gallery-highlight h3 {
        font-size: 1.4rem;
    }

    .request-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .location-title {
        font-size: 1.6rem;
    }

    .cta-banner h2 {
        font-size: 1.65rem;
    }
     .map-overlay {
        width: 200px;
        height: 140px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 0 16px;
    }

    .about-hero-left h1 {
        font-size: 1.7rem;
    }

    .about-hero-right .about-section-title {
        font-size: 1.3rem;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-content {
        padding: 22px 18px;
    }

    .story-content p {
        font-size: 0.97rem;
    }

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

    .why-card {
        padding: 32px 20px;
    }

    .vm-card {
        padding: 22px 18px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }


    .request-card {
        padding: 28px 16px;
    }

    .cta-banner h2 {
        font-size: 1.25rem;
        padding: 0 12px;
       letter-spacing: 1px;
    }

    .working-hours-box {
        padding: 36px 24px;
    }
}

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

    .working-hours-box {
        margin-top: 30px;
    }
}