/* ============================================
   HERO SECTION - Idel Designs Inc.
   Modern Gradient Overlay | Left-Aligned Content
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Hero Container ----- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0B0B0B;
    padding: 80px 0 40px 0;
}

/* ----- Background Image ----- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1);
}

/* ----- Gradient Overlay ----- */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(11, 11, 11, 0.92) 0%,
        rgba(11, 11, 11, 0.85) 15%,
        rgba(11, 11, 11, 0.70) 30%,
        rgba(11, 11, 11, 0.50) 45%,
        rgba(11, 11, 11, 0.30) 60%,
        rgba(11, 11, 11, 0.15) 75%,
        rgba(11, 11, 11, 0.05) 90%,
        rgba(11, 11, 11, 0) 100%
    );
}

/* ----- Second Overlay - Subtle Gold Glow from Left ----- */
.hero-gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(
        ellipse at 0% 50%,
        rgba(200, 169, 107, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ----- Content Container ----- */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px 0;
}

.hero-row {
    min-height: 80vh;
}

/* ============================================
   TEXT CONTENT - Left Aligned
   ============================================ */
.hero-text-col {
    padding-right: 40px;
}

/* ----- Badge ----- */
.hero-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.15);
    color: #C8A96B;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    background: rgba(200, 169, 107, 0.25);
    transform: translateY(-2px);
}

/* ----- Headline ----- */
.hero-headline {
    font-size: 3.8rem;
    font-weight: 800;
    color: #FCFCFB;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-headline-gold {
    color: #C8A96B;
    display: inline-block;
    position: relative;
}

.hero-headline-gold::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

/* ----- Subheading ----- */
.hero-subheading {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C8A96B;
    color: #0B0B0B;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.3);
}

.hero-btn-primary:hover {
    background: #9E8149;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(200, 169, 107, 0.4);
    text-decoration: none;
}

.hero-btn-primary i {
    font-size: 0.9rem;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FCFCFB;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    background: rgba(200, 169, 107, 0.1);
    border-color: #C8A96B;
    color: #C8A96B;
    transform: translateY(-3px);
    text-decoration: none;
}

/* ============================================
   STATS
   ============================================ */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    padding-right: 0;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #C8A96B;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ============================================
   RIGHT SIDE - IMAGE
   ============================================ */
.hero-image-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(200, 169, 107, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(200, 169, 107, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* Image Shimmer Effect */
.hero-image-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    z-index: 2;
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

.hero-featured-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame:hover .hero-featured-image {
    transform: scale(1.03);
}

/* Image Badge */
.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(12px);
    color: #FCFCFB;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    z-index: 3;
}

.hero-image-badge i {
    color: #C8A96B;
    font-size: 0.9rem;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: bounceDown 2.5s ease-in-out infinite;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, rgba(200, 169, 107, 0.5), transparent);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Large Desktops ----- */
@media (max-width: 1400px) {
    .hero-headline {
        font-size: 3.2rem;
    }
    
    .hero-featured-image {
        height: 380px;
    }
}

/* ----- Tablets & Smaller Desktops ----- */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px 0;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-text-col {
        padding-right: 0;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-subheading {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-stat {
        padding: 0 14px;
    }

    .hero-stat:first-child {
        padding-left: 0;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-gradient-overlay {
        background: linear-gradient(
            105deg,
            rgba(11, 11, 11, 0.92) 0%,
            rgba(11, 11, 11, 0.80) 30%,
            rgba(11, 11, 11, 0.60) 60%,
            rgba(11, 11, 11, 0.40) 80%,
            rgba(11, 11, 11, 0.20) 100%
        );
    }

    .hero-image-col {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 40px 0;
    }

    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-headline-gold::after {
        bottom: 2px;
        height: 2px;
    }

    .hero-subheading {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }

    .hero-stat {
        padding: 0 12px;
        align-items: center;
    }

    .hero-stat-divider {
        height: 24px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-bottom: 14px;
    }

    .hero-gradient-overlay {
        background: linear-gradient(
            105deg,
            rgba(11, 11, 11, 0.92) 0%,
            rgba(11, 11, 11, 0.85) 40%,
            rgba(11, 11, 11, 0.70) 70%,
            rgba(11, 11, 11, 0.50) 100%
        );
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-subheading {
        font-size: 0.88rem;
    }

    .hero-stat {
        padding: 0 8px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .hero-stat-divider {
        height: 20px;
    }
}
/* ============================================
   WHY CHOOSE US SECTION - Premium Design
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-why-choose {
    padding: 80px 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.section-why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.why-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.why-header-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    border: 1px solid rgba(200, 169, 107, 0.15);
}

.why-header-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B0B0B;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.why-header-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 0 auto 16px auto;
}

.why-header-subtitle {
    font-size: 1.1rem;
    color: #6B6B6B;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CARDS GRID
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* ============================================
   INDIVIDUAL CARD
   ============================================ */
.why-card {
    background: #FCFCFB;
    border-radius: 20px;
    padding: 36px 32px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 229, 229, 0.5);
    box-shadow: 0 2px 12px rgba(11, 11, 11, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 11, 11, 0.08);
    border-color: rgba(200, 169, 107, 0.2);
}

/* Card-specific hover effects */
.why-card-1:hover {
    border-top: 3px solid #C8A96B;
}

.why-card-2:hover {
    border-top: 3px solid #C8A96B;
}

.why-card-3:hover {
    border-top: 3px solid #C8A96B;
}

/* ----- Card Number ----- */
.why-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(200, 169, 107, 0.15);
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.why-card:hover .why-card-number {
    color: rgba(200, 169, 107, 0.3);
    transform: scale(1.1);
}

/* ----- Card Shimmer Effect ----- */
.why-card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 169, 107, 0.04) 50%,
        transparent 100%
    );
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.why-card:hover .why-card-shimmer {
    left: 150%;
}

/* ----- Card Icon ----- */
.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C8A96B;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.why-card:hover .why-card-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: scale(1.05) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(200, 169, 107, 0.25);
}

/* ----- Card Title ----- */
.why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0B0B;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* ----- Card Text ----- */
.why-card-text {
    font-size: 0.92rem;
    color: #6B6B6B;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

/* ----- Card Divider Line ----- */
.why-card-line {
    width: 30px;
    height: 2px;
    background: #E5E5E5;
    border-radius: 4px;
    margin-bottom: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card-line {
    width: 50px;
    background: #C8A96B;
}

/* ----- Card Link ----- */
.why-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6B6B6B;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card-link i {
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card-link:hover {
    color: #C8A96B;
}

.why-card-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.why-cta {
    text-align: center;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(229, 229, 229, 0.5);
    position: relative;
    z-index: 1;
}

.why-cta-text {
    font-size: 0.95rem;
    color: #6B6B6B;
    margin-bottom: 16px;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C8A96B;
    color: #0B0B0B;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.25);
}

.why-cta-btn:hover {
    background: #9E8149;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(200, 169, 107, 0.35);
    text-decoration: none;
}

.why-cta-btn i {
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-why-choose {
        padding: 60px 0;
    }

    .why-header-title {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 28px 24px 24px 24px;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-why-choose {
        padding: 48px 0;
    }

    .why-header {
        margin-bottom: 36px;
    }

    .why-header-title {
        font-size: 1.8rem;
    }

    .why-header-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .why-card {
        padding: 24px 20px 20px 20px;
        text-align: center;
        align-items: center;
    }

    .why-card-number {
        top: 12px;
        right: 14px;
        font-size: 0.6rem;
    }

    .why-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .why-card-title {
        font-size: 1.1rem;
    }

    .why-card-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .why-card-line {
        margin: 0 auto 12px auto;
    }

    .why-card-link {
        font-size: 0.8rem;
    }

    .why-cta {
        margin-top: 36px;
        padding-top: 28px;
    }

    .why-cta-text {
        font-size: 0.85rem;
    }

    .why-cta-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    /* Remove background ornaments on mobile */
    .section-why-choose::before,
    .section-why-choose::after {
        display: none;
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .section-why-choose {
        padding: 36px 0;
    }

    .why-header-title {
        font-size: 1.5rem;
    }

    .why-card {
        padding: 20px 16px 16px 16px;
    }

    .why-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .why-card-title {
        font-size: 1rem;
    }

    .why-card-text {
        font-size: 0.8rem;
    }

    .why-cta-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}
/* ============================================
   SERVICES SECTION - Image Cards
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-services {
    padding: 80px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* ----- Section Header ----- */
.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1px solid rgba(200, 169, 107, 0.15);
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B0B0B;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.services-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 0 auto 14px auto;
}

.services-subtitle {
    font-size: 1.05rem;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ============================================
   INDIVIDUAL SERVICE CARD
   ============================================ */
.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(11, 11, 11, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.1) 0%,
        rgba(11, 11, 11, 0.3) 30%,
        rgba(11, 11, 11, 0.7) 65%,
        rgba(11, 11, 11, 0.9) 90%,
        rgba(11, 11, 11, 0.95) 100%
    );
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.15) 0%,
        rgba(11, 11, 11, 0.35) 25%,
        rgba(11, 11, 11, 0.65) 55%,
        rgba(11, 11, 11, 0.85) 80%,
        rgba(11, 11, 11, 0.95) 100%
    );
}

/* ----- Hover Effects ----- */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 11, 11, 0.15);
}

.service-card:hover .service-card-title {
    color: #C8A96B;
}

.service-card:hover .service-card-btn {
    background: #C8A96B;
    color: #0B0B0B;
    border-color: #C8A96B;
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover .service-card-btn i {
    transform: translateX(4px);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-6deg);
}

/* ============================================
   CARD CONTENT
   ============================================ */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px 28px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ----- Icon ----- */
.service-card-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(11, 11, 11, 0.4);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ----- Title ----- */
.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FCFCFB;
    margin-bottom: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    max-width: 90%;
}

/* ----- Button ----- */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #FCFCFB;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    transform: translateY(4px);
}

.service-card-btn i {
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-btn:hover {
    text-decoration: none;
    color: #0B0B0B;
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.services-footer {
    text-align: center;
}

.services-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #0B0B0B;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #C8A96B;
}

.services-view-all:hover {
    background: #C8A96B;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 169, 107, 0.3);
    text-decoration: none;
}

.services-view-all i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        min-height: 280px;
    }

    .service-card-content {
        padding: 24px 20px 20px 20px;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-services {
        padding: 48px 0;
    }

    .services-header {
        margin-bottom: 32px;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.92rem;
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto 32px auto;
    }

    .service-card {
        min-height: 240px;
    }

    .service-card-content {
        padding: 20px 18px 18px 18px;
    }

    .service-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        border-radius: 12px;
    }

    .service-card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .service-card-btn {
        padding: 6px 16px;
        font-size: 0.78rem;
        opacity: 1;
        transform: translateY(0);
    }

    .services-view-all {
        padding: 12px 28px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .section-services {
        padding: 36px 0;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .services-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .service-card {
        min-height: 200px;
        border-radius: 16px;
    }

    .service-card-content {
        padding: 16px 14px 14px 14px;
    }

    .service-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 6px;
    }

    .service-card-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .service-card-btn {
        padding: 4px 14px;
        font-size: 0.7rem;
    }
}
/* ============================================
   ABOUT US SECTION - Premium Modern Design
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-about {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    overflow: hidden;
    background: #0B0B0B;
}

/* ----- Background Image ----- */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.section-about:hover .about-bg {
    transform: scale(1);
}

/* ----- Main Overlay - Diagonal Split ----- */
.about-overlay-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.92) 0%,
        rgba(11, 11, 11, 0.88) 20%,
        rgba(11, 11, 11, 0.75) 40%,
        rgba(11, 11, 11, 0.55) 55%,
        rgba(11, 11, 11, 0.35) 70%,
        rgba(11, 11, 11, 0.15) 85%,
        rgba(11, 11, 11, 0) 100%
    );
}

