/* ============================================================
   IBRAD Furniture Company - Showroom Gallery Styles
   ============================================================ */

/* --- IBRAD Color Palette --- */
:root {
    --ibrad-primary: #8B4513;
    --ibrad-primary-dark: #5C2E0A;
    --ibrad-primary-light: #A0522D;
    --ibrad-gold: #D4A017;
    --ibrad-gold-light: #F0C75E;
    --ibrad-dark: #2C1810;
    --ibrad-cream: #FFF8F0;
    --ibrad-warm: #F5E6D3;
    --ibrad-accent: #2E8B57;
}

/* --- Section Badge --- */
.ibrad-section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--ibrad-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ibrad-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ibrad-dark);
    margin-bottom: 16px;
}

.ibrad-section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ibrad-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ibrad-dark) 0%, #3E1F0D 50%, var(--ibrad-primary) 100%);
    padding: 120px 0 100px;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.ibrad-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.ibrad-hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--ibrad-cream);
    clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}

.ibrad-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 160, 23, 0.2);
    color: var(--ibrad-gold-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.ibrad-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ibrad-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 580px;
}

/* Hero Image / Cards */
.ibrad-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ibrad-hero-icon-main {
    width: 160px;
    height: 160px;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(212, 160, 23, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.ibrad-hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    z-index: 3;
}

.ibrad-hero-card i {
    font-size: 1.5rem;
    color: var(--ibrad-gold);
}

.ibrad-hero-card:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0.2s;
}

.ibrad-hero-card:nth-child(2) {
    bottom: 25%;
    left: 0;
    animation-delay: 0.4s;
}

.ibrad-hero-card:nth-child(3) {
    bottom: 5%;
    right: 15%;
    animation-delay: 0.6s;
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.ibrad-categories {
    background: var(--ibrad-cream);
    position: relative;
}

.ibrad-category-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.ibrad-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--ibrad-gold);
}

.ibrad-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FFF8F0, #F5E6D3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    transition: transform 0.4s ease;
}

.ibrad-category-card:hover .ibrad-category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.emoji-icon {
    line-height: 1;
}

.ibrad-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 16px;
}

.ibrad-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex-grow: 1;
}

.ibrad-category-list li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.ibrad-category-link {
    display: inline-block;
    color: var(--ibrad-gold);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ibrad-category-link:hover {
    color: var(--ibrad-primary);
    border-bottom-color: var(--ibrad-primary);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.ibrad-features {
    background: white;
}

.ibrad-feature-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 16px;
    background: var(--ibrad-cream);
    transition: all 0.3s ease;
}

.ibrad-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ibrad-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.ibrad-feature-card:hover .ibrad-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ibrad-feature-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ibrad-dark);
    margin: 0;
}

/* ============================================================
   GALLERY GRID SECTION
   ============================================================ */
.ibrad-gallery {
    background: var(--ibrad-cream);
}

/* Filter Bar */
.ibrad-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ibrad-filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid #e0d5c8;
    background: white;
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ibrad-filter-btn:hover {
    border-color: var(--ibrad-gold);
    color: var(--ibrad-primary);
}

.ibrad-filter-btn.active {
    background: linear-gradient(135deg, var(--ibrad-primary), var(--ibrad-primary-dark));
    border-color: var(--ibrad-primary);
    color: white;
}

/* Gallery Cards */
.ibrad-gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.ibrad-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
}

.ibrad-gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ibrad-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ibrad-gallery-card:hover .ibrad-gallery-image img {
    transform: scale(1.08);
}

.ibrad-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ibrad-gallery-card:hover .ibrad-gallery-overlay {
    opacity: 1;
}

.ibrad-gallery-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ibrad-gold);
    color: var(--ibrad-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    align-self: flex-start;
}

