/* =================================================================
   KITCHENPRO — SECTIONS CSS REVISED
   Clean white service cards, tidy gallery, rose-pink promo, neat footer
   ================================================================= */

/* =================================================================
   ABOUT SECTION
   ================================================================= */
.section-about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

/* Section label pill */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E91E8C;
    background: rgba(233, 30, 140, 0.07);
    border: 1px solid rgba(233, 30, 140, 0.18);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.section-label::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #E91E8C;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #6c757d;
    margin-bottom: 14px;
}

.about-vision {
    margin-top: 20px;
    padding: 18px 22px;
    background: #fdf4f9;
    border-left: 3px solid #E91E8C;
    border-radius: 0 10px 10px 0;
}

.about-vision h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #E91E8C;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.about-vision p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.value-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #E91E8C, #C4166D);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.value-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.value-text p {
    font-size: 0.86rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
    width: 100%;
    min-height: 400px;
    background: #F5F5F5;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 2px dashed #E0E0E0;
}

.about-placeholder i {
    font-size: 3.5rem;
    color: #E91E8C;
    opacity: 0.3;
}

.about-placeholder span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #BBBBBB;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* =================================================================
   SERVICES SECTION — Clean white cards, 3×2 grid
   ================================================================= */
.section-services {
    padding: 100px 0;
    background: #F8F8F8;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.text-center {
    text-align: center;
}

.section-description {
    font-size: 1rem;
    color: #6c757d;
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.75;
}

/* 3 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Clean white card */
.service-card {
    background: #FFFFFF;
    padding: 32px 26px;
    border-radius: 16px;
    border: 1px solid #EEEEEE;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E91E8C, #FF6BB3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 0;
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 30, 140, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(233, 30, 140, 0.15);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.service-card:hover .service-num {
    color: rgba(233, 30, 140, 0.3);
}

.service-icon-sm {
    width: 44px;
    height: 44px;
    background: rgba(233, 30, 140, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E8C;
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-sm {
    background: #E91E8C;
    color: #fff;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.86rem;
    line-height: 1.7;
    color: #888888;
    margin: 0;
}

.promo-expire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
}

/* =================================================================
   GALLERY SECTION — Tidy 3-column masonry-style grid
   ================================================================= */
.section-pad {
    padding: 100px 0;
}

.bg-white {
    background: #ffffff;
}

.section-title {
    margin-bottom: 48px;
}

.section-title.text-center {
    text-align: center;
}

.label,
.section-title .label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E91E8C;
    background: rgba(233, 30, 140, 0.07);
    border: 1px solid rgba(233, 30, 140, 0.18);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.label::before,
.section-title .label::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #E91E8C;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111111;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1rem;
    color: #6c757d;
    max-width: 560px;
    margin: 0 auto;
}

/* Gallery header */
.gal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.gal-title {
    font-size: 2rem;
    font-weight: 900;
    color: #111111;
    margin: 5px 0 0;
    letter-spacing: -0.5px;
}

.gal-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #E91E8C;
    border: 1px solid rgba(233, 30, 140, 0.25);
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.gal-view-all:hover {
    background: rgba(233, 30, 140, 0.06);
    color: #C4166D;
}

/* Tabs */
.gal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #F0F0F0;
    padding-bottom: 0;
}

.gal-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: #AAAAAA;
    transition: all 0.25s ease;
    border-radius: 0;
}

.gal-tab:hover {
    color: #E91E8C;
}

.gal-tab.active {
    color: #E91E8C;
    border-bottom-color: #E91E8C;
    font-weight: 700;
}

/* Load More Button */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: #E91E8C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-load-more:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

.btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* -----------------------------------------
   [7] Why Choose Us 
   ----------------------------------------- */
/* Gallery Grid */
.gal-bento {
    display: grid;
    grid-template-columns: repeat(var(--gal-cols, 3), 1fr);
    gap: 15px;
}

.gal-bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #F0F0F0;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gal-bento-item:hover .gal-img {
    transform: scale(1.06);
}

.gal-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.6rem;
    color: white;
}

.gal-bento-item:hover .gal-hover {
    opacity: 1;
}