/* Gold Accent Glow Overlay */
.about-overlay-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: radial-gradient(
        ellipse at 0% 50%,
        rgba(200, 169, 107, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ============================================
   WRAPPER
   ============================================ */
.about-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 480px;
}

/* ============================================
   LEFT COLUMN - Decorative
   ============================================ */
.about-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Decorative Elements */
.about-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 107, 0.08);
    pointer-events: none;
}

.about-deco-1 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 5%;
    animation: floatDeco 12s ease-in-out infinite;
}

.about-deco-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation: floatDeco 16s ease-in-out infinite reverse;
    border-color: rgba(200, 169, 107, 0.05);
}

.about-deco-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(200, 169, 107, 0.03);
    animation: floatDeco 20s ease-in-out infinite;
}

@keyframes floatDeco {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.05); }
    50% { transform: translate(-8px, 10px) scale(0.95); }
    75% { transform: translate(12px, 8px) scale(1.02); }
}

/* ----- Experience Badge ----- */
.about-experience-badge {
    position: relative;
    z-index: 5;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 169, 107, 0.15);
    border-radius: 20px;
    padding: 28px 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-exp-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #C8A96B;
    line-height: 1;
    letter-spacing: -2px;
}

.about-exp-number::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, transparent);
    margin: 8px auto 6px auto;
}

.about-exp-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   RIGHT COLUMN - Content
   ============================================ */
.about-right {
    padding: 20px 0;
}

/* ----- Header ----- */
.about-header {
    margin-bottom: 24px;
}

.about-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(200, 169, 107, 0.12);
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #FCFCFB;
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.about-title-gold {
    color: #C8A96B;
    display: inline-block;
    position: relative;
}

.about-title-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.5;
}

.about-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin-top: 8px;
}

/* ----- Description ----- */
.about-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 90%;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.about-feature:hover {
    background: rgba(200, 169, 107, 0.06);
    border-color: rgba(200, 169, 107, 0.12);
    transform: translateX(4px);
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A96B;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover .about-feature-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: rotate(-6deg) scale(1.05);
}

.about-feature-content {
    display: flex;
    flex-direction: column;
}

.about-feature-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FCFCFB;
    line-height: 1.2;
}

.about-feature-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C8A96B;
    color: #0B0B0B;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 24px rgba(200, 169, 107, 0.25);
}

.about-cta:hover {
    background: #9E8149;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(200, 169, 107, 0.35);
    text-decoration: none;
}