.ibrad-gallery-view-btn {
    padding: 10px 20px;
    background: white;
    color: var(--ibrad-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.ibrad-gallery-view-btn:hover {
    background: var(--ibrad-gold);
    transform: translateY(-2px);
}

.ibrad-gallery-info {
    padding: 18px 20px;
}

.ibrad-gallery-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 6px;
}

.ibrad-gallery-info small {
    color: #888;
    font-size: 0.8rem;
}

/* Gallery Item Animation */
.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

/* ============================================================
   VIRTUAL SHOWROOM SECTION
   ============================================================ */
.ibrad-showroom {
    background: white;
}

.ibrad-showroom-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(145deg, var(--ibrad-cream), #E8D5C0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.3rem;
    color: var(--ibrad-primary);
}

.ibrad-showroom-visual {
    background: linear-gradient(145deg, var(--ibrad-dark), #3E1F0D);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ibrad-showroom-placeholder i {
    font-size: 4rem;
    color: var(--ibrad-gold);
    margin-bottom: 20px;
}

.ibrad-showroom-placeholder h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.ibrad-showroom-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* ============================================================
   INQUIRY SECTION
   ============================================================ */
.ibrad-inquiry {
    background: linear-gradient(135deg, var(--ibrad-dark) 0%, #3E1F0D 50%, var(--ibrad-primary) 100%);
    position: relative;
}

.ibrad-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ibrad-gold), transparent);
}

.ibrad-inquiry-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
}

.ibrad-inquiry-icon {
    width: 70px;
    height: 70px;
    background: var(--ibrad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--ibrad-dark);
}

.ibrad-inquiry-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ibrad-inquiry-stats .stat {
    text-align: center;
}

.ibrad-inquiry-stats .stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ibrad-gold);
}

.ibrad-inquiry-stats .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.ibrad-cta {
    background: var(--ibrad-cream);
}

.ibrad-cta-contact {
    font-size: 0.95rem;
    color: #666;
}

/* ============================================================
   MODAL STYLES
   ============================================================ */
.ibrad-modal .modal-content {
    background: var(--ibrad-dark);
    color: white;
    border: none;
    border-radius: 20px;
}

.ibrad-modal .btn-close {
    filter: brightness(0) invert(1);
}

.ibrad-modal-image {
    border-radius: 12px;
    overflow: hidden;
    background: #1a0f0a;
}

.ibrad-modal-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ibrad-modal-image img:hover {
    transform: scale(1.03);
}

.ibrad-modal-testimonial {
    background: rgba(212, 160, 23, 0.1);
    border-left: 3px solid var(--ibrad-gold);
}

/* Zoom Modal */
.ibrad-zoom-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
}

.ibrad-zoom-modal .btn-close {
    filter: brightness(0) invert(1);
}

/* ============================================================
   NO RESULTS / TOAST STYLES (created by JS)
   ============================================================ */
.ibrad-no-results {
    animation: fadeInUp 0.5s ease;
}

.ibrad-no-results i {
    font-size: 3rem;
    color: #ccc;
}

