/* ========================================
   HOME PAGE SPECIFIC STYLES
   ======================================== */

/* CATEGORY NAVIGATION SECTION */
.category-nav-section {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.category-nav-scroll {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    text-decoration: none;
    color: #333333;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 90px;
}

.category-nav-item:hover {
    background: #f5f5f5;
    color: #2576E6;
    transform: translateY(-2px);
}

.category-nav-icon {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2576E6;
    transition: all 0.3s ease;
}

.category-nav-item:hover .category-nav-icon {
    background: #2576E6;
    color: #ffffff;
    transform: scale(1.1);
}

.category-nav-label {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: #333333;
}

@media (max-width: 768px) {
    .category-nav-section {
        padding: 10px 0;
        background: #ffffff;
        border-bottom: 1px solid #e5edf8;
    }

    .category-nav-container {
        padding: 0 12px;
        overflow: visible;
    }

    .category-nav-scroll {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 8px 2px 10px;
        margin: 0;
        scroll-padding-inline: 2px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .category-nav-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-nav-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .category-nav-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .category-nav-item {
        flex: 0 0 76px;
        min-width: 76px;
        padding: 9px 8px;
        gap: 6px;
        border: 1px solid #e9eff8;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 7px 18px rgba(15, 64, 130, 0.05);
        scroll-snap-align: start;
    }

    .category-nav-item:last-child {
        border-right: none;
    }

    .category-nav-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .category-nav-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .category-nav-section {
        padding: 8px 0;
    }

    .category-nav-container {
        padding: 0 10px;
        overflow: visible;
    }

    .category-nav-scroll {
        gap: 9px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 6px 2px 9px;
        margin-left: 0;
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .category-nav-item {
        flex-basis: 68px;
        min-width: 68px;
        padding: 8px 7px;
        gap: 4px;
        border: 1px solid #e9eff8;
        border-radius: 15px;
    }

    .category-nav-item:last-child {
        border-right: none;
    }

    .category-nav-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .category-nav-label {
        font-size: 10px;
        line-height: 1.15;
    }
}

/* HERO SLIDESHOW SECTION */
.hero-section {
    width: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 760px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #ffffff;
}

.slide-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }

    .slide-image {
        object-fit: contain;
        background-color: #ffffff;
    }

    .slide-overlay {
        background: rgba(0, 0, 0, 0.1);
    }
}

.slide-content {
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2576E6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: #1a5bb8;
    transform: translateY(-2px);
}

.slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(4px);
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    user-select: none;
    font-size: 24px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

@media (max-width: 768px) {
    .prev,
    .next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}


.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        height: 55vh;
        min-height: 350px;
        max-height: 500px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

/* PRICE RANGE SECTION */
.price-range-section {
    padding: 20px 0;
    background: #ffffff;
}

.price-range-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-range-card {
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.price-range-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-range-card:hover .price-range-img {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-range-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

@media (max-width: 768px) {
    .price-range-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .price-range-img {
        font-size: 24px;
    }
}

/* FEATURED COLLECTION SECTIONS */
.featured-collection {
    padding: 20px 0;
    background: #ffffff;
}

.featured-collection + .trust-badges-section,
.trust-badges-section + .featured-collection {
    margin-top: 10px;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.section-title.typewriter {
    font-size: 40px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    color: #0f1f3c;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
}

.section-title.typewriter::after {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 90%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.65) 45%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.65) 55%, transparent 100%);
    transform: skewX(-20deg);
    animation: shine-effect 1.8s ease-in-out infinite;
}

@keyframes shine-effect {
    0% { left: -110%; }
    50% { left: 110%; }
    100% { left: 110%; }
}

@keyframes title-text-shine {
    0% { background-position: 120% 50%; }
    55% { background-position: -20% 50%; }
    100% { background-position: -20% 50%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #2576E6; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 20px;
    align-items: start;
    grid-auto-rows: auto;
    width: 100%;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    max-height: 540px;
    height: auto;
    min-width: 0;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.product-card-footer {
    margin-top: auto;
}

.product-card:hover {
    border-color: #2576E6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card-footer {
    margin-top: auto;
}

.product-card:hover {
    border-color: #2576E6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.product-image-secondary {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image {
    display: none;
}

.product-card:hover .product-image-secondary {
    display: block;
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 12px;
}

.product-stars {
    color: #ffc107;
}

.product-review-count {
    color: #666;
    font-size: 11px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    text-decoration: none;
}

.product-price-original {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 13px;
    margin-right: 8px;
}

.product-discount {
    color: #dc2626;
    background: #fee2e2;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    min-width: 0;
}

.product-stars {
    color: #ffc107;
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 auto;
}

.product-review-count {
    color: #475569;
    font-size: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2px 7px;
    font-weight: 600;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.product-button, .product-button:link, .product-button:visited {
    background: #2576E6;
    color: white;
    border: none;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.product-button:hover {
    background: #1a5bb8;
    transform: scale(1.02);
}

.product-card-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.product-qty-input {
    width: 60px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #1f2937;
    background: #f8fafc;
}

.product-qty-stepper {
    display: inline-flex;
    align-items: center;
    min-width: 112px;
    height: 38px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
}

.qty-stepper-btn {
    width: 34px;
    height: 100%;
    border: none;
    background: #ffffff;
    color: #1d4ed8;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.qty-stepper-btn:hover {
    background: #eaf2ff;
    transform: none;
    box-shadow: none;
}

.product-qty-stepper .product-qty-input {
    width: 44px;
    height: 100%;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 0 4px;
    text-align: center;
    background: #f8fafc;
    font-weight: 700;
}

.btn-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #2576E6 0%, #5B8DFE 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    padding: 10px 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 118, 230, 0.35);
}

.cart-update-flash {
    animation: pulseCartBadge 0.4s ease-in-out;
}

@keyframes pulseCartBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.view-all-wrapper {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 10px;
}

.view-all-btn {
    display: inline-block;
    background: #2576E6;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
}

.view-all-btn:hover {
    background: #1a5bb8;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 0;
        max-height: none;
        background: #f3f4f6;
    }

    .slideshow-container {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 7.5;
        background: #f3f4f6;
        overflow: hidden;
    }

    .slide {
        top: 0;
        height: 100%;
    }

    .slide-image {
        object-fit: contain;
        object-position: center;
        background-color: #f3f4f6;
    }

    .slide-overlay {
        display: none;
    }

    .prev,
    .next {
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 38px;
        font-size: 17px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
        backdrop-filter: blur(6px);
    }

    .prev {
        left: 4px;
        right: auto;
    }

    .next {
        right: 4px;
    }

    .slide-dots {
        top: auto;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        gap: 5px;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.38);
        backdrop-filter: blur(6px);
    }

    .dot {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }

    .dot.active {
        transform: scale(1.08);
    }

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

    .section-title {
        font-size: clamp(25px, 9vw, 34px);
        line-height: 1.08;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .section-title.typewriter {
        display: block;
        white-space: normal;
        overflow: visible;
        letter-spacing: 0;
        word-break: normal;
        color: #0f1f3c;
        background: linear-gradient(100deg, #0f1f3c 0%, #0f1f3c 38%, #ffffff 49%, #1d4ed8 56%, #0f1f3c 68%, #0f1f3c 100%);
        background-size: 240% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: title-text-shine 2.6s ease-in-out infinite;
    }

    .section-title.typewriter::after {
        display: none;
    }

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

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .trust-badge {
        padding: 10px 8px;
        min-height: 88px;
    }

    .trust-icon {
        font-size: 22px;
    }

    .trust-badge h3 {
        font-size: 14px;
    }

    .trust-badge p {
        font-size: 11px;
    }

    .view-all-wrapper {
        margin-top: 6px;
        margin-bottom: 8px;
    }

    .product-info {
        padding: 10px 10px 8px;
        gap: 6px;
    }

    .product-title {
        font-size: 12px;
        line-height: 1.35;
        min-height: 32px;
        margin-bottom: 2px;
    }

    .product-price {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .product-rating {
        align-items: flex-start;
        gap: 4px;
        flex-wrap: wrap;
        margin-bottom: 2px;
    }

    .product-stars {
        font-size: 11px;
        line-height: 1.2;
    }

    .product-review-count {
        flex: 0 1 auto;
        font-size: 10px;
        padding: 3px 7px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .product-price-original,
    .product-discount {
        font-size: 10px;
        margin: 0;
    }

    .product-discount {
        padding: 3px 7px;
    }

    .product-card-footer {
        margin-top: 8px;
        padding: 0 10px 10px;
    }

    .product-quantity-controls {
        display: grid;
        grid-template-columns: auto minmax(88px, 1fr);
        gap: 8px;
        align-items: center;
    }

    .qty-label {
        font-size: 12px;
        font-weight: 700;
        color: #334155;
    }

    .product-qty-stepper {
        width: 100%;
        min-width: 0;
        height: 34px;
    }

    .qty-stepper-btn {
        width: 28px;
        font-size: 15px;
    }

    .product-qty-stepper .product-qty-input {
        width: 100%;
        min-width: 0;
        height: 34px;
        padding: 0 2px;
        text-align: center;
        font-size: 13px;
    }

    .btn-add-to-cart {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 40px;
        padding: 9px 10px;
        border-radius: 10px;
        font-size: 12px;
        line-height: 1.15;
        box-shadow: 0 8px 18px rgba(37, 118, 230, 0.24);
    }
}

@media (min-width: 1201px) {
    .slideshow-container {
        height: 55vh;
        min-height: 480px;
        max-height: 640px;
    }

    .slide-image {
        object-fit: contain;
        filter: brightness(0.94);
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
        gap: 22px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-card {
        min-height: 430px;
        max-height: 540px;
    }
}

/* TRUST BADGES SECTION */
.trust-badges-section {
    background: linear-gradient(135deg, #2576E6 0%, #1a5bb8 100%);
    padding: 8px 0;
    margin: 8px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid #e6b840;
    border-radius: 8px;
    padding: 8px 8px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    min-height: 88px;
}

.trust-badge h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.trust-badge p {
    font-size: 11px;
}



.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #FFA500;
}

.trust-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.trust-badge h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.trust-badge p {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

.trust-badge h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 24px 0;
        margin: 20px 0;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-badge {
        padding: 16px;
        border-radius: 8px;
    }

    .trust-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .trust-badge h3 {
        font-size: 14px;
    }

    .trust-badge p {
        font-size: 12px;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 40px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #2576E6;
    box-shadow: 0 4px 12px rgba(37, 118, 230, 0.1);
}

.faq-header {
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-item.active .faq-header {
    background: #2576E6;
    color: #ffffff;
}

.faq-header:hover {
    background: #eeeeee;
}

.faq-item.active .faq-header:hover {
    background: #1a5bb8;
}

.faq-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FFD700;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

.faq-content p:first-child {
    padding-top: 20px;
    border-top: none;
}

.faq-content a {
    color: #2576E6;
    text-decoration: none;
    font-weight: 600;
}

.faq-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 24px 0;
    }

    .faq-header {
        font-size: 14px;
        padding: 14px 16px;
    }

    .faq-content p {
        padding: 16px;
        font-size: 13px;
    }

    .faq-container {
        max-width: 100%;
    }
}

/* WHATSAPP BUTTON */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsapp-pulse 2.4s infinite ease-in-out;
}

.whatsapp-button:hover {
    background: #1fb855;
    transform: scale(1.14);
}

.whatsapp-button i,
.whatsapp-button svg {
    width: 1em;
    height: 1em;
    display: block;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 95px;
        right: 16px;
    }
}

/* ABOUT US SECTION */
.about-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    color: #2576E6;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text h4 {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.highlight-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2576E6;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(37, 118, 230, 0.1);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.highlight-box h4 {
    font-size: 16px;
    color: #2576E6;
    margin: 10px 0;
    text-align: center;
}

.highlight-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
    text-align: center;
}

.about-hero-section {
    padding: 50px 0 24px;
    background: linear-gradient(180deg, #f5f7ff 0%, #e9f0ff 45%, #f9fbff 100%);
}

.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    margin: 0 auto 30px;
    max-width: 960px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(20, 60, 120, 0.18);
    border: 1px solid rgba(20, 66, 146, 0.22);
}

.about-hero-image-wrapper {
    width: min(100%, 700px);
    max-width: 100%;
    min-height: 330px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(20, 70, 130, 0.14);
    border: 1px solid rgba(79, 128, 238, 0.28);
}

.about-hero-image {
    width: 100%;
    max-width: 100%;
    min-height: 330px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 18px 14px 16px;
        border-radius: 16px;
        box-shadow: 0 12px 24px rgba(12, 56, 145, 0.12);
        border: 1px solid rgba(89, 138, 247, 0.2);
    }
    .about-hero-image-wrapper {
        min-height: 220px;
    }
}

.about-page-wrapper {
    padding: 30px 16px 70px;
    background: #f4f8ff;
}

.about-page-wrapper .about-header {
    max-width: 1040px;
    margin: 0 auto 12px;
    padding: 10px 16px;
}

.about-page-wrapper .about-header h1 {
    color: #004aad;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.about-box {
    border-radius: 22px;
    padding: 28px;
    background-color: #fff;
    box-shadow: 0 18px 40px rgba(15, 40, 120, 0.15);
    border: 1px solid rgba(70, 112, 225, 0.24);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(12, 40, 110, 0.28);
    border-color: rgba(50, 98, 218, 0.8);
    background: #f8fbff;
}

.about-box.promise-card,
.about-box.choose-card,
.about-box.vision-card {
    border-radius: 22px;
    border: 1px solid rgba(40, 78, 201, 0.28);
    box-shadow: 0 14px 40px rgba(40, 72, 150, 0.12);
    padding: 28px;
    background: #fff;
}

.about-box.vision-card {
    background: linear-gradient(135deg, #113d94 0%, #1f6af1 60%, #2942d3 100%);
    border-color: rgba(126, 177, 255, 0.38);
}

.about-page-wrapper {
    background: linear-gradient(180deg, #edf3ff 0%, #f9fbff 45%, #ffffff 100%);
    padding: 35px 16px 70px;
}

.about-header {
    max-width: 1120px;
    margin: 0 auto 20px;
    padding: 0 14px;
}

.about-header h1 {
    color: #054cad;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.05;
}

.about-hero-section {
    padding: 20px 0 30px;
}

.about-hero {
    max-width: 1040px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .about-header h1 {
        font-size: 2.3rem;
        text-align: center;
    }

    .about-hero-image-wrapper {
        min-height: 220px;
    }

    .about-box {
        padding: 22px;
    }
}

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

.who-we-are-card::before {
    display: none;
}

.about-box:hover::before {
    animation: none;
}

@keyframes glowBar {
    0%,100% { box-shadow: 0 0 8px rgba(64, 142, 255, 0.8); }
    50% { box-shadow: 0 0 18px rgba(64, 142, 255, 1); }
}

.about-box h3 {
    margin-bottom: 12px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #062a70;
    text-transform: none;
    letter-spacing: 0.2px;
    position: relative;
}

.about-box-blue h3 {
    color: #fff !important;
}

.about-box-blue.who-we-are-card h3,
.who-we-are-card.about-box-blue h3 {
    color: #ffd700 !important;
}

.about-box-blue p,
.about-box-blue .vision-box,
.about-box-blue .vision-cta {
    color: #f5f8ff;
}

.about-box.trust-card {
    border-left: 5px solid #1e3fb5;
}

.about-box.about-box-white .who-we-are-desc,
.about-box.about-box-white .highlight-journey,
.about-box.about-box-white .promise-highlight {
    color: #0949a0;
}

.about-hero-text h2 {
    font-size: 34px;
    color: #062a70;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-hero-text p {
    font-size: 20px;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.4;
}

.about-hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-hero-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1f4db3;
    font-weight: 600;
}

.about-section {
    background: linear-gradient(180deg, #e9efff 0%, #f0f4ff 45%, #f9fbff 100%);
    padding: 32px 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 10px;
}

@media (min-width: 900px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-top: 20px;
    }
}

.about-box {
    border-radius: 22px;
    padding: 28px;
    background-color: #fff;
    box-shadow: 0 18px 40px rgba(15, 40, 120, 0.15);
    border: 1px solid rgba(70, 112, 225, 0.24);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(12, 40, 110, 0.28);
    border-color: rgba(50, 98, 218, 0.8);
    background: #f8fbff;
}

.about-box.promise-card,
.about-box.choose-card,
.about-box.vision-card {
    border-radius: 22px;
    border: 1px solid rgba(40, 78, 201, 0.28);
    box-shadow: 0 14px 40px rgba(40, 72, 150, 0.12);
    padding: 28px;
    background: #fff;
}

.about-box.vision-card {
    background: linear-gradient(135deg, #113d94 0%, #1f6af1 60%, #2942d3 100%);
    border-color: rgba(126, 177, 255, 0.38);
}

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

.who-we-are-card::before {
    display: none;
}

.about-box:hover::before {
    animation: none;
}

@keyframes glowBar {
    0%,100% { box-shadow: 0 0 8px rgba(64, 142, 255, 0.8); }
    50% { box-shadow: 0 0 18px rgba(64, 142, 255, 1); }
}

.about-box h3 {
    margin-bottom: 12px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #062a70;
    text-transform: none;
    letter-spacing: 0.2px;
    position: relative;
}

.who-we-are-card h3 {
    color: #ffd700 !important;
}

.about-box h3::after {
    display: none;
}

.about-box-blue h3 {
    color: #fff !important;
}

.about-box-blue.who-we-are-card h3,
.who-we-are-card.about-box-blue h3 {
    color: #ffd700 !important;
}

.about-box-blue p,
.about-box-blue .vision-box,
.about-box-blue .vision-cta {
    color: #f5f8ff;
}

.about-box.trust-card {
    border-left: 5px solid #1e3fb5;
    background: #fff;
    box-shadow: 0 12px 24px rgba(20, 57, 129, 0.1);
    padding: 30px 26px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.about-box.trust-card h3 {
    color: #0f2d70;
    margin-bottom: 14px;
}

.about-box.trust-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 95px;
    height: 4px;
    background: #1a4fc4;
    border-radius: 2px;
}

.about-box.trust-card p {
    color: #1f4db3;
    margin: 0 auto 12px;
    max-width: 550px;
}

.highlight-journey {
    font-weight: 700;
    color: #143873;
}

.about-box.trust-card ul {
    list-style: none;
    margin: 18px auto 0;
    padding: 0;
    max-width: 520px;
    text-align: left;
}

.about-box.trust-card ul li {
    margin: 10px 0;
    font-size: 16px;
    color: #0c3f82;
    font-weight: 600;
    padding-left: 28px;
    position: relative;
}

.about-box.trust-card ul li::before {
    content: '👉';
    position: absolute;
    left: 0;
    top: 0;
    color: #1a4fc4;
    font-size: 17px;
}

.about-box.trust-card ul li + li {
    margin-top: 12px;
}

.about-box.promise-card h3::after,
.about-box.choose-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #1e56d2, #6747ed);
    border-radius: 2px;
}

.promise-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    margin-top: 18px;
    width: min(100%, 860px);
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    background: rgba(235, 243, 255, 0.72);
    border: 1px solid rgba(98, 131, 218, 0.24);
    border-radius: 20px;
}

.promise-item {
    background: #fff;
    border: 1px solid rgba(42, 97, 226, 0.26);
    border-top: 4px solid #4f6af8;
    border-radius: 20px;
    padding: 26px 20px;
    font-weight: 800;
    color: #103b7e;
    text-align: center;
    min-height: 146px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(31, 70, 147, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(30, 69, 143, 0.28);
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(35, 64, 140, 0.18);
}

.promise-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #28b463;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.promise-highlight {
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #0f3b7b;
}

.promise-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    color: #15396f;
}

.promise-item::before {
    display: none;
}

.about-box.choose-card {
    border-left: 5px solid #1e3fb5;
    background: #fff;
    box-shadow: 0 14px 26px rgba(20, 38, 109, 0.15);
    padding: 30px 26px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(20, 38, 109, 0.22);
}

.about-box.choose-card {
    text-align: center;
}

.about-box.choose-card h3 {
    margin-bottom: 18px;
    font-size: 2rem;
    color: #0f2f70;
    font-weight: 900;
}

.about-box.choose-card p {
    color: #1f4db3;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
}

.about-box.choose-card p:nth-of-type(1) {
    font-weight: 700;
}

.about-box.choose-card p:nth-of-type(2) {
    font-weight: 600;
}

.about-box.vision-card {
    background: linear-gradient(135deg, #1a3c98 0%, #2f63da 55%, #5f3fd6 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    padding: 30px 24px;
    border-radius: 18px;
    text-align: center;
}

.about-box.vision-card h3 {
    color: #ffe989;
    font-size: 2.15rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-box.vision-card p {
    color: #dce9ff;
    font-weight: 500;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.vision-box {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    padding: 18px 16px;
    color: #fff;
    margin: 0 auto;
    margin-top: 18px;
    width: min(100%, 630px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
    font-size: 16px;
    font-weight: 700;
}

.vision-cta {
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.about-box.vision-card h3 {
    color: #ffd700 !important;
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    .promise-item {
        min-height: 126px;
        padding: 16px 14px;
    }
    .about-box.choose-card p {
        margin-bottom: 14px;
    }
    .about-box.blue .vision-box, .vision-box {
        margin-bottom: 18px;
    }
}


.about-box p,
.about-box li,
.about-box .promise-item {
    font-size: 15px;
    line-height: 1.7;
    color: #1f4e8b;
}

.about-box ul {
    margin-top: 10px;
    padding-left: 1rem;
}

.about-box ul li {
    margin-bottom: 8px;
    list-style: none;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

.about-box ul li::before {
    content: '✔';
    margin-right: 10px;
    color: #0f58f9;
    font-size: 16px;
    line-height: 1.2;
}

.about-box.about-box-blue {
    background: linear-gradient(130deg, #0b2f83, #0c48bf 35%, #3f6aff 90%);
    color: #f6fbff;
    border: 1px solid rgba(100, 141, 255, 0.4);
}

.about-box.about-box-blue h3,
.about-box.about-box-blue p,
.about-box.about-box-blue li,
.about-box.about-box-blue .vision-box {
    color: #f0f8ff;
}

.about-box.about-box-blue ul li::before {
    color: #b8dcff;
}

.who-we-are-card {
    padding: 24px 22px;
    min-height: 220px;
}

.who-we-are-card h3 {
    color: #ffd700 !important;
    font-weight: 900;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.who-we-are-card .who-we-are-title,
.who-we-are-card .who-we-are-desc {
    color: #ffffff;
    text-align: center;
    margin: 6px auto;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.7;
}

.who-we-are-card .who-we-are-title {
    font-weight: 600;
}

.who-we-are-card .who-we-are-desc {
    max-width: 520px;
}

.about-box.about-box-blue .promise-item,
.about-box.about-box-white .promise-item {
    background: #fff;
    border: 1px solid #d7e1f8;
    border-top: 4px solid #6432f5;
    border-radius: 16px;
    padding: 24px 18px;
    color: #1e3f6f;
    font-weight: 800;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 26px rgba(40, 70, 152, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-box.about-box-white {
    background: #ffffff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    width: min(100%, 840px);
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
}

@media (max-width: 768px) {
    .about-hero,
    .about-hero-section {
        padding: 14px 12px 10px;
        margin: 0;
    }

    .about-hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .about-hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-section {
        padding: 22px 10px 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 8px;
    }

    .about-box {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 16px 12px;
    }

    .promise-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 14px auto 0;
    }

    .promise-item {
        width: 100%;
        min-height: 120px;
        padding: 14px 12px;
        margin: 0;
    }

    .about-box.vision-card {
        padding: 18px 14px;
    }
}

.promise-item {
    background: #ffffff;
    border: 1px solid rgba(16, 36, 107, 0.12);
    border-radius: 16px;
    padding: 28px 20px;
    font-weight: 700;
    color: #0a3d8f;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(20, 35, 125, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 43, 124, 0.16);
}

.promise-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #3ccb82;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.promise-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #0d3b7d;
}

.vision-box {
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    color: #eaf4ff;
    box-shadow: inset 0 0 12px rgba(255,255,255,0.18);
}

.vision-cta {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #e2f1ff;
}

.about-box:last-child {
    margin-bottom: 0;
}

.about-box.bg-gradient h3,
.about-box.bg-gradient p {
    color: #f0f9ff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.about-card h4 {
    color: #12418d;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.about-card p {
    color: #4b4b4b;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-card ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.about-card ul li {
    margin-bottom: 8px;
    color: #1f4db3;
    font-weight: 600;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    margin-top: 16px;
    width: min(100%, 840px);
    margin-left: auto;
    margin-right: auto;
}

.promise-grid span {
    display: none;
}

@media (max-width: 768px) {
    .about-box,
    .promise-grid,
    .promise-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .promise-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 0;
    }
    .promise-item {
        min-width: 0;
        min-height: auto;
    }
}


.vision-box {
    background: rgba(14, 71, 231, 0.12);
    border: 1px dashed #0e47e7;
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
}

@media (max-width: 992px) {
    .about-hero,
    .about-content,
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT US SECTION */
.contact-section {
    background: white;
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    color: #2576E6;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.contact-details a {
    color: #2576E6;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-form-box h3 {
    font-size: 22px;
    color: #2576E6;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.contact-whatsapp-btn:hover {
    background: #1FA855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-btn i {
    font-size: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-form-box {
        padding: 24px;
    }

    .contact-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* SECTION CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ========================================
   ABOUT PAGE AUTO PREMIUM OVERRIDES
   ======================================== */
.about-page-wrapper {
    background: linear-gradient(180deg, #f2f7ff 0%, #edf3ff 40%, #ffffff 100%);
    padding: 34px 10px 72px;
}

.about-header {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto 20px;
    padding: 0 14px;
}

.about-header h1 {
    color: #0d4fa6;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.06;
    letter-spacing: 0.3px;
}

.about-hero-section {
    padding: 18px 0 28px;
}

.about-hero {
    max-width: 1040px;
    margin: 0 auto;
    box-shadow: 0 18px 32px rgba(0, 48, 128, 0.16);
}

.about-hero-image-wrapper {
    width: min(100%, 960px);
    max-width: 100%;
    min-height: 320px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(16, 60, 160, 0.15);
    border: 1px solid rgba(84, 123, 227, 0.28);
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-section {
    padding: 0;
    margin-top: 8px;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

.about-box {
    border-radius: 20px;
    padding: 26px;
    background-color: #ffffff;
    box-shadow: 0 16px 42px rgba(2, 43, 114, 0.12);
    border: 1px solid rgba(69, 115, 211, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(1, 35, 98, 0.2);
    border-color: rgba(44, 103, 232, 0.8);
    background: #f7fbff;
}

.about-box-blue {
    background: linear-gradient(135deg, #0b3f97 0%, #0e72e8 100%);
    color: #fff;
    border-color: rgba(21, 95, 229, 0.48);
}

.about-box-blue h3,
.about-box-blue p,
.about-box-blue .vision-box,
.about-box-blue .vision-cta {
    color: #f5f8ff;
}

.about-box h3 {
    margin-bottom: 10px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #0b3d95;
}

.about-box p {
    color: #08305d;
    margin: 0.4rem 0 0.8rem;
    line-height: 1.65;
}

.about-box ul,
.about-box ol {
    margin-left: 18px;
    color: #1a408d;
    line-height: 1.65;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.promise-item {
    background: #ffffff;
    border: 1px solid rgba(29, 89, 206, 0.2);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(12, 73, 179, 0.08);
}

.promise-item p {
    font-size: 14px;
    font-weight: 700;
    color: #0b3d95;
    margin: 0;
}

@media (max-width: 900px) {
    .about-page-wrapper {
        padding: 20px 8px 60px;
    }

    .about-header h1 {
        font-size: 2.4rem;
        text-align: center;
    }

    .about-box {
        padding: 18px;
    }

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