.about-cta i {
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Large Desktops ----- */
@media (max-width: 1400px) {
    .about-title {
        font-size: 2.3rem;
    }
}

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-about {
        padding: 70px 0;
        min-height: auto;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .about-left {
        min-height: 200px;
        padding: 30px 0;
    }

    .about-deco-1 {
        width: 200px;
        height: 200px;
    }
    .about-deco-2 {
        width: 140px;
        height: 140px;
    }
    .about-deco-3 {
        width: 80px;
        height: 80px;
    }

    .about-experience-badge {
        padding: 20px 30px;
    }

    .about-exp-number {
        font-size: 3rem;
    }

    .about-right {
        padding: 0;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-description {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .about-overlay-main {
        background: linear-gradient(
            135deg,
            rgba(11, 11, 11, 0.92) 0%,
            rgba(11, 11, 11, 0.88) 30%,
            rgba(11, 11, 11, 0.78) 60%,
            rgba(11, 11, 11, 0.60) 85%,
            rgba(11, 11, 11, 0.40) 100%
        );
    }

    .about-overlay-main::after {
        width: 50%;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-about {
        padding: 50px 0;
    }

    .about-wrapper {
        gap: 20px;
    }

    .about-left {
        min-height: 160px;
        padding: 20px 0;
    }

    .about-deco-1 {
        width: 150px;
        height: 150px;
    }
    .about-deco-2 {
        width: 100px;
        height: 100px;
    }
    .about-deco-3 {
        width: 60px;
        height: 60px;
    }

    .about-experience-badge {
        padding: 16px 24px;
        border-radius: 16px;
    }

    .about-exp-number {
        font-size: 2.5rem;
    }

    .about-exp-label {
        font-size: 0.75rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-title-gold::after {
        bottom: 0;
        height: 2px;
    }

    .about-description {
        font-size: 0.92rem;
        margin-bottom: 20px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }

    .about-feature {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 10px;
    }

    .about-feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .about-feature-number {
        font-size: 0.75rem;
    }

    .about-feature-label {
        font-size: 0.6rem;
    }

    .about-cta {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .about-overlay-main {
        background: linear-gradient(
            135deg,
            rgba(11, 11, 11, 0.92) 0%,
            rgba(11, 11, 11, 0.88) 40%,
            rgba(11, 11, 11, 0.78) 70%,
            rgba(11, 11, 11, 0.60) 100%
        );
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .section-about {
        padding: 36px 0;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .about-feature {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .about-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        border-radius: 6px;
    }

    .about-feature-number {
        font-size: 0.7rem;
    }

    .about-feature-label {
        font-size: 0.55rem;
    }

    .about-exp-number {
        font-size: 2rem;
    }

    .about-cta {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
}

/* ============================================
   SERVICE AREAS SECTION - 3 Columns Premium
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-areas {
    padding: 80px 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Decorations */
.section-areas::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-areas::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.areas-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.areas-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.areas-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.areas-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B0B0B;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.areas-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 0 auto 14px auto;
    position: relative;
}

.areas-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    animation: shimmerLine 3s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.areas-subtitle {
    font-size: 1.05rem;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   AREAS GRID - 3 COLUMNS
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

/* ============================================
   AREA CARD LINK
   ============================================ */
.area-card-link {
    text-decoration: none;
    display: block;
    animation: fadeInUp 0.6s ease-out both;
}

.area-card-link:hover {
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   INDIVIDUAL AREA CARD
   ============================================ */
.area-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(11, 11, 11, 0.06);
    border: 1px solid rgba(229, 229, 229, 0.3);
}

/* ----- Gold Accent Border Top ----- */
.area-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    z-index: 3;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover .area-card-accent {
    opacity: 1;
}

/* ----- Gradient Overlay ----- */
.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.10) 0%,
        rgba(11, 11, 11, 0.30) 20%,
        rgba(11, 11, 11, 0.55) 45%,
        rgba(11, 11, 11, 0.78) 70%,
        rgba(11, 11, 11, 0.92) 88%,
        rgba(11, 11, 11, 0.97) 100%
    );
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover .area-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.15) 0%,
        rgba(11, 11, 11, 0.35) 20%,
        rgba(11, 11, 11, 0.60) 45%,
        rgba(11, 11, 11, 0.82) 70%,
        rgba(11, 11, 11, 0.94) 88%,
        rgba(11, 11, 11, 0.98) 100%
    );
}

/* ----- Hover Effects ----- */
.area-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 72px rgba(11, 11, 11, 0.18);
    border-color: rgba(200, 169, 107, 0.2);
}

.area-card:hover .area-card-title {
    color: #C8A96B;
}

.area-card:hover .area-card-btn {
    background: #C8A96B;
    color: #0B0B0B;
    border-color: #C8A96B;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.3);
}

.area-card:hover .area-card-btn i {
    transform: translateX(6px);
}

.area-card:hover .area-card-icon {
    background: rgba(200, 169, 107, 0.2);
    border-color: rgba(200, 169, 107, 0.3);
    transform: scale(1.05) rotate(-4deg);
}

.area-card:hover .area-card-number {
    color: #C8A96B;
}

.area-card:hover .area-card-divider {
    width: 40px;
    background: #C8A96B;
}

/* ============================================
   CARD CONTENT
   ============================================ */
.area-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* ----- Top Row - Icon + Number ----- */
.area-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* ----- Icon ----- */
.area-card-icon {
    font-size: 1.2rem;
    color: #FCFCFB;
    background: rgba(11, 11, 11, 0.35);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Number Badge ----- */
.area-card-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ----- Title ----- */
.area-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FCFCFB;
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
}

/* ----- Divider ----- */
.area-card-divider {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Button ----- */
.area-card-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    background: transparent;
    color: #FCFCFB;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.12);
    opacity: 0.8;
    transform: translateY(4px);
}

.area-card-btn i {
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card-btn:hover {
    text-decoration: none;
    color: #0B0B0B;
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.areas-footer {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 8px;
}

.areas-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #0B0B0B;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #C8A96B;
    position: relative;
    overflow: hidden;
}

.areas-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.areas-view-all:hover::before {
    left: 100%;
}

.areas-view-all:hover {
    background: #C8A96B;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(200, 169, 107, 0.35);
    text-decoration: none;
}

.areas-view-all span {
    position: relative;
    z-index: 1;
}

.areas-view-all i {
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.areas-view-all:hover i {
    transform: translateX(6px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-areas {
        padding: 60px 0;
    }

    .areas-title {
        font-size: 2.2rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .area-card {
        min-height: 240px;
    }

    .area-card-content {
        padding: 22px 20px 20px 20px;
    }

    .area-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .area-card-title {
        font-size: 1.1rem;
    }

    .area-card-btn {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .section-areas::before,
    .section-areas::after {
        display: none;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-areas {
        padding: 48px 0;
    }

    .areas-header {
        margin-bottom: 32px;
    }

    .areas-title {
        font-size: 1.8rem;
    }

    .areas-subtitle {
        font-size: 0.92rem;
        padding: 0 16px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 420px;
        margin: 0 auto 32px auto;
    }

    .area-card {
        min-height: 200px;
        border-radius: 16px;
    }

    .area-card-content {
        padding: 16px 16px 16px 16px;
    }

    .area-card-top {
        margin-bottom: 6px;
    }

    .area-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .area-card-number {
        font-size: 0.6rem;
        padding: 1px 8px;
    }

    .area-card-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .area-card-divider {
        width: 20px;
        height: 2px;
        margin-bottom: 8px;
    }

    .area-card-btn {
        font-size: 0.68rem;
        padding: 4px 12px;
        opacity: 1;
        transform: translateY(0);
        border-width: 1.5px;
    }

    .area-card:hover .area-card-btn {
        transform: translateY(0);
    }

    .areas-view-all {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .areas-view-all::before {
        display: none;
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .section-areas {
        padding: 36px 0;
    }

    .areas-title {
        font-size: 1.5rem;
    }

    .areas-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 320px;
    }

    .area-card {
        min-height: 160px;
        border-radius: 14px;
    }

    .area-card-content {
        padding: 12px 12px 12px 12px;
    }

    .area-card-icon {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        border-radius: 6px;
    }

    .area-card-number {
        font-size: 0.5rem;
        padding: 1px 6px;
    }

    .area-card-title {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .area-card-divider {
        width: 16px;
        height: 1.5px;
        margin-bottom: 6px;
    }

    .area-card-btn {
        font-size: 0.6rem;
        padding: 3px 10px;
        gap: 4px;
    }

    .area-card-btn i {
        font-size: 0.55rem;
    }

    .areas-view-all {
        padding: 10px 20px;
        font-size: 0.78rem;
        max-width: 220px;
        gap: 8px;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   CTA SECTION - Premium Design
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-cta {
    position: relative;
    padding: 80px 0;
    background: #0B0B0B;
    overflow: hidden;
    border-top: 3px solid rgba(200, 169, 107, 0.15);
    border-bottom: 3px solid rgba(200, 169, 107, 0.15);
}

/* ----- Background Glow ----- */
.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* ----- Background Circles ----- */
.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 107, 0.04);
    pointer-events: none;
}

.cta-bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatCircle1 20s ease-in-out infinite;
}

.cta-bg-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    animation: floatCircle2 25s ease-in-out infinite reverse;
}

.cta-bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation: floatCircle3 18s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 30px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(180deg); }
}

/* ============================================
   CTA WRAPPER
   ============================================ */
.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   BADGE
   ============================================ */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 107, 0.08);
    color: #C8A96B;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(200, 169, 107, 0.08);
    animation: fadeInDown 0.8s ease-out;
}

.cta-badge i {
    font-size: 0.6rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TITLE
   ============================================ */
.cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FCFCFB;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.cta-title-gold {
    color: #C8A96B;
    position: relative;
    display: inline-block;
}

.cta-title-gold::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.5;
}

/* ============================================
   TEXT
   ============================================ */
.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 32px auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ----- Primary Button ----- */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C8A96B;
    color: #0B0B0B;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 24px rgba(200, 169, 107, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    background: #9E8149;
    color: #0B0B0B;
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(200, 169, 107, 0.35);
    text-decoration: none;
}

.cta-btn-primary i {
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-primary:hover i {
    transform: scale(1.1);
}

.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

/* ----- Secondary Button ----- */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #FCFCFB;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 169, 107, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-btn-secondary:hover {
    border-color: #C8A96B;
    color: #C8A96B;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(200, 169, 107, 0.1);
    text-decoration: none;
}

.cta-btn-secondary i {
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cta-btn-secondary:hover i {
    transform: scale(1.1);
}

.cta-btn-secondary span {
    position: relative;
    z-index: 1;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-trust-item i {
    color: #C8A96B;
    font-size: 0.85rem;
}

.cta-trust-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cta-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2.6rem;
    }

    .cta-text {
        font-size: 1rem;
        padding: 0 16px;
    }

    .cta-bg-glow {
        width: 400px;
        height: 400px;
    }

    .cta-bg-circle-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }

    .cta-bg-circle-2 {
        width: 180px;
        height: 180px;
        bottom: -30px;
        left: -30px;
    }

    .cta-bg-circle-3 {
        width: 100px;
        height: 100px;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-cta {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 2rem;
        padding: 0 12px;
    }

    .cta-title-gold::after {
        bottom: 2px;
        height: 2px;
    }

    .cta-text {
        font-size: 0.92rem;
        padding: 0 12px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
        margin-bottom: 28px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .cta-btn-primary i,
    .cta-btn-secondary i {
        font-size: 0.9rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 6px;
    }

    .cta-trust-divider {
        display: none;
    }

    .cta-trust-item {
        padding: 4px 0;
        font-size: 0.78rem;
        justify-content: center;
    }

    .cta-bg-glow {
        width: 250px;
        height: 250px;
    }

    .cta-bg-circle-1,
    .cta-bg-circle-2,
    .cta-bg-circle-3 {
        display: none;
    }

    .cta-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
        margin-bottom: 12px;
    }
}

/* ----- Extra Small Mobile ----- */
@media (max-width: 400px) {
    .section-cta {
        padding: 36px 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 0.85rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 18px;
        font-size: 0.82rem;
        gap: 8px;
    }

    .cta-btn-primary i,
    .cta-btn-secondary i {
        font-size: 0.8rem;
    }

    .cta-trust-item {
        font-size: 0.7rem;
        gap: 6px;
    }

    .cta-trust-item i {
        font-size: 0.7rem;
    }
}














/* ============================================
   UTILITY OVERRIDES
   ============================================ */
.text-muted {
    color: #6B6B6B !important;
}

.text-white {
    color: #FCFCFB !important;
}


/* ============================================
   BEFORE & AFTER SLIDER - PREMIUM COMPACT
   Idel Designs Inc.
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-before-after {
    position: relative;
    padding: 50px 0 55px 0;
    background: #F7F5F0;
    overflow: hidden;
}

/* Subtle Background Decoration */
.section-before-after::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-before-after::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.ba-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.ba-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    transition: all 0.3s ease;
}

.ba-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.ba-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0B0B0B;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.ba-title-gold {
    color: #C8A96B;
    position: relative;
}

.ba-title-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.ba-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 0 auto 10px auto;
    position: relative;
}

.ba-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    animation: lineShimmer 3s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.ba-subtitle {
    font-size: 0.92rem;
    color: #6B6B6B;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SLIDER WRAPPER
   ============================================ */
.ba-slider-wrapper {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- Slider Container ----- */
.ba-slider-container {
    position: relative;
    width: 100%;
    max-height: 460px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(11, 11, 11, 0.1);
    border: 2px solid rgba(200, 169, 107, 0.12);
    background: #0B0B0B;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

/* Dragging State */
.ba-slider-container.ba-dragging {
    border-color: rgba(200, 169, 107, 0.3);
    box-shadow: 0 20px 60px rgba(11, 11, 11, 0.15);
}

/* ============================================
   IMAGES
   ============================================ */
.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ----- Before Image (Bottom) ----- */
.ba-image-before {
    z-index: 1;
}

/* ----- After Image (Top - Clipped) ----- */
.ba-image-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s ease;
}

/* ============================================
   LABELS
   ============================================ */
.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.ba-label-before {
    left: 16px;
    background: rgba(11, 11, 11, 0.65);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ba-label-after {
    right: 16px;
    background: rgba(200, 169, 107, 0.85);
    color: #0B0B0B;
    border: 1px solid rgba(200, 169, 107, 0.2);
}

/* ============================================
   SLIDER HANDLE
   ============================================ */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #C8A96B;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ba-handle:hover {
    background: #E3C98F;
}

/* Glow Effect on Handle */
.ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 27px;
    height: 100%;
    background: radial-gradient(ellipse, rgba(200, 169, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ba-handle:hover::before {
    opacity: 1;
}

/* ----- Handle Lines ----- */
.ba-handle-line {
    width: 3px;
    height: 25px;
    background: #C8A96B;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ba-handle:hover .ba-handle-line {
    background: #E3C98F;
}

/* ----- Handle Circle ----- */
.ba-handle-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #C8A96B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0B0B;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
}

/* Circle Pulse on Hover */
.ba-handle-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 107, 0.15);
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.ba-handle:hover .ba-handle-circle {
    background: #E3C98F;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(200, 169, 107, 0.4);
}

.ba-handle-circle i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.ba-handle:hover .ba-handle-circle i {
    transform: scale(1.1);
}

/* ============================================
   INSTRUCTIONS
   ============================================ */
.ba-instructions {
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6B6B6B;
    font-size: 0.75rem;
}

.ba-instruction-icon {
    color: #C8A96B;
    font-size: 0.85rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.4; }
}

.ba-instruction-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-before-after {
        padding: 48px 0 52px 0;
    }

    .ba-header {
        margin-bottom: 24px;
    }

    .ba-title {
        font-size: 1.8rem;
    }

    .ba-subtitle {
        font-size: 0.88rem;
        max-width: 90%;
    }

    .ba-slider-container {
        max-height: 380px;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .ba-handle-circle {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .ba-handle-circle i {
        font-size: 0.7rem;
    }

    .ba-handle-line {
        height: 20px;
    }

    .ba-label {
        font-size: 0.55rem;
        padding: 3px 12px;
        bottom: 12px;
    }

    .ba-label-before {
        left: 12px;
    }

    .ba-label-after {
        right: 12px;
    }

    .section-before-after::before,
    .section-before-after::after {
        display: none;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-before-after {
        padding: 40px 0 44px 0;
    }

    .ba-header {
        margin-bottom: 20px;
    }

    .ba-title {
        font-size: 1.5rem;
    }

    .ba-subtitle {
        font-size: 0.82rem;
        max-width: 100%;
        padding: 0 16px;
    }

    .ba-slider-container {
        max-height: 320px;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        border-width: 2px;
    }

    .ba-handle {
        width: 2px;
    }

    .ba-handle-circle {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .ba-handle-circle i {
        font-size: 0.65rem;
    }

    .ba-handle-circle::after {
        display: none;
    }

    .ba-handle-line {
        height: 15px;
        width: 2px;
    }

    .ba-handle::before {
        left: -10px;
        width: 22px;
    }

    .ba-label {
        font-size: 0.5rem;
        padding: 3px 10px;
        bottom: 10px;
    }

    .ba-label-before {
        left: 10px;
    }

    .ba-label-after {
        right: 10px;
    }

    .ba-instructions {
        font-size: 0.65rem;
        margin-top: 10px;
    }

    .ba-instruction-icon {
        font-size: 0.75rem;
    }

    .ba-line {
        width: 32px;
    }
}

/* ----- Small Mobile ----- */
@media (max-width: 400px) {
    .section-before-after {
        padding: 32px 0 36px 0;
    }

    .ba-title {
        font-size: 1.25rem;
    }

    .ba-badge {
        font-size: 0.5rem;
        padding: 3px 12px;
        letter-spacing: 1.5px;
    }

    .ba-subtitle {
        font-size: 0.75rem;
        padding: 0 12px;
    }

    .ba-slider-container {
        max-height: 280px;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    .ba-handle-circle {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
    }

    .ba-handle-circle i {
        font-size: 0.55rem;
    }

    .ba-handle-line {
        height: 12px;
        width: 2px;
    }

    .ba-handle {
        width: 2px;
    }

    .ba-handle::before {
        left: -8px;
        width: 18px;
    }

    .ba-label {
        font-size: 0.45rem;
        padding: 2px 8px;
        bottom: 8px;
        letter-spacing: 0.5px;
    }

    .ba-label-before {
        left: 8px;
    }

    .ba-label-after {
        right: 8px;
    }

    .ba-instructions {
        font-size: 0.6rem;
        margin-top: 8px;
        gap: 4px;
    }

    .ba-line {
        width: 24px;
        height: 2px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .ba-instruction-icon {
        animation: none;
    }
    
    .ba-line::after {
        animation: none;
    }
    
    .ba-handle-circle::after {
        animation: none;
    }
    
    .ba-handle:hover .ba-handle-circle {
        transform: none;
    }
}


/* ============================================
   TESTIMONIALS SECTION - Premium Carousel
   Idel Designs Inc.
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.section-testimonials {
    position: relative;
    padding: 60px 0 70px 0;
    background: #FCFCFB;
    overflow: hidden;
}

/* Background Decoration */
.section-testimonials::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-testimonials::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.test-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.test-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border: 1px solid rgba(200, 169, 107, 0.15);
}

.test-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0B0B0B;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.test-title-gold {
    color: #C8A96B;
    position: relative;
}

.test-title-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.test-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 0 auto 10px auto;
}

.test-subtitle {
    font-size: 0.95rem;
    color: #6B6B6B;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */
.test-carousel-wrapper {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   CAROUSEL CONTAINER
   ============================================ */
.test-carousel {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 20px;
}

/* ============================================
   TESTIMONIAL SLIDES
   ============================================ */
.test-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}

.test-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    visibility: visible;
    position: relative;
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */
.test-card {
    background: #F7F5F0;
    border-radius: 20px;
    padding: 36px 40px 32px 40px;
    border: 1px solid rgba(229, 229, 229, 0.5);
    box-shadow: 0 4px 20px rgba(11, 11, 11, 0.04);
    transition: all 0.3s ease;
}

.test-card:hover {
    box-shadow: 0 12px 40px rgba(11, 11, 11, 0.08);
    border-color: rgba(200, 169, 107, 0.15);
}

/* ----- Card Top Row ----- */
.test-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

/* ----- Stars ----- */
.test-stars {
    color: #C8A96B;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.test-stars i {
    margin-right: 1px;
}

/* ----- Platform Badge ----- */
.test-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #6B6B6B;
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(229, 229, 229, 0.5);
}

.test-platform i {
    font-size: 0.7rem;
    color: #C8A96B;
}

/* ----- Quote Icon ----- */
.test-quote-icon {
    font-size: 1.8rem;
    color: rgba(200, 169, 107, 0.15);
    margin-bottom: 8px;
}

.test-quote-icon i {
    display: block;
}

/* ----- Testimonial Text ----- */
.test-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 70px;
}

.test-text::before {
    content: '"';
    color: #C8A96B;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.5;
    margin-right: 4px;
}

.test-text::after {
    content: '"';
    color: #C8A96B;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.5;
    margin-left: 4px;
}

/* ----- Author ----- */
.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(229, 229, 229, 0.5);
}

.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FCFCFB;
    flex-shrink: 0;
}

.test-author-info {
    display: flex;
    flex-direction: column;
}

.test-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0B0B0B;
}

.test-author-location {
    font-size: 0.8rem;
    color: #6B6B6B;
}

/* ============================================
   CONTROLS
   ============================================ */
.test-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

/* ----- Buttons ----- */
.test-prev,
.test-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FCFCFB;
    border: 1px solid rgba(229, 229, 229, 0.6);
    color: #0B0B0B;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-prev:hover,
.test-next:hover {
    background: #C8A96B;
    color: #0B0B0B;
    border-color: #C8A96B;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.25);
}

.test-prev:active,
.test-next:active {
    transform: scale(0.95);
}

/* ----- Dots ----- */
.test-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(229, 229, 229, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.test-dot:hover {
    background: rgba(200, 169, 107, 0.4);
}

.test-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #C8A96B;
    cursor: default;
}

/* ----- Auto-Play Indicator ----- */
.test-auto-indicator {
    width: 100%;
    max-width: 200px;
    margin: 14px auto 0 auto;
    height: 2px;
    background: rgba(229, 229, 229, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.test-auto-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.test-auto-bar.animate {
    animation: autoProgress 6s linear forwards;
}

@keyframes autoProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .section-testimonials {
        padding: 50px 0 60px 0;
    }

    .test-title {
        font-size: 2rem;
    }

    .test-card {
        padding: 28px 28px 24px 28px;
    }

    .test-text {
        font-size: 0.95rem;
        min-height: 60px;
    }

    .test-carousel {
        min-height: 300px;
    }

    .section-testimonials::before,
    .section-testimonials::after {
        display: none;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .section-testimonials {
        padding: 40px 0 50px 0;
    }

    .test-header {
        margin-bottom: 28px;
    }

    .test-title {
        font-size: 1.6rem;
    }

    .test-subtitle {
        font-size: 0.85rem;
        padding: 0 16px;
    }

    .test-card {
        padding: 20px 18px 18px 18px;
        border-radius: 16px;
    }

    .test-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .test-stars {
        font-size: 0.75rem;
    }

    .test-platform {
        font-size: 0.55rem;
        padding: 2px 10px;
    }

    .test-quote-icon {
        font-size: 1.4rem;
    }

    .test-text {
        font-size: 0.88rem;
        min-height: 50px;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .test-author {
        gap: 10px;
        padding-top: 12px;
    }

    .test-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .test-author-name {
        font-size: 0.88rem;
    }

    .test-author-location {
        font-size: 0.7rem;
    }

    .test-carousel {
        min-height: 280px;
    }

    .test-controls {
        gap: 14px;
        margin-top: 18px;
    }

    .test-prev,
    .test-next {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }

    .test-dot {
        width: 8px;
        height: 8px;
    }

    .test-dot.active {
        width: 22px;
    }

    .test-auto-indicator {
        max-width: 120px;
        margin-top: 10px;
    }
}

/* ----- Small Mobile ----- */
@media (max-width: 400px) {
    .section-testimonials {
        padding: 32px 0 40px 0;
    }

    .test-title {
        font-size: 1.3rem;
    }

    .test-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
        letter-spacing: 1.5px;
    }

    .test-card {
        padding: 16px 14px 14px 14px;
        border-radius: 14px;
    }

    .test-text {
        font-size: 0.8rem;
        min-height: 40px;
    }

    .test-text::before,
    .test-text::after {
        font-size: 1rem;
    }

    .test-carousel {
        min-height: 260px;
    }

    .test-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.65rem;
    }

    .test-author-name {
        font-size: 0.8rem;
    }

    .test-author-location {
        font-size: 0.6rem;
    }

    .test-controls {
        gap: 10px;
    }

    .test-prev,
    .test-next {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .test-dot {
        width: 6px;
        height: 6px;
    }

    .test-dot.active {
        width: 18px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .test-slide {
        transition: none;
    }

    .test-auto-bar.animate {
        animation: none;
    }

    .test-prev:hover,
    .test-next:hover {
        transform: none;
    }
}
/* ============================================
   TESTIMONIALS - FIXED HEIGHT + SCROLLABLE TEXT
   Full reviews visible on all devices
   ============================================ */

/* ----- Fixed Height Container ----- */
.test-carousel {
    min-height: 380px !important;
    height: 380px !important;
    position: relative;
    overflow: hidden;
}

/* ----- All Slides Fixed Height ----- */
.test-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
    display: flex !important;
    align-items: flex-start !important;
    overflow: hidden;
}

.test-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    visibility: visible;
    position: relative !important;
}

/* ----- Card Fixed Height ----- */
.test-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 28px 32px !important;
    overflow: hidden;
    width: 100%;
}

/* ----- Text - Full Visible with Scroll ----- */
.test-text-wrapper {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 10px;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 169, 107, 0.3) transparent;
}

/* Custom Scrollbar */
.test-text-wrapper::-webkit-scrollbar {
    width: 3px;
}

.test-text-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.test-text-wrapper::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 107, 0.3);
    border-radius: 10px;
}