.ibrad-toast {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.ibrad-toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Gallery item filter animation */
.gallery-item:not(.hidden) {
    animation: fadeInUp 0.4s ease forwards;
}

/* Image loading placeholder */
.ibrad-gallery-image img {
    background: #f0e6d8;
    min-height: 100px;
}

/* Modal image zoom cursor */
.ibrad-modal-image img {
    cursor: zoom-in;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .ibrad-hero-title {
        font-size: 2.5rem;
    }
    
    .ibrad-hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .ibrad-section-title {
        font-size: 2rem;
    }
    
    .ibrad-filter-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .ibrad-inquiry-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ibrad-hero-title {
        font-size: 2rem;
    }
    
    .ibrad-hero-subtitle {
        font-size: 1rem;
    }
    
    .ibrad-section-title {
        font-size: 1.6rem;
    }
    
    .ibrad-category-card {
        padding: 25px 20px;
    }
    
    .ibrad-filter-bar {
        gap: 8px;
    }
    
    .ibrad-filter-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .ibrad-inquiry-stats .stat-value {
        font-size: 1.3rem;
    }
    
    .ibrad-showroom-visual {
        padding: 40px 20px;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .ibrad-hero-title {
        font-size: 1.7rem;
    }
    
    .ibrad-hero {
        padding: 80px 0 60px;
    }
    
    .ibrad-gallery-info h5 {
        font-size: 0.9rem;
    }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.ibrad-topbar {
    background: var(--ibrad-dark);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 2px solid var(--ibrad-gold);
}

.ibrad-topbar-text {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 20px;
}

.ibrad-topbar-text i {
    color: var(--ibrad-gold);
    margin-right: 6px;
}

.ibrad-topbar-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ibrad-topbar-text a:hover {
    color: var(--ibrad-gold);
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.ibrad-navbar {
    background: linear-gradient(135deg, var(--ibrad-primary) 0%, var(--ibrad-primary-dark) 100%);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ibrad-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ibrad-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ibrad-dark);
    flex-shrink: 0;
}

.ibrand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ibrand-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.ibrand-sub {
    font-size: 0.7rem;
    color: var(--ibrad-gold-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ibrad-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.ibrad-navbar .navbar-nav .nav-link i {
    margin-right: 6px;
    font-size: 0.95rem;
}

.ibrad-navbar .navbar-nav .nav-link:hover,
.ibrad-navbar .navbar-nav .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.ibrad-navbar .navbar-nav .nav-link.active {
    background: rgba(212, 160, 23, 0.25);
    color: var(--ibrad-gold-light);
}

.ibrad-nav-whatsapp {
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    background: #25D366 !important;
    border: none !important;
}

.ibrad-nav-whatsapp i {
    font-size: 1.1rem;
    margin-right: 6px;
}

.ibrad-nav-whatsapp:hover {
    background: #1DA851 !important;
    transform: translateY(-2px);
}

/* ============================================================
   HERO STATS
   ============================================================ */
.ibrad-hero-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ibrad-hero-stat {
    text-align: center;
}

.ibrad-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ibrad-gold);
    line-height: 1;
}

.ibrad-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================================
   TESTIMONIAL TICKER
   ============================================================ */
.ibrad-ticker {
    background: var(--ibrad-primary);
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ibrad-ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ibrad-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 0 40px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.ibrad-ticker-item i {
    color: var(--ibrad-gold);
    font-size: 1rem;
}

.ibrad-ticker-item strong {
    color: var(--ibrad-gold-light);
    font-weight: 600;
    margin-left: 4px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HERO (Subpages)
   ============================================================ */
.ibrad-page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ibrad-dark) 0%, #3E1F0D 50%, var(--ibrad-primary) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.ibrad-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.ibrad-page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.ibrad-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT - STORY SECTION
   ============================================================ */
.ibrad-story {
    background: white;
}

.ibrad-story-image {
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
}

.ibrad-story-placeholder {
    background: linear-gradient(145deg, var(--ibrad-dark), #3E1F0D);
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-radius: 24px;
}

.ibrad-story-placeholder i {
    font-size: 5rem;
    color: var(--ibrad-gold);
    margin-bottom: 20px;
}

.ibrad-story-placeholder h4 {
    color: white;
    font-weight: 700;
}

.ibrad-story-placeholder p {
    color: rgba(255, 255, 255, 0.6);
}

.ibrad-story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.ibrad-story-signature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ibrad-dark);
    font-family: 'Playfair Display', serif;
}

.ibrad-story-signature span {
    font-size: 0.9rem;
    color: #888;
}

/* ============================================================
   ABOUT - MISSION & VISION
   ============================================================ */
.ibrad-mission-vision {
    background: var(--ibrad-cream);
}

.ibrad-mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ibrad-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.12);
    border-color: var(--ibrad-gold);
}

.ibrad-mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.ibrad-mission-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 12px;
}

.ibrad-mission-card p {
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   ABOUT - VALUES
   ============================================================ */
.ibrad-values {
    background: white;
}

.ibrad-value-card {
    background: var(--ibrad-cream);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.ibrad-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.1);
}

.ibrad-value-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #FFF8F0, #F5E6D3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--ibrad-primary);
    transition: transform 0.3s ease;
}

.ibrad-value-card:hover .ibrad-value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ibrad-value-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 10px;
}

.ibrad-value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   ABOUT - TEAM
   ============================================================ */