.gal-play {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(233, 30, 140, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.gal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #CCCCCC;
    background: #F5F5F5;
}

.gal-tab-content {
    display: none;
}

.gal-tab-content.active {
    display: grid;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =================================================================
   BLOG / ARTICLE SECTION
   ================================================================= */
.article-section {
    background: #F8F8F8;
}

.blog-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.blog-featured {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.blog-featured-thumb {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #F0F0F0;
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-img {
    transform: scale(1.04);
}

.blog-featured-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-featured-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-featured-title a {
    color: #111111;
    transition: 0.3s;
}

.blog-featured-title a:hover {
    color: #E91E8C;
}

.blog-featured-body .article-excerpt {
    flex: 1;
}

.blog-featured-body .article-link {
    margin-top: auto;
}

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-side-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    transition: all 0.3s ease;
    flex: 1;
}

.blog-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.blog-side-thumb {
    width: 150px;
    min-width: 150px;
    overflow: hidden;
    background: #F0F0F0;
}

.blog-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-side-card:hover .blog-side-img {
    transform: scale(1.04);
}

.blog-side-body {
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-side-title {
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 7px;
}

.blog-side-title a {
    color: #111111;
    transition: 0.3s;
}

.blog-side-title a:hover {
    color: #E91E8C;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #AAAAAA;
    margin-bottom: 8px;
}

.article-date i {
    color: #E91E8C;
}

.article-excerpt {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 12px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #E91E8C;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.article-link:hover {
    gap: 10px;
    color: #C4166D;
}

@media (max-width: 968px) {
    .blog-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-side-thumb {
        width: 110px;
        min-width: 110px;
    }

    .blog-featured-thumb {
        height: 220px;
    }
}

/* =================================================================
   CTA FOOTER SECTION — Rose pink, not black+pink
   ================================================================= */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #C4166D 0%, #E91E8C 50%, #FF6BB3 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle pattern overlay */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.04) 40px,
            rgba(255, 255, 255, 0.04) 41px);
    z-index: 1;
}

.cta-section::after {
    display: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-section h2 span {
    -webkit-text-fill-color: unset;
    color: #fff;
    background: none;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #E91E8C !important;
    padding: 15px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #fff1f7;
}

.btn-whatsapp i {
    font-size: 1.2rem;
    color: #E91E8C !important;
}

/* =================================================================
   RESPONSIVE SECTIONS
   ================================================================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gal-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .section-about,
    .section-services {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-right-side {
        order: -1;
    }

    .gal-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .gal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .about-info-boxes {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gal-bento {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .blog-split {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   WHY CHOOSE US — Split Layout
   ================================================================= */
.section-why {
    padding: 100px 0;
    background: #ffffff;
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content {
    padding-right: 20px;
}

.why-desc {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 30px;
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.why-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #E91E8C, #C4166D);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.why-point-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.why-point-text p {
    font-size: 0.83rem;
    line-height: 1.55;
    color: #888888;
    margin: 0;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
    object-fit: cover;
}

.why-image .about-placeholder {
    border-radius: 16px;
}

@media (max-width: 968px) {
    .why-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-content {
        padding-right: 0;
    }

    .why-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .section-why {
        padding: 60px 0;
    }

    .why-points {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   PROMO SECTION — Clean rose-pink (no black)
   ================================================================= */
.section-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #D4136A 0%, #E91E8C 50%, #F5529E 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 51px);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.promo-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.promo-subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 36px;
    line-height: 1.7;
}

.promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #D4136A;
    padding: 15px 36px;
    font-size: 0.97rem;
    font-weight: 800;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-promo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: #C4166D;
    background: #fff1f7;
}

.promo-expire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 2rem;
    }

    .promo-cta {
        flex-direction: column;
        gap: 14px;
    }
}

/* =================================================================
   LOCATION SECTION
   ================================================================= */
.bg-light-border {
    background: #F8F8F8;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 14px;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.06);
}

.location-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E91E8C;
    margin-bottom: 5px;
}

.location-text {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.location-icon {
    color: #E91E8C !important;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.about-right-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Info Boxes Moved to About */
.about-info-boxes {
    display: flex;
    gap: 30px;
    padding: 24px;
    background: #fdf4f9;
    border-radius: 16px;
    border: 1px solid rgba(233, 30, 140, 0.1);
    justify-content: space-between;
}

.about-info-boxes .info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    flex: 1;
}

.about-info-boxes .info-number {
    font-size: 2rem;
    font-weight: 900;
    color: #E91E8C;
    letter-spacing: -1px;
    line-height: 1;
}

.about-info-boxes .info-box h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111111;
    margin: 8px 0 14px;
}

.map-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

/* =================================================================
   FOOTER — Dark, clean
   ================================================================= */
.footer-modern {
    background: #0D0D0D;
    color: rgba(255, 255, 255, 0.45);
}

.footer-main {
    padding: 40px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo .logo-text-top {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-logo .logo-text-bottom {
    font-size: 1.15rem;
    font-weight: 900;
    color: #E91E8C;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.32);
}

.footer-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E91E8C;
    margin-bottom: 20px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.25s;
}

.footer-menu li a:hover {
    color: #E91E8C;
}

/* Social icons updated to use .footer-contact style */

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.86rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.38);
}

.contact-item-wrap {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-contact li i {
    color: #E91E8C;
    font-size: 0.9rem;
    margin-top: 2px;
    min-width: 15px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.38);
    transition: 0.25s;
}

.footer-contact li a:hover {
    color: #E91E8C;
}

.footer-bottom {
    padding: 18px 0;
    background: #090909;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-links a {
    color: rgba(233, 30, 140, 0.5);
    transition: 0.25s;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: #E91E8C;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* =================================================================
   PAGE TEMPLATE & CONTACT PAGE
   ================================================================= */
.page-container {
    padding: 60px 20px;
}

.page-content-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-title-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.page-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #111111;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #E5E5E5;
    border-radius: 10px;
    transition: all 0.25s ease;
    font-family: inherit;
    font-size: 0.94rem;
}

.form-input:focus {
    border-color: #E91E8C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.08);
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E8C, #C4166D);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(233, 30, 140, 0.25);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.35);
    color: #fff;
}

/* Consistent WhatsApp Button Colors */
.btn-wa,
.btn-submit-wa {
    width: 100%;
    font-size: 1rem;
    background: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25) !important;
    text-align: center;
    justify-content: center;
}

.btn-wa:hover,
.btn-submit-wa:hover {
    background: #128C7E !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
    color: #ffffff !important;
}

.map-section {
    margin-top: 56px;
}

.map-container {
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}