.test-text-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 169, 107, 0.5);
}

/* ----- Text Styling ----- */
.test-text {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

.test-text::before {
    content: '"';
    color: #C8A96B;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    margin-right: 4px;
}

.test-text::after {
    content: '"';
    color: #C8A96B;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    margin-left: 4px;
}

/* ----- Author Section Fixed at Bottom ----- */
.test-author {
    flex-shrink: 0 !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(229, 229, 229, 0.5);
    margin-top: auto;
}

/* ============================================
   RESPONSIVE - Full Text on Mobile
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .test-carousel {
        min-height: 360px !important;
        height: 360px !important;
    }

    .test-card {
        padding: 22px 24px !important;
    }

    .test-text {
        font-size: 0.9rem;
    }
}

/* Mobile - Full Text Visible */
@media (max-width: 767px) {
    .test-carousel {
        min-height: 340px !important;
        height: 340px !important;
    }

    .test-card {
        padding: 16px 16px 14px 16px !important;
    }

    .test-text-wrapper {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .test-text {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .test-text::before,
    .test-text::after {
        font-size: 0.9rem;
    }

    .test-card-top {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 4px 8px;
        margin-bottom: 8px;
    }

    .test-stars {
        font-size: 0.7rem;
    }

    .test-platform {
        font-size: 0.5rem;
        padding: 2px 10px;
    }

    .test-quote-icon {
        display: none;
    }

    .test-author {
        padding-top: 10px !important;
        gap: 10px;
    }

    .test-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.7rem !important;
    }

    .test-author-name {
        font-size: 0.82rem !important;
    }

    .test-author-location {
        font-size: 0.65rem !important;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .test-carousel {
        min-height: 320px !important;
        height: 320px !important;
    }

    .test-card {
        padding: 12px 12px 10px 12px !important;
        border-radius: 14px !important;
    }

    .test-text {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .test-text::before,
    .test-text::after {
        font-size: 0.8rem;
    }

    .test-stars {
        font-size: 0.6rem;
    }

    .test-author {
        padding-top: 8px !important;
    }

    .test-avatar {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.6rem !important;
    }

    .test-author-name {
        font-size: 0.75rem !important;
    }

    .test-author-location {
        font-size: 0.55rem !important;
    }

    .test-dots {
        gap: 4px !important;
    }

    .test-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .test-dot.active {
        width: 16px !important;
    }

    .test-prev,
    .test-next {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.6rem !important;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .test-slide {
        transition: none !important;
    }
}

/* ============================================
   ABOUT US HERO - Additional Styles
   ============================================ */

/* ----- Center Alignment ----- */
.hero-text-col.text-center {
    padding-right: 0;
}

.hero-subheading-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.hero-buttons-center {
    justify-content: center;
}

/* ----- Center Line ----- */
.hero-line-center {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 14px auto 20px auto;
}

/* ----- Responsive for About Hero ----- */
@media (max-width: 991px) {
    .hero-subheading-center {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-line-center {
        width: 40px;
        height: 2px;
        margin: 10px auto 16px auto;
    }
}

/* ============================================
   ABOUT US - STORY SECTION
   Premium Design | Idel Designs Inc.
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.about-story {
    padding: 80px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-story::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-story::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ----- Wrapper ----- */
.about-story-wrapper {
    position: relative;
    z-index: 1;
}

/* ============================================
   LEFT COLUMN - CONTENT
   ============================================ */
.about-story-content {
    padding-right: 20px;
}

/* ----- Header ----- */
.about-story-header {
    margin-bottom: 20px;
}

.about-story-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    transition: all 0.3s ease;
}

.about-story-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.about-story-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    margin: 0;
}

.about-story-title-gold {
    color: #C8A96B;
    position: relative;
}

.about-story-title-gold::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.about-story-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin-top: 12px;
}

/* ----- Text ----- */
.about-story-text {
    margin-bottom: 24px;
}

.about-story-text p {
    color: #333333;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 14px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

/* ----- Milestones ----- */
.about-story-footer {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #F7F5F0;
    border-radius: 14px;
    border: 1px solid rgba(229, 229, 229, 0.4);
}

.about-story-milestone {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    flex: 1;
    text-align: center;
}

.about-story-milestone:first-child {
    padding-left: 0;
}

.about-story-milestone:last-child {
    padding-right: 0;
}

.about-story-milestone-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #C8A96B;
    line-height: 1.2;
}

.about-story-milestone-label {
    font-size: 0.7rem;
    color: #6B6B6B;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-story-milestone-divider {
    width: 1px;
    height: 30px;
    background: rgba(229, 229, 229, 0.6);
}

/* ----- CTA Button ----- */
.about-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0B0B0B;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #C8A96B;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-cta:hover {
    background: #C8A96B;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 169, 107, 0.3);
    text-decoration: none;
}

.about-story-cta i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.about-story-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   RIGHT COLUMN - IMAGE
   ============================================ */
.about-story-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 11, 11, 0.1);
    border: 3px solid rgba(200, 169, 107, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-image-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(11, 11, 11, 0.15);
    border-color: rgba(200, 169, 107, 0.25);
}

/* ----- Image ----- */
.about-story-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-image-container:hover .about-story-image {
    transform: scale(1.03);
}

/* ----- Image Overlay ----- */
.about-story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0) 0%,
        rgba(11, 11, 11, 0.2) 60%,
        rgba(11, 11, 11, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ----- Shimmer Effect ----- */
.about-story-image-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 100%
    );
    z-index: 2;
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

/* ----- Floating Badge ----- */
.about-story-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(200, 169, 107, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-story-image-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A96B;
    font-size: 0.9rem;
}

.about-story-image-badge-content {
    display: flex;
    flex-direction: column;
}

.about-story-image-badge-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FCFCFB;
    line-height: 1.1;
}