.ibrad-team {
    background: var(--ibrad-cream);
}

.ibrad-team-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.ibrad-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.12);
}

.ibrad-team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, var(--ibrad-primary), var(--ibrad-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
}

.ibrad-team-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 4px;
}

.ibrad-team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--ibrad-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.ibrad-team-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SERVICES - CARDS
   ============================================================ */
.ibrad-services-grid {
    background: white;
}

.ibrad-service-card {
    background: var(--ibrad-cream);
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ibrad-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.1);
    border-color: var(--ibrad-gold);
}

.ibrad-service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 20px;
}

.ibrad-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 10px;
}

.ibrad-service-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ibrad-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibrad-service-features li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: #555;
}

.ibrad-service-features li i {
    color: var(--ibrad-accent);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* ============================================================
   SERVICES - PROCESS STEPS
   ============================================================ */
.ibrad-process {
    background: var(--ibrad-cream);
}

.ibrad-step-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.ibrad-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.ibrad-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ibrad-dark);
}

.ibrad-step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 8px;
}

.ibrad-step-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.ibrad-step-connector {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--ibrad-gold);
    z-index: 2;
}

/* ============================================================
   SERVICES - MATERIALS
   ============================================================ */
.ibrad-materials {
    background: white;
}

.ibrad-materials-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ibrad-material-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ibrad-material-item i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ibrad-material-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 2px;
}

.ibrad-material-item small {
    font-size: 0.82rem;
    color: #888;
}