.about-story-image-badge-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----- Corner Decoration ----- */
.about-story-image-corner {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 60px;
    height: 60px;
    border-right: 3px solid #C8A96B;
    border-bottom: 3px solid #C8A96B;
    border-radius: 0 0 20px 0;
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ----- Tablets ----- */
@media (max-width: 991px) {
    .about-story {
        padding: 60px 0;
    }

    .about-story-content {
        padding-right: 0;
    }

    .about-story-title {
        font-size: 2.2rem;
    }

    .about-story-image {
        height: 340px;
    }

    .about-story-image-badge {
        bottom: 18px;
        left: 18px;
        padding: 12px 16px;
    }

    .about-story-image-badge-number {
        font-size: 1rem;
    }

    .about-story::before,
    .about-story::after {
        display: none;
    }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
    .about-story {
        padding: 48px 0;
    }

    .about-story-title {
        font-size: 1.8rem;
    }

    .about-story-title-gold::after {
        bottom: 2px;
        height: 2px;
    }

    .about-story-line {
        width: 35px;
        height: 2px;
    }

    .about-story-text p {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .about-story-footer {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 4px;
    }

    .about-story-milestone {
        padding: 0 10px;
        flex: 1;
        min-width: 60px;
    }

    .about-story-milestone-number {
        font-size: 1.1rem;
    }

    .about-story-milestone-label {
        font-size: 0.6rem;
    }

    .about-story-milestone-divider {
        height: 24px;
    }

    .about-story-cta {
        padding: 10px 22px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .about-story-image {
        height: 260px;
    }

    .about-story-image-badge {
        bottom: 14px;
        left: 14px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .about-story-image-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .about-story-image-badge-number {
        font-size: 0.9rem;
    }

    .about-story-image-badge-label {
        font-size: 0.55rem;
    }

    .about-story-image-corner {
        width: 40px;
        height: 40px;
        border-width: 2px;
        bottom: -4px;
        right: -4px;
    }

    .about-story-image-shimmer {
        display: none;
    }
}

/* ----- Small Mobile ----- */
@media (max-width: 400px) {
    .about-story {
        padding: 36px 0;
    }

    .about-story-title {
        font-size: 1.5rem;
    }

    .about-story-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-story-image {
        height: 200px;
    }

    .about-story-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .about-story-image-badge-icon {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .about-story-image-badge-number {
        font-size: 0.8rem;
    }

    .about-story-image-badge-label {
        font-size: 0.5rem;
    }

    .about-story-milestone-number {
        font-size: 0.95rem;
    }

    .about-story-milestone-label {
        font-size: 0.5rem;
    }

    .about-story-cta {
        font-size: 0.78rem;
        padding: 8px 18px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-story-image-shimmer {
        animation: none;
        display: none;
    }

    .about-story-image-badge {
        animation: none;
    }

    .about-story-image-container:hover {
        transform: none;
    }

    .about-story-image-container:hover .about-story-image {
        transform: none;
    }

    .about-story-cta:hover {
        transform: none;
    }

    .about-story-badge:hover {
        transform: none;
    }
}
/* ============================================
   ABOUT STORY - IMAGE SIZE FIX
   ============================================ */

/* ----- Make Image Container Larger ----- */
.about-story-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 11, 11, 0.1);
    border: 3px solid rgba(200, 169, 107, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

/* ----- Make Image Fill Container ----- */
.about-story-image {
    width: 100%;
    height: 480px; /* Increased from 440px */
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Image Wrapper - Full Width ----- */
.about-story-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ----- Responsive - Tablets ----- */
@media (max-width: 991px) {
    .about-story-image {
        height: 380px; /* Increased */
    }
}

/* ----- Responsive - Mobile ----- */
@media (max-width: 767px) {
    .about-story-image {
        height: 300px; /* Increased */
    }
}

/* ----- Responsive - Small Mobile ----- */
@media (max-width: 400px) {
    .about-story-image {
        height: 240px; /* Increased */
    }
}

/* ============================================
   IDEL DESIGNS INC. - MAIN STYLESHEET
   Font: Poppins (Site-Wide)
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ----- CSS Variables ----- */
:root {
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Poppins', 'Inter', 'Helvetica Neue', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --black: #0B0B0B;
    --dark-gray: #333333;
    --medium-gray: #6B6B6B;
    --light-gray: #E5E5E5;
    --off-white: #F7F5F0;
    --warm-white: #FCFCFB;
    --gold: #C8A96B;
    --gold-dark: #9E8149;
    --gold-light: #E3C98F;
    
    --shadow-sm: 0 2px 8px rgba(11, 11, 11, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 11, 11, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 11, 11, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
}

/* ----- Reset & Base ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--warm-white);
    color: var(--dark-gray);
    line-height: 1.7;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ----- All Text Elements Inherit Poppins ----- */
h1, h2, h3, h4, h5, h6, p, span, a, li, label,
input, textarea, select, button, .btn,
.navbar, .footer, .hero, .section,
.card, .content, .text {
    font-family: var(--font-primary);
}

/* ----- Typography ----- */
h1, .h1 {
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
h2, .h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--black);
    line-height: 1.15;
    letter-spacing: -0.3px;
}
h3, .h3 {
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--black);
    line-height: 1.2;
}
h4, .h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.25;
}
h5, .h5 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.3;
}
h6, .h6 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.4;
}

p, .body-text {
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

small, .small-text, .meta-text {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--gold); }

/* ============================================
   UTILITY - POPPINS WEIGHT CLASSES
   ============================================ */
.poppins-light { font-weight: 300; }
.poppins-regular { font-weight: 400; }
.poppins-medium { font-weight: 500; }
.poppins-semibold { font-weight: 600; }
.poppins-bold { font-weight: 700; }
.poppins-extrabold { font-weight: 800; }
.poppins-black { font-weight: 900; }
.poppins-italic { font-style: italic; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--medium-gray); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    font-family: var(--font-primary);
    font-weight: 700;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary-custom:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
    font-family: var(--font-primary);
    font-weight: 700;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 14px 36px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-secondary-custom:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============================================
   BADGE
   ============================================ */
.badge-gold {
    font-family: var(--font-primary);
    font-weight: 700;
    background: var(--gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    h1, .h1 { font-size: 2.5rem; }
    h2, .h2 { font-size: 2rem; }
    h3, .h3 { font-size: 1.5rem; }
    body { padding-top: 70px; }
}

@media (max-width: 768px) {
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.3rem; }
    p, .body-text { font-size: 0.95rem; }
}

@media (max-width: 576px) {
    h1, .h1 { font-size: 1.75rem; }
    h2, .h2 { font-size: 1.5rem; }
    p, .body-text { font-size: 0.9rem; }
}

/* ============================================
   ABOUT US - MISSION SECTION
   Premium Design | Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   Fixed: Reduced Desktop Vertical Size
   ============================================ */

/* ----- Section Container ----- */
.about-mission {
    padding: 50px 0 60px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* Background Decoration - Smaller */
.about-mission::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-mission::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ----- Wrapper ----- */
.about-mission-wrapper {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER - Centered, Compact
   ============================================ */
.about-mission-header {
    text-align: center;
    margin-bottom: 20px;
}

.about-mission-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
}

.about-mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-mission-title-gold {
    color: #C8A96B;
    position: relative;
}

.about-mission-title-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.about-mission-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 0 auto;
}

/* ============================================
   TEXT CONTENT - Compact
   ============================================ */
.about-mission-text {
    text-align: center;
    margin-bottom: 24px;
}

.about-mission-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.98rem;
    color: #333333;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 10px auto;
}

.about-mission-text p:last-child {
    margin-bottom: 0;
}

/* ----- Mission Points (Grid) ----- */
.about-mission-text ul {
    list-style: none;
    padding: 0;
    margin: 14px auto 0 auto;
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}

.about-mission-text ul li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: #333333;
    padding: 10px 16px;
    background: #F7F5F0;
    border-radius: 10px;
    border-left: 3px solid #C8A96B;
    transition: all 0.3s ease;
}

.about-mission-text ul li:hover {
    background: #F0EFEC;
    transform: translateX(4px);
}

.about-mission-text ul li strong {
    font-weight: 600;
    color: #0B0B0B;
}

/* ============================================
   MISSION CARDS - Compact Grid
   ============================================ */
.about-mission-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.about-mission-card {
    background: #F7F5F0;
    border-radius: 14px;
    padding: 18px 14px 16px 14px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 229, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.about-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-mission-card:hover::before {
    opacity: 1;
}

.about-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 11, 11, 0.06);
    border-color: rgba(200, 169, 107, 0.15);
    background: #FCFCFB;
}

.about-mission-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #C8A96B;
    margin: 0 auto 10px auto;
    transition: all 0.4s ease;
}

.about-mission-card:hover .about-mission-card-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: scale(1.05) rotate(-4deg);
}

.about-mission-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: #0B0B0B;
    margin-bottom: 3px;
}

.about-mission-card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #6B6B6B;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   QUOTE SECTION - Compact
   ============================================ */
.about-mission-quote {
    position: relative;
    background: #0B0B0B;
    border-radius: 14px;
    padding: 24px 32px;
    text-align: center;
    border: 1px solid rgba(200, 169, 107, 0.08);
}

.about-mission-quote-icon {
    color: rgba(200, 169, 107, 0.15);
    font-size: 2rem;
    margin-bottom: 4px;
}

.about-mission-quote-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-style: italic;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .about-mission {
        padding: 45px 0 50px 0;
    }

    .about-mission-title {
        font-size: 2rem;
    }

    .about-mission-text p {
        text-align: left;
        padding: 0 12px;
        font-size: 0.95rem;
    }

    .about-mission-text ul {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 12px;
    }

    .about-mission-text ul li {
        font-size: 0.85rem;
        padding: 9px 14px;
    }

    .about-mission-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }

    .about-mission-card {
        padding: 16px 14px;
    }

    .about-mission-quote {
        padding: 20px 24px;
        margin: 0 12px;
        text-align: left;
    }

    .about-mission-quote-text {
        font-size: 0.92rem;
        text-align: left;
        max-width: 100%;
    }

    .about-mission-quote-icon {
        text-align: left;
    }

    .about-mission-header {
        text-align: center;
    }

    .about-mission::before,
    .about-mission::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .about-mission {
        padding: 36px 0 40px 0;
    }

    .about-mission-title {
        font-size: 1.6rem;
    }

    .about-mission-title-gold::after {
        bottom: 0;
        height: 2px;
    }

    .about-mission-text {
        text-align: left;
    }

    .about-mission-text p {
        font-size: 0.88rem;
        padding: 0 16px;
        text-align: left;
    }

    .about-mission-text ul {
        padding: 0 16px;
    }

    .about-mission-text ul li {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .about-mission-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 16px;
    }

    .about-mission-card {
        padding: 14px 12px;
        text-align: left;
    }

    .about-mission-card-icon {
        margin: 0 0 8px 0;
    }

    .about-mission-card-title {
        font-size: 0.8rem;
        text-align: left;
    }

    .about-mission-card-text {
        font-size: 0.7rem;
        text-align: left;
    }

    .about-mission-quote {
        padding: 18px 20px;
        border-radius: 12px;
        margin: 0 16px;
        text-align: left;
    }

    .about-mission-quote-icon {
        font-size: 1.8rem;
        text-align: left;
    }

    .about-mission-quote-text {
        font-size: 0.85rem;
        text-align: left;
        padding: 0;
    }

    .about-mission-header {
        text-align: center;
    }

    .about-mission-line {
        margin: 8px auto 0 auto;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .about-mission {
        padding: 28px 0 32px 0;
    }

    .about-mission-title {
        font-size: 1.3rem;
    }

    .about-mission-badge {
        font-size: 0.5rem;
        padding: 3px 12px;
    }

    .about-mission-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 12px;
    }

    .about-mission-card {
        padding: 10px 8px;
        border-radius: 10px;
    }

    .about-mission-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
        margin: 0 0 6px 0;
    }

    .about-mission-card-title {
        font-size: 0.72rem;
    }

    .about-mission-card-text {
        font-size: 0.62rem;
    }

    .about-mission-text p {
        font-size: 0.82rem;
        padding: 0 12px;
    }

    .about-mission-text ul {
        padding: 0 12px;
    }

    .about-mission-text ul li {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .about-mission-quote {
        padding: 14px 16px;
        margin: 0 12px;
    }

    .about-mission-quote-text {
        font-size: 0.78rem;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-mission-card {
        transition: none;
    }
    .about-mission-card:hover {
        transform: none;
    }
    .about-mission-card::before {
        display: none;
    }
    .about-mission-text ul li:hover {
        transform: none;
    }
}

/* ============================================
   ABOUT US - TEAM SECTION
   Premium Design | Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.about-team {
    padding: 50px 0 60px 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-team::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-team::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.about-team-header {
    text-align: center;
    margin-bottom: 32px;
}

.about-section-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-section-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 0 auto;
}

/* ============================================
   TEAM CARDS - Grid
   ============================================ */
.about-team-card {
    background: #FCFCFB;
    border-radius: 16px;
    padding: 24px 18px 20px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 229, 229, 0.4);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gold Accent Top Border */
.about-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-team-card:hover::before {
    opacity: 1;
}

.about-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(11, 11, 11, 0.08);
    border-color: rgba(200, 169, 107, 0.15);
    background: #FFFFFF;
}

/* ----- Team Icon ----- */
.about-team-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #C8A96B;
    margin: 0 auto 12px auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-team-card:hover .about-team-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: scale(1.05) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(200, 169, 107, 0.25);
}

/* ----- Team Title ----- */
.about-team-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0B0B0B;
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-team-card:hover .about-team-title {
    color: #0B0B0B;
}

/* ----- Team Description ----- */
.about-team-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0;
    padding: 0 4px;
}

.about-team-card:hover .about-team-desc {
    color: #333333;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .about-team {
        padding: 45px 0 50px 0;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-team-header {
        margin-bottom: 24px;
    }

    .about-team-card {
        padding: 20px 16px 18px 16px;
    }

    .about-team-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .about-team-title {
        font-size: 0.9rem;
    }

    .about-team-desc {
        font-size: 0.78rem;
    }

    .about-team::before,
    .about-team::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .about-team {
        padding: 36px 0 40px 0;
    }

    .about-section-title {
        font-size: 1.6rem;
    }

    .about-team-header {
        margin-bottom: 20px;
    }

    .about-section-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-section-line {
        width: 30px;
        margin: 6px auto 0 auto;
    }

    .about-team-card {
        padding: 16px 12px 14px 12px;
        border-radius: 14px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-team-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin: 0 0 10px 0;
    }

    .about-team-card:hover .about-team-icon {
        transform: scale(1.05) rotate(-4deg);
    }

    .about-team-title {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
    }

    .about-team-desc {
        font-size: 0.75rem;
        text-align: left;
        padding: 0;
        width: 100%;
    }

    /* Card hover effect on mobile - subtle */
    .about-team-card:hover {
        transform: translateY(-3px);
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .about-team {
        padding: 28px 0 32px 0;
    }

    .about-section-title {
        font-size: 1.3rem;
    }

    .about-section-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .about-team-card {
        padding: 12px 10px 10px 10px;
        border-radius: 12px;
    }

    .about-team-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        border-radius: 8px;
        margin: 0 0 8px 0;
    }

    .about-team-title {
        font-size: 0.78rem;
    }

    .about-team-desc {
        font-size: 0.68rem;
        line-height: 1.5;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-team-card {
        transition: none;
    }
    .about-team-card:hover {
        transform: none;
    }
    .about-team-card::before {
        display: none;
    }
}

/* ============================================
   ABOUT US - VALUES SECTION
   Premium Design | Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.about-values {
    padding: 50px 0 60px 0;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-values::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-values::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.about-values-wrapper {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-values-header {
    text-align: center;
    margin-bottom: 28px;
}

.about-values-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.about-values-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.about-values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FCFCFB;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-values-title .gold {
    color: #C8A96B;
}

.about-values-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 0 auto;
}

/* ============================================
   VALUES CARDS - Grid
   ============================================ */
.about-values-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px 18px 20px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gold Accent Top Border */
.about-values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-values-card:hover::before {
    opacity: 1;
}

/* Glow Effect on Hover */
.about-values-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

.about-values-card:hover::after {
    width: 300px;
    height: 300px;
}

.about-values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 169, 107, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

/* ----- Values Icon ----- */
.about-values-icon {
    font-size: 2.2rem;
    color: #C8A96B;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.about-values-card:hover .about-values-icon {
    transform: scale(1.1) rotate(-4deg);
    text-shadow: 0 0 30px rgba(200, 169, 107, 0.2);
}

/* ----- Values Title ----- */
.about-values-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FCFCFB;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* ----- Values Description ----- */
.about-values-card-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    padding: 0 4px;
    transition: color 0.3s ease;
}

.about-values-card:hover .about-values-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .about-values {
        padding: 45px 0 50px 0;
    }

    .about-values-title {
        font-size: 2rem;
    }

    .about-values-header {
        margin-bottom: 24px;
    }

    .about-values-card {
        padding: 20px 16px 18px 16px;
    }

    .about-values-icon {
        font-size: 2rem;
    }

    .about-values-card-title {
        font-size: 0.9rem;
    }

    .about-values-card-desc {
        font-size: 0.78rem;
    }

    .about-values::before,
    .about-values::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .about-values {
        padding: 36px 0 40px 0;
    }

    .about-values-title {
        font-size: 1.6rem;
    }

    .about-values-header {
        margin-bottom: 20px;
    }

    .about-values-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-values-line {
        width: 30px;
        margin: 6px auto 0 auto;
    }

    .about-values-card {
        padding: 16px 12px 14px 12px;
        border-radius: 14px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-values-icon {
        font-size: 1.8rem;
        margin: 0 0 10px 0;
    }

    .about-values-card:hover .about-values-icon {
        transform: scale(1.05) rotate(-4deg);
    }

    .about-values-card-title {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
    }

    .about-values-card-desc {
        font-size: 0.75rem;
        text-align: left;
        padding: 0;
        width: 100%;
    }

    .about-values-card::after {
        display: none;
    }

    .about-values-card:hover {
        transform: translateY(-3px);
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .about-values {
        padding: 28px 0 32px 0;
    }

    .about-values-title {
        font-size: 1.3rem;
    }

    .about-values-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .about-values-card {
        padding: 12px 10px 10px 10px;
        border-radius: 12px;
    }

    .about-values-icon {
        font-size: 1.4rem;
        margin: 0 0 8px 0;
    }

    .about-values-card-title {
        font-size: 0.78rem;
    }

    .about-values-card-desc {
        font-size: 0.68rem;
        line-height: 1.5;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-values-card {
        transition: none;
    }
    .about-values-card:hover {
        transform: none;
    }
    .about-values-card::before {
        display: none;
    }
    .about-values-card::after {
        display: none;
    }
    .about-values-badge:hover {
        transform: none;
    }
}

/* ============================================
   ABOUT US - LOCAL, CERTIFICATIONS, DIFFERENTIATORS
   Premium Design | Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ============================================
   SECTION 6: WHY LOCAL MATTERS
   ============================================ */
.about-local {
    padding: 50px 0 60px 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-local::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-local::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-local-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-local-content .about-section-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
}

.about-local-content .about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-local-content .about-section-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 14px auto;
}

/* Local Text Styling */
.about-local-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.98rem;
    color: #333333;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 14px;
}

.about-local-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SECTION 7: CERTIFICATIONS
   ============================================ */
.about-certifications {
    padding: 50px 0 60px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-certifications::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-certifications::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-cert-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cert-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.about-cert-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.about-cert-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-cert-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 16px auto;
}

/* ----- Certification Badges Grid ----- */
.about-cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.about-cert-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F7F5F0;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: #0B0B0B;
    border: 1px solid rgba(229, 229, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cert-badge-item i {
    color: #C8A96B;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.about-cert-badge-item:hover {
    background: #C8A96B;
    color: #0B0B0B;
    border-color: #C8A96B;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.2);
}

.about-cert-badge-item:hover i {
    color: #0B0B0B;
}

/* ============================================
   SECTION 8: DIFFERENTIATORS
   ============================================ */
.about-differentiators {
    padding: 50px 0 60px 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-differentiators::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-differentiators::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-diff-header {
    text-align: center;
    margin-bottom: 28px;
}

.about-diff-header .about-section-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    font-family: 'Poppins', sans-serif;
}

.about-diff-header .about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.about-diff-header .about-section-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 0 auto;
}

/* ----- Differentiator Cards ----- */
.about-diff-card {
    background: #FCFCFB;
    border-radius: 14px;
    padding: 20px 18px 18px 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 229, 229, 0.4);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gold Accent Top Border */
.about-diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-diff-card:hover::before {
    opacity: 1;
}

.about-diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(11, 11, 11, 0.08);
    border-color: rgba(200, 169, 107, 0.15);
    background: #FFFFFF;
}

.about-diff-icon {
    color: #C8A96B;
    font-size: 1.4rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.about-diff-card:hover .about-diff-icon {
    transform: scale(1.1);
}

.about-diff-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #0B0B0B;
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-diff-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0;
}