.ibrad-materials-visual .ibrad-material-sample {
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ibrad-materials-visual .ibrad-material-sample:nth-child(1) { background: linear-gradient(135deg, #8B6914, #A0782C); }
.ibrad-materials-visual .ibrad-material-sample:nth-child(2) { background: linear-gradient(135deg, #6B3A2A, #8B4513); }
.ibrad-materials-visual .ibrad-material-sample:nth-child(3) { background: linear-gradient(135deg, #8B7355, #A0896C); }
.ibrad-materials-visual .ibrad-material-sample:nth-child(4) { background: linear-gradient(135deg, #3E2723, #5D4037); }

/* ============================================================
   FAQ
   ============================================================ */
.ibrad-faq {
    background: var(--ibrad-cream);
}

.ibrad-faq .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ibrad-faq .accordion-button {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--ibrad-dark);
    background: white;
    font-size: 0.95rem;
    box-shadow: none !important;
}

.ibrad-faq .accordion-button:not(.collapsed) {
    background: var(--ibrad-primary);
    color: white;
}

.ibrad-faq .accordion-button::after {
    background-size: 16px;
}

.ibrad-faq .accordion-body {
    padding: 20px 24px;
    color: #666;
    line-height: 1.7;
    background: white;
}

/* ============================================================
   CONTACT - INFO
   ============================================================ */
.ibrad-contact {
    background: white;
}

.ibrad-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ibrad-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ibrad-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--ibrad-cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ibrad-primary);
}

.ibrad-contact-item h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 2px;
}

.ibrad-contact-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.ibrad-contact-item a {
    color: var(--ibrad-primary);
    text-decoration: none;
}

.ibrad-contact-item a:hover {
    color: var(--ibrad-gold);
    text-decoration: underline;
}

.ibrad-contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ibrad-contact-form-wrapper {
    background: var(--ibrad-cream);
    border-radius: 24px;
    padding: 40px 35px;
}

.ibrad-contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ibrad-dark);
}

.ibrad-contact-form .form-control,
.ibrad-contact-form .form-select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e0d5c8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ibrad-contact-form .form-control:focus,
.ibrad-contact-form .form-select:focus {
    border-color: var(--ibrad-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.ibrad-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.ibrad-contact-success {
    text-align: center;
    padding: 60px 30px;
}

.ibrad-contact-success i {
    font-size: 4rem;
    color: var(--ibrad-accent);
    margin-bottom: 20px;
}

.ibrad-contact-success h3 {
    font-weight: 700;
    color: var(--ibrad-dark);
    margin-bottom: 10px;
}

.ibrad-contact-success p {
    color: #666;
    font-size: 1.05rem;
}

/* ============================================================
   CONTACT - MAP
   ============================================================ */
.ibrad-map {
    background: var(--ibrad-cream);
}

.ibrad-map-container {
    border-radius: 24px;
    overflow: hidden;
}

.ibrad-map-placeholder {
    background: linear-gradient(145deg, var(--ibrad-dark), #3E1F0D);
    padding: 80px 40px;
    text-align: center;
    border-radius: 24px;
}

.ibrad-map-content i {
    font-size: 4rem;
    color: var(--ibrad-gold);
    margin-bottom: 16px;
}

.ibrad-map-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.ibrad-map-content p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ibrad-footer {
    background: linear-gradient(135deg, var(--ibrad-dark) 0%, #1a0f0a 100%);
    color: rgba(255, 255, 255, 0.8);
}

.ibrad-footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ibrad-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ibrad-footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.ibrad-footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.ibrad-footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ibrad-footer-contact a:hover {
    color: var(--ibrad-gold);
}

.ibrad-footer-contact i {
    margin-right: 8px;
}

.ibrad-footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.ibrad-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--ibrad-gold);
    border-radius: 3px;
}

.ibrad-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibrad-footer-links li {
    margin-bottom: 10px;
}

.ibrad-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ibrad-footer-links a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--ibrad-gold);
    transition: transform 0.3s ease;
}

.ibrad-footer-links a:hover {
    color: var(--ibrad-gold);
    padding-left: 4px;
}

.ibrad-footer-links a:hover i {
    transform: translateX(4px);
}

.ibrad-footer-hours li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.ibrad-footer-hours li span {
    color: var(--ibrad-gold);
    font-weight: 600;
}

.ibrad-social {
    display: flex;
    gap: 10px;
}

.ibrad-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ibrad-social-link:hover {
    background: var(--ibrad-gold);
    color: var(--ibrad-dark);
    transform: translateY(-3px);
}

.ibrad-social-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

.ibrad-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.ibrad-footer-bottom i {
    color: var(--ibrad-gold);
    margin-right: 4px;
}

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.ibrad-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.ibrad-mobile-btn {
    flex: 1;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ibrad-mobile-btn i {
    margin-right: 6px;
}

.ibrad-mobile-whatsapp {
    background: #25D366;
    color: white;
}

.ibrad-mobile-whatsapp:hover {
    background: #1DA851;
    color: white;
}

.ibrad-mobile-call {
    background: var(--ibrad-primary);
    color: white;
}

.ibrad-mobile-call:hover {
    background: var(--ibrad-primary-dark);
    color: white;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.ibrad-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--ibrad-gold), #B8860B);
    color: var(--ibrad-dark);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.ibrad-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ibrad-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

/* ============================================================
   ADDITIONAL RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .ibrad-page-hero-title {
        font-size: 2.2rem;
    }
    
    .ibrad-step-connector {
        display: none !important;
    }
    
    .ibrad-hero-stats {
        gap: 20px;
    }
    
    .ibrad-stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .ibrad-topbar {
        display: none !important;
    }
    
    .ibrad-navbar .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
    
    .ibrad-page-hero-title {
        font-size: 1.8rem;
    }
    
    .ibrad-page-hero-subtitle {
        font-size: 1rem;
    }
    
    .ibrad-contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .ibrad-back-to-top {
        bottom: 80px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .ibrad-page-hero {
        padding: 70px 0 50px;
    }
    
    .ibrad-hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .ibrad-stat-value {
        font-size: 1.2rem;
    }
    
    .ibrad-stat-label {
        font-size: 0.65rem;
    }
    
    .ibrad-mobile-btn {
        font-size: 0.8rem;
        padding: 12px 8px;
    }
    
    .ibrad-footer-bottom .text-md-end {
        margin-top: 8px;
    }
    
    .ibrad-story-placeholder {
        min-height: 250px;
        padding: 40px 20px;
    }
    
    .ibrad-map-placeholder {
        padding: 40px 20px;
    }
}