.about-diff-card:hover .about-diff-desc {
    color: #333333;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    /* Local */
    .about-local {
        padding: 45px 0 50px 0;
    }

    .about-local-content .about-section-title {
        font-size: 2rem;
    }

    .about-local-content p {
        font-size: 0.95rem;
        padding: 0 12px;
        text-align: left;
    }

    /* Certifications */
    .about-certifications {
        padding: 45px 0 50px 0;
    }

    .about-cert-title {
        font-size: 2rem;
    }

    .about-cert-badge-item {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Differentiators */
    .about-differentiators {
        padding: 45px 0 50px 0;
    }

    .about-diff-header .about-section-title {
        font-size: 2rem;
    }

    .about-diff-card {
        padding: 18px 16px 16px 16px;
    }

    .about-diff-title {
        font-size: 0.88rem;
    }

    .about-diff-desc {
        font-size: 0.78rem;
    }

    .about-local::before,
    .about-local::after,
    .about-certifications::before,
    .about-certifications::after,
    .about-differentiators::before,
    .about-differentiators::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    /* Local */
    .about-local {
        padding: 36px 0 40px 0;
    }

    .about-local-content .about-section-title {
        font-size: 1.6rem;
    }

    .about-local-content .about-section-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-local-content .about-section-line {
        width: 30px;
        margin: 6px auto 10px auto;
    }

    .about-local-content p {
        font-size: 0.88rem;
        padding: 0 16px;
        text-align: left;
    }

    /* Certifications */
    .about-certifications {
        padding: 36px 0 40px 0;
    }

    .about-cert-title {
        font-size: 1.6rem;
    }

    .about-cert-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-cert-line {
        width: 30px;
        margin: 6px auto 12px auto;
    }

    .about-cert-grid {
        gap: 8px;
        padding: 0 12px;
    }

    .about-cert-badge-item {
        padding: 5px 12px;
        font-size: 0.7rem;
        gap: 6px;
    }

    .about-cert-badge-item i {
        font-size: 0.7rem;
    }

    /* Differentiators */
    .about-differentiators {
        padding: 36px 0 40px 0;
    }

    .about-diff-header {
        margin-bottom: 20px;
    }

    .about-diff-header .about-section-title {
        font-size: 1.6rem;
    }

    .about-diff-header .about-section-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .about-diff-header .about-section-line {
        width: 30px;
    }

    .about-diff-card {
        padding: 14px 12px 12px 12px;
        border-radius: 12px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-diff-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .about-diff-title {
        font-size: 0.82rem;
        text-align: left;
        width: 100%;
    }

    .about-diff-desc {
        font-size: 0.75rem;
        text-align: left;
        width: 100%;
        padding: 0;
    }

    .about-diff-card:hover {
        transform: translateY(-3px);
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    /* Local */
    .about-local {
        padding: 28px 0 32px 0;
    }

    .about-local-content .about-section-title {
        font-size: 1.3rem;
    }

    .about-local-content .about-section-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .about-local-content p {
        font-size: 0.82rem;
        padding: 0 12px;
    }

    /* Certifications */
    .about-certifications {
        padding: 28px 0 32px 0;
    }

    .about-cert-title {
        font-size: 1.3rem;
    }

    .about-cert-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .about-cert-badge-item {
        padding: 4px 10px;
        font-size: 0.62rem;
        gap: 4px;
    }

    .about-cert-badge-item i {
        font-size: 0.6rem;
    }

    /* Differentiators */
    .about-differentiators {
        padding: 28px 0 32px 0;
    }

    .about-diff-header .about-section-title {
        font-size: 1.3rem;
    }

    .about-diff-header .about-section-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .about-diff-card {
        padding: 10px 10px 10px 10px;
        border-radius: 10px;
    }

    .about-diff-icon {
        font-size: 1rem;
    }

    .about-diff-title {
        font-size: 0.75rem;
    }

    .about-diff-desc {
        font-size: 0.68rem;
        line-height: 1.5;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-cert-badge-item {
        transition: none;
    }
    .about-cert-badge-item:hover {
        transform: none;
    }
    .about-diff-card {
        transition: none;
    }
    .about-diff-card:hover {
        transform: none;
    }
    .about-diff-card::before {
        display: none;
    }
    .about-cert-badge:hover {
        transform: none;
    }
}
/* ============================================
   CONTACT MAIN - Professional Design
   Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.contact-main {
    padding: 40px 0 50px 0;
    background: #F7F5F0;
}

/* ============================================
   CONTACT INFO CARD
   ============================================ */
.contact-info-card {
    background: #FCFCFB;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(229, 229, 229, 0.4);
    box-shadow: 0 2px 12px rgba(11, 11, 11, 0.04);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(11, 11, 11, 0.06);
    border-color: rgba(200, 169, 107, 0.1);
}

/* ----- Contact Info Item ----- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 0;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A96B;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: scale(1.05);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2px 0;
}

.contact-info-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #0B0B0B;
    margin: 0;
    line-height: 1.4;
}

.contact-info-value a {
    color: #0B0B0B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-value a:hover {
    color: #C8A96B;
}

/* ----- Divider ----- */
.contact-info-divider {
    height: 1px;
    background: rgba(229, 229, 229, 0.5);
    margin: 10px 0;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.contact-info-social {
    margin-top: 4px;
}

.contact-info-social .contact-info-label {
    margin-bottom: 8px;
}

.contact-social-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.contact-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.06);
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.contact-social-icons a:hover {
    background: #C8A96B;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(200, 169, 107, 0.25);
}

/* ============================================
   SHOWROOM CARD
   ============================================ */
.contact-showroom-card {
    background: #FCFCFB;
    border-radius: 16px;
    padding: 24px 24px 26px 24px;
    border: 1px solid rgba(229, 229, 229, 0.4);
    box-shadow: 0 2px 12px rgba(11, 11, 11, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-showroom-card:hover {
    box-shadow: 0 8px 24px rgba(11, 11, 11, 0.06);
    border-color: rgba(200, 169, 107, 0.1);
    transform: translateY(-2px);
}

.contact-showroom-icon {
    font-size: 2.2rem;
    color: #C8A96B;
    margin-bottom: 6px;
}

.contact-showroom-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #0B0B0B;
    margin: 0 0 6px 0;
}

.contact-showroom-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.contact-showroom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C8A96B;
    color: #0B0B0B;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-showroom-btn:hover {
    background: #9E8149;
    color: #0B0B0B;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.3);
    text-decoration: none;
}

.contact-showroom-btn i {
    transition: all 0.3s ease;
}

.contact-showroom-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   CONTACT FORM CARD
   ============================================ */
.contact-form-card {
    background: #FCFCFB;
    border-radius: 16px;
    padding: 32px 32px 36px 32px;
    border: 1px solid rgba(229, 229, 229, 0.4);
    box-shadow: 0 2px 12px rgba(11, 11, 11, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form-card:hover {
    box-shadow: 0 8px 24px rgba(11, 11, 11, 0.06);
    border-color: rgba(200, 169, 107, 0.1);
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0B0B0B;
    margin: 0 0 20px 0;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.contact-form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #0B0B0B;
    margin-bottom: 4px;
    display: block;
}

.contact-form-control,
.contact-form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #0B0B0B;
    background: #FCFCFB;
    transition: all 0.3s ease;
}

.contact-form-control:focus,
.contact-form-select:focus {
    outline: none;
    border-color: #C8A96B;
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.1);
}

.contact-form-control::placeholder {
    color: #B0B0B0;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: #C8A96B;
    color: #0B0B0B;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-submit-btn:hover {
    background: #9E8149;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 107, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn i {
    font-size: 0.9rem;
}

/* ============================================
   FORM RESULT / ALERT
   ============================================ */
.contact-result {
    margin-bottom: 12px;
}

.contact-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.contact-alert-info {
    background: #E8F4FD;
    color: #0B5E8A;
    border: 1px solid #C5E2F7;
}

.contact-alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.contact-alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .contact-main {
        padding: 30px 0 40px 0;
    }

    .contact-form-card {
        padding: 24px 20px 28px 20px;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-showroom-card {
        padding: 20px 16px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .contact-main {
        padding: 20px 0 30px 0;
    }

    .contact-form-card {
        padding: 18px 16px 22px 16px;
    }

    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .contact-form-control,
    .contact-form-select {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .contact-submit-btn {
        font-size: 0.88rem;
        padding: 12px;
    }

    .contact-info-item {
        gap: 10px;
    }

    .contact-info-icon {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .contact-info-value {
        font-size: 0.85rem;
    }

    .contact-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .contact-showroom-card {
        padding: 18px 14px 20px 14px;
    }

    .contact-showroom-text {
        font-size: 0.82rem;
    }

    .contact-showroom-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .contact-info-divider {
        margin: 8px 0;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .contact-main {
        padding: 16px 0 24px 0;
    }

    .contact-form-card {
        padding: 14px 12px 18px 12px;
    }

    .contact-form-title {
        font-size: 1rem;
    }

    .contact-form-control,
    .contact-form-select {
        font-size: 0.82rem;
        padding: 6px 10px;
    }

    .contact-form-label {
        font-size: 0.78rem;
    }

    .contact-submit-btn {
        font-size: 0.82rem;
        padding: 10px;
    }

    .contact-info-card {
        padding: 16px 12px;
    }

    .contact-showroom-card {
        padding: 14px 12px 16px 12px;
    }

    .contact-info-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .contact-info-value {
        font-size: 0.8rem;
    }

    .contact-social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .contact-submit-btn:hover {
        transform: none;
    }
    .contact-showroom-btn:hover {
        transform: none;
    }
    .contact-social-icons a:hover {
        transform: none;
    }
    .contact-info-item:hover .contact-info-icon {
        transform: none;
    }
}

/* ============================================
   CONTACT FAQ - Premium Accordion
   Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.contact-faq {
    padding: 60px 0 70px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.contact-faq::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-faq::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ----- Wrapper ----- */
.contact-faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.contact-faq-badge {
    display: inline-block;
    background: rgba(200, 169, 107, 0.12);
    color: #C8A96B;
    padding: 5px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    transition: all 0.3s ease;
}

.contact-faq-badge:hover {
    background: rgba(200, 169, 107, 0.2);
    transform: translateY(-2px);
}

.contact-faq-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #0B0B0B;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 6px 0;
}

.contact-faq-title-gold {
    color: #C8A96B;
    position: relative;
}

.contact-faq-title-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.contact-faq-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 10px 0 24px 0;
}

/* ============================================
   FAQ GRID / LIST
   ============================================ */
.contact-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   INDIVIDUAL FAQ ITEM
   ============================================ */
.contact-faq-item {
    background: #F7F5F0;
    border-radius: 14px;
    border: 1px solid rgba(229, 229, 229, 0.4);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(11, 11, 11, 0.02);
}

.contact-faq-item:hover {
    border-color: rgba(200, 169, 107, 0.15);
    box-shadow: 0 4px 16px rgba(11, 11, 11, 0.04);
}

/* ----- Active State ----- */
.contact-faq-item.active {
    background: #FCFCFB;
    border-color: rgba(200, 169, 107, 0.2);
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.06);
}

.contact-faq-item.active .contact-faq-question {
    color: #C8A96B;
}

.contact-faq-item.active .contact-faq-arrow {
    transform: rotate(180deg);
    color: #C8A96B;
}

.contact-faq-item.active .contact-faq-answer {
    max-height: 300px;
    padding: 0 20px 18px 20px;
    opacity: 1;
}

/* ============================================
   QUESTION
   ============================================ */
.contact-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: #0B0B0B;
    transition: all 0.3s ease;
    user-select: none;
    gap: 16px;
}

.contact-faq-question:hover {
    color: #C8A96B;
}

.contact-faq-question span {
    flex: 1;
}

.contact-faq-arrow {
    color: #6B6B6B;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* ============================================
   ANSWER
   ============================================ */
.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    opacity: 0;
}

.contact-faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #6B6B6B;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .contact-faq {
        padding: 50px 0 60px 0;
    }

    .contact-faq-title {
        font-size: 2rem;
    }

    .contact-faq-question {
        font-size: 0.92rem;
        padding: 16px 18px;
    }

    .contact-faq-answer p {
        font-size: 0.88rem;
    }

    .contact-faq::before,
    .contact-faq::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .contact-faq {
        padding: 40px 0 50px 0;
    }

    .contact-faq-title {
        font-size: 1.6rem;
    }

    .contact-faq-badge {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .contact-faq-line {
        width: 35px;
        height: 2px;
        margin: 8px 0 16px 0;
    }

    .contact-faq-grid {
        gap: 10px;
    }

    .contact-faq-item {
        border-radius: 12px;
    }

    .contact-faq-question {
        font-size: 0.85rem;
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-faq-arrow {
        font-size: 0.75rem;
        width: 16px;
    }

    .contact-faq-answer p {
        font-size: 0.85rem;
    }

    .contact-faq-item.active .contact-faq-answer {
        padding: 0 16px 14px 16px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .contact-faq {
        padding: 32px 0 40px 0;
    }

    .contact-faq-title {
        font-size: 1.3rem;
    }

    .contact-faq-badge {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .contact-faq-question {
        font-size: 0.78rem;
        padding: 12px 14px;
        gap: 10px;
    }

    .contact-faq-answer p {
        font-size: 0.78rem;
    }

    .contact-faq-item.active .contact-faq-answer {
        padding: 0 14px 12px 14px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .contact-faq-item {
        transition: none;
    }
    .contact-faq-answer {
        transition: none;
    }
    .contact-faq-arrow {
        transition: none;
    }
    .contact-faq-item.active .contact-faq-answer {
        transition: none;
    }
}
/* ============================================
   WHY CHOOSE IDEL DESIGNS - Premium Dark
   Idel Designs Inc.
   Font: Poppins
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.service-why-choose {
    padding: 60px 0 70px 0;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.service-why-choose::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ----- Wrapper ----- */
.service-why-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.service-why-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #FCFCFB;
    text-align: center;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    position: relative;
}

.service-why-title .gold {
    color: #C8A96B;
}

.service-why-title .gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.service-why-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 10px auto 30px auto;
    position: relative;
}

.service-why-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    animation: lineShimmer 3s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============================================
   WHY CHOOSE GRID
   ============================================ */
.service-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================
   WHY ITEM - Premium Dark Card
   ============================================ */
.service-why-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 22px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Gold Accent Border - Top */
.service-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

/* Gold Glow Effect */
.service-why-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

/* Hover Effects */
.service-why-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 169, 107, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-why-item:hover::before {
    opacity: 1;
}

.service-why-item:hover::after {
    width: 300px;
    height: 300px;
}

/* ----- Why Icon ----- */
.service-why-item .why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 169, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A96B;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(200, 169, 107, 0.04);
}

.service-why-item:hover .why-icon {
    background: #C8A96B;
    color: #0B0B0B;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.3);
    border-color: #C8A96B;
}

/* ----- Why Text ----- */
.service-why-item .why-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-why-item:hover .why-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-why-item .why-text strong {
    font-weight: 600;
    color: #FCFCFB;
}

/* ============================================
   ANIMATION - Staggered Entrance
   ============================================ */
.service-why-item {
    animation: whyFadeIn 0.6s ease-out both;
}

.service-why-item:nth-child(1) { animation-delay: 0.05s; }
.service-why-item:nth-child(2) { animation-delay: 0.10s; }
.service-why-item:nth-child(3) { animation-delay: 0.15s; }
.service-why-item:nth-child(4) { animation-delay: 0.20s; }
.service-why-item:nth-child(5) { animation-delay: 0.25s; }
.service-why-item:nth-child(6) { animation-delay: 0.30s; }

@keyframes whyFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 991px) {
    .service-why-choose {
        padding: 50px 0 60px 0;
    }

    .service-why-title {
        font-size: 2rem;
    }

    .service-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-why-item {
        padding: 18px 16px 16px 16px;
        gap: 12px;
    }

    .service-why-item .why-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .service-why-item .why-text {
        font-size: 0.88rem;
    }

    .service-why-choose::before,
    .service-why-choose::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    .service-why-choose {
        padding: 40px 0 50px 0;
    }

    .service-why-title {
        font-size: 1.6rem;
    }

    .service-why-line {
        width: 35px;
        height: 2px;
        margin: 8px auto 20px auto;
    }

    .service-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 4px;
    }

    .service-why-item {
        padding: 14px 12px 12px 12px;
        border-radius: 12px;
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    .service-why-item .why-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .service-why-item .why-text {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .service-why-item:hover {
        transform: translateY(-3px);
    }

    .service-why-item::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
    .service-why-choose {
        padding: 32px 0 40px 0;
    }

    .service-why-title {
        font-size: 1.3rem;
    }

    .service-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 2px;
    }

    .service-why-item {
        padding: 10px 8px 10px 8px;
        border-radius: 10px;
        gap: 8px;
        border-width: 1px;
    }

    .service-why-item .why-icon {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
        border-radius: 6px;
    }

    .service-why-item .why-text {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .service-why-item::before {
        height: 2px;
    }

    .service-why-item:hover {
        transform: translateY(-2px);
    }

    .service-why-line {
        width: 25px;
        margin: 6px auto 16px auto;
    }
}

/* ============================================
   ALTERNATE LAYOUT - Single Column (Optional)
   ============================================ */
@media (max-width: 350px) {
    .service-why-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .service-why-item {
        padding: 12px 14px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .service-why-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .service-why-item {
        transition: none;
    }
    .service-why-item:hover {
        transform: none;
    }
    .service-why-item::before {
        transition: none;
    }
    .service-why-item::after {
        transition: none;
    }
    .service-why-item .why-icon {
        transition: none;
    }
    .service-why-line::after {
        animation: none;
    }
}
/* ============================================
   FIX: Reduce White Space Between Header & Hero
   ============================================ */

/* ----- Hero Section Padding ----- */
.hero-section {
    padding-top: 30px !important;  /* Reduced from 100px */
    min-height: 75vh !important;   /* Slightly reduced */
}

/* ----- Hero Row Min Height ----- */
.hero-row {
    min-height: 70vh !important;
}

/* ----- Homepage Specific ----- */
.home .hero-section {
    padding-top: 20px !important;
    min-height: 70vh !important;
}

/* ----- About/Contact Page Specific ----- */
.about-hero .hero-section,
.contact-hero .hero-section {
    padding-top: 20px !important;
    min-height: 60vh !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 20px !important;
        min-height: auto !important;
    }
    .hero-row {
        min-height: auto !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 10px !important;
        min-height: auto !important;
    }
}
/* ============================================
   FIX: Mobile White Space Between Header & Hero
   ============================================ */

/* ----- Reset Hero for Mobile ----- */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: 60vh !important;
        margin-top: -10px !important; /* Pull hero up */
    }

    .hero-row {
        min-height: auto !important;
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    .hero-content {
        padding-top: 0 !important;
        padding-bottom: 10px !important;
    }

    .hero-text-col {
        padding-top: 0 !important;
    }

    /* If there's a spacer after header */
    body {
        padding-top: 60px !important; /* Match header height */
    }

    /* Remove any extra margin from main */
    main#main-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* ----- Extra small phones ----- */
@media (max-width: 400px) {
    .hero-section {
        min-height: 50vh !important;
        padding-top: 0 !important;
        margin-top: -15px !important;
    }

    .hero-row {
        padding-top: 5px !important;
        padding-bottom: 10px !important;
    }
}
/* ============================================
   GALLERY SECTION - PREMIUM DESIGN
   Idel Designs Inc.
   Color Scheme: Black #0B0B0B | Gold #C8A96B
   ============================================ */

/* ----- Section Container ----- */
.home-gallery-section {
    padding: 70px 0 80px 0;
    background: #FCFCFB;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.home-gallery-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.home-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.home-gallery-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.home-gallery-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 107, 0.10);
    color: #C8A96B;
    padding: 5px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border: 1px solid rgba(200, 169, 107, 0.08);
}

.home-gallery-tag i {
    font-size: 0.55rem;
}

.home-gallery-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #0B0B0B;
    letter-spacing: -0.5px;
    margin: 0 0 6px 0;
}

.home-gallery-title span {
    color: #C8A96B;
    position: relative;
}

.home-gallery-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    opacity: 0.4;
}

.home-gallery-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96B, #E3C98F);
    border-radius: 4px;
    margin: 8px auto 14px auto;
    position: relative;
}

.home-gallery-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    animation: dividerShine 3s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes dividerShine {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.home-gallery-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.98rem;
    color: #6B6B6B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================
   GALLERY ITEM - SAME SIZE FOR ALL
   ============================================ */
.home-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #F7F5F0;
    aspect-ratio: 4 / 3; /* ← ALL SAME SIZE */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(11, 11, 11, 0.04);
}

/* Hover Effect - Lift & Scale */
.home-gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(11, 11, 11, 0.10);
    z-index: 5;
}

/* Image */
.home-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery-item:hover .home-gallery-img {
    transform: scale(1.04);
}

/* ----- Overlay (Appears on Hover) ----- */
.home-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0) 0%,
        rgba(11, 11, 11, 0.1) 40%,
        rgba(11, 11, 11, 0.5) 80%,
        rgba(11, 11, 11, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.home-gallery-item:hover::after {
    opacity: 1;
}

/* ----- Zoom Icon (Appears on Hover) ----- */
.home-gallery-item .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    color: #FCFCFB;
    font-size: 1.8rem;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.home-gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ----- Gold Accent Border (Bottom) ----- */
.home-gallery-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C8A96B, #E3C98F, #C8A96B, transparent);
    z-index: 4;
    opacity: 0;
    transform: scaleX(0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery-item:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.home-gallery-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.home-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #0B0B0B;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #C8A96B;
    position: relative;
    overflow: hidden;
}

.home-gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.08), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery-btn:hover::before {
    left: 100%;
}

.home-gallery-btn:hover {
    background: #C8A96B;
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(200, 169, 107, 0.30);
    text-decoration: none;
}

.home-gallery-btn i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.home-gallery-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .home-gallery-section {
        padding: 60px 0 70px 0;
    }

    .home-gallery-title {
        font-size: 2rem;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .home-gallery-item .gallery-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .home-gallery-btn {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    .home-gallery-section::before,
    .home-gallery-section::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-gallery-section {
        padding: 48px 0 56px 0;
    }

    .home-gallery-header {
        margin-bottom: 32px;
    }

    .home-gallery-title {
        font-size: 1.6rem;
    }

    .home-gallery-tag {
        font-size: 0.55rem;
        padding: 3px 14px;
    }

    .home-gallery-subtitle {
        font-size: 0.88rem;
        padding: 0 16px;
    }

    .home-gallery-divider {
        width: 35px;
        height: 2px;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .home-gallery-item {
        border-radius: 10px;
    }

    .home-gallery-item .gallery-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .home-gallery-item:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .home-gallery-item::after {
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(11, 11, 11, 0) 0%,
            rgba(11, 11, 11, 0.05) 40%,
            rgba(11, 11, 11, 0.3) 80%,
            rgba(11, 11, 11, 0.5) 100%
        );
    }

    .home-gallery-cta {
        margin-top: 28px;
    }

    .home-gallery-btn {
        padding: 10px 24px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 400px) {
    .home-gallery-section {
        padding: 36px 0 44px 0;
    }

    .home-gallery-title {
        font-size: 1.3rem;
    }

    .home-gallery-tag {
        font-size: 0.5rem;
        padding: 2px 12px;
    }

    .home-gallery-subtitle {
        font-size: 0.82rem;
    }

    .home-gallery-grid {
        gap: 8px;
    }

    .home-gallery-item {
        border-radius: 8px;
    }

    .home-gallery-item .gallery-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .home-gallery-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
        max-width: 220px;
        gap: 8px;
    }
}

/* ============================================
   ANIMATION - Staggered Entrance
   ============================================ */
.home-gallery-item {
    animation: galleryFadeIn 0.6s ease-out both;
}

.home-gallery-item:nth-child(1) { animation-delay: 0.04s; }
.home-gallery-item:nth-child(2) { animation-delay: 0.08s; }
.home-gallery-item:nth-child(3) { animation-delay: 0.12s; }
.home-gallery-item:nth-child(4) { animation-delay: 0.16s; }
.home-gallery-item:nth-child(5) { animation-delay: 0.20s; }
.home-gallery-item:nth-child(6) { animation-delay: 0.24s; }
.home-gallery-item:nth-child(7) { animation-delay: 0.28s; }
.home-gallery-item:nth-child(8) { animation-delay: 0.32s; }
.home-gallery-item:nth-child(9) { animation-delay: 0.36s; }
.home-gallery-item:nth-child(10) { animation-delay: 0.40s; }
.home-gallery-item:nth-child(11) { animation-delay: 0.44s; }
.home-gallery-item:nth-child(12) { animation-delay: 0.48s; }
.home-gallery-item:nth-child(13) { animation-delay: 0.52s; }
.home-gallery-item:nth-child(14) { animation-delay: 0.56s; }

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .home-gallery-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .home-gallery-item {
        transition: none;
    }
    .home-gallery-item:hover {
        transform: none;
    }
    .home-gallery-img {
        transition: none;
    }
    .home-gallery-item:hover .home-gallery-img {
        transform: none;
    }
    .home-gallery-btn {
        transition: none;
    }
    .home-gallery-btn:hover {
        transform: none;
    }
    .home-gallery-btn::before {
        display: none;
    }
    .home-gallery-divider::after {
        animation: none;
    }
}