/* ============================================================
   STYLE.CSS — Shared Styles for Salman Used Furniture Buyer
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #A8894A;
    --teal: #2D8F8F;
    --teal-light: #4AA8A8;
    --navy: #1A2A3A;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --light-gray: #ECEAE6;
    --charcoal: #2D2D2D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.09);
    --shadow-inset: inset 0 2px 6px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 20px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--charcoal);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: var(--off-white);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ===== UTILITIES ===== */
.gold-text {
    color: var(--gold);
}
.teal-text {
    color: var(--teal);
}
.section-padding {
    padding: 80px 0;
}
.section-padding-sm {
    padding: 50px 0;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    position: relative;
}
.section-title span {
    color: var(--gold);
}
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin-top: 12px;
    border-radius: 4px;
}
.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6B7A8A;
    max-width: 640px;
    line-height: 1.8;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 4px;
}

/* ===== CARDS & BUTTONS ===== */
.shadow-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 28px 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}
.shadow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-shadow {
    background: var(--off-white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-shadow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--gold);
}
.btn-shadow-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.35);
}
.btn-shadow-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 169, 110, 0.45);
}
.btn-outline-shadow {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(201, 169, 110, 0.3);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}
.btn-outline-shadow:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(248, 246, 242, 0.92);
    backdrop-filter: blur(14px);
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(201, 169, 110, 0.10);
}
.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}
.navbar-custom .navbar-brand .brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.navbar-custom .navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.navbar-custom .navbar-brand .brand-text .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}
.navbar-custom .navbar-brand .brand-text .brand-sub {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.navbar-custom .nav-link {
    color: var(--charcoal) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 14px !important;
    border-radius: 30px;
    transition: var(--transition);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 169, 110, 0.08);
}
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: var(--off-white);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
}
.navbar-toggler:focus {
    box-shadow: var(--shadow-inset);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232D2D2D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO (Home Page) ===== */
.hero {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 50px;
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}
.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 4px;
}
.hero p {
    color: #5A6B7A;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 520px;
    margin-top: 16px;
}
.hero .hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero .hero-stats .stat-item {
    background: var(--off-white);
    padding: 10px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 85px;
}
.hero .hero-stats .stat-item h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.hero .hero-stats .stat-item p {
    color: #6B7A8A;
    font-size: 0.75rem;
    margin-top: 2px;
    margin-bottom: 0;
}
.hero-gallery {
    position: relative;
    z-index: 2;
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-gallery .carousel-inner {
    border-radius: calc(var(--border-radius) - 4px);
    overflow: hidden;
}
.hero-gallery .carousel-item img {
    height: 380px;
    object-fit: cover;
    width: 100%;
}
.hero-gallery .carousel-control-prev,
.hero-gallery .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--off-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0.9;
    border: none;
}
.hero-gallery .carousel-control-prev {
    left: 12px;
}
.hero-gallery .carousel-control-next {
    right: 12px;
}
.hero-gallery .carousel-control-prev-icon,
.hero-gallery .carousel-control-next-icon {
    filter: invert(0.3);
}
.hero-gallery .carousel-indicators {
    bottom: -30px;
}
.hero-gallery .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    opacity: 0.4;
}
.hero-gallery .carousel-indicators .active {
    opacity: 1;
    background-color: var(--gold-dark);
}

/* ===== PRODUCT THUMBNAIL CARD ===== */
.thumb-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
}
.thumb-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.thumb-card .thumb-img {
    height: 160px;
    overflow: hidden;
    background: #f0ede8;
}
.thumb-card .thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.thumb-card:hover .thumb-img img {
    transform: scale(1.04);
}
.thumb-card .thumb-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.thumb-card .thumb-body h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.thumb-card .thumb-body p {
    color: #6B7A8A;
    font-size: 0.8rem;
    margin-bottom: 0;
    flex: 1;
}
.thumb-card .thumb-body .thumb-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ===== FURNITURE GRID (Home & Products) ===== */
.furniture-grid .furniture-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
    cursor: pointer;
}
.furniture-grid .furniture-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}
.furniture-grid .furniture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.furniture-grid .furniture-item:hover img {
    transform: scale(1.05);
}
.furniture-grid .furniture-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.furniture-grid .furniture-item:hover .overlay {
    opacity: 1;
}
.furniture-grid .furniture-item .overlay h5 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.furniture-grid .furniture-item .overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ===== PRODUCT CATEGORIES (Products Page) ===== */
.sofa-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 12px 4px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.sofa-scroll::-webkit-scrollbar {
    height: 6px;
}
.sofa-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
.sofa-scroll .sofa-card {
    min-width: 260px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}
.sofa-scroll .sofa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.sofa-scroll .sofa-card .sofa-img {
    height: 180px;
    overflow: hidden;
}
.sofa-scroll .sofa-card .sofa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.sofa-scroll .sofa-card:hover .sofa-img img {
    transform: scale(1.04);
}
.sofa-scroll .sofa-card .sofa-body {
    padding: 16px 18px 20px;
}
.sofa-scroll .sofa-card .sofa-body h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.sofa-scroll .sofa-card .sofa-body p {
    color: #6B7A8A;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.chair-grid .chair-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--off-white);
}
.chair-grid .chair-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.chair-grid .chair-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.chair-grid .chair-item:hover img {
    transform: scale(1.03);
}
.chair-grid .chair-item .chair-info {
    padding: 14px 18px 18px;
}
.chair-grid .chair-item .chair-info .badge-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.table-showcase .table-item {
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.table-showcase .table-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.table-showcase .table-item .table-img {
    height: 180px;
    overflow: hidden;
}
.table-showcase .table-item .table-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.table-showcase .table-item:hover .table-img img {
    transform: scale(1.04);
}
.table-showcase .table-item .table-body {
    padding: 16px 18px 20px;
    flex: 1;
}
.table-showcase .table-item .table-body .price-tag {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.kitchen-grid .kitchen-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--off-white);
}
.kitchen-grid .kitchen-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.kitchen-grid .kitchen-item .kitchen-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.kitchen-grid .kitchen-item .kitchen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.kitchen-grid .kitchen-item:hover .kitchen-img img {
    transform: scale(1.04);
}
.kitchen-grid .kitchen-item .kitchen-img .kitchen-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: #fff;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appliance-grid .appliance-item {
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 20px 16px 22px;
}
.appliance-grid .appliance-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.appliance-grid .appliance-item .appliance-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    height: 140px;
}
.appliance-grid .appliance-item .appliance-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.appliance-grid .appliance-item:hover .appliance-img img {
    transform: scale(1.04);
}

.office-list .office-item {
    background: var(--off-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.office-list .office-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}
.office-list .office-item .office-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.office-list .office-item .office-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.electronic-grid .electronic-item {
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}
.electronic-grid .electronic-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.electronic-grid .electronic-item .elec-img {
    height: 180px;
    overflow: hidden;
}
.electronic-grid .electronic-item .elec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.electronic-grid .electronic-item:hover .elec-img img {
    transform: scale(1.04);
}
.electronic-grid .electronic-item .elec-body .elec-tag {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* ===== TESTIMONIALS (About Page) ===== */
.testimonials-section {
    background: var(--off-white);
}
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 12px;
}
.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .client-info .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--off-white);
    box-shadow: var(--shadow-md);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== CONTACT (Contact Page) ===== */
.contact-section {
    background: var(--off-white);
}
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 16px;
    padding: 14px 18px;
    border: none;
    font-size: 0.95rem;
    background: var(--off-white);
    box-shadow: var(--shadow-inset);
    transition: var(--transition);
}
.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    box-shadow: var(--shadow-md);
    outline: none;
    background: var(--white);
}
.contact-form-wrapper .form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
}

/* ===== FAQ (FAQ Page) ===== */
.faq-section {
    background: var(--white);
}
.faq-accordion .accordion-item {
    background: var(--off-white);
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-lg);
}
.faq-accordion .accordion-header {
    background: transparent;
    border: none;
}
.faq-accordion .accordion-button {
    background: var(--off-white);
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    border: none;
    box-shadow: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--off-white);
    color: var(--gold);
    box-shadow: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A96E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.faq-accordion .accordion-body {
    background: var(--off-white);
    color: #6B7A8A;
    padding: 20px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ===== CTA SECTIONS (Home Page) ===== */
.cta-section {
    background: var(--gold);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .cta-content {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
.cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto;
}
.cta-section .btn-shadow {
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.cta-section .btn-shadow:hover {
    background: var(--off-white);
    color: var(--gold-dark);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.cta-secondary {
    background: var(--navy);
    color: var(--white);
}
.cta-secondary .btn-shadow {
    background: var(--gold);
    color: var(--white);
}
.cta-secondary .btn-shadow:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* ===== GALLERY PAGE ===== */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.gallery-page-grid .gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1/1;
    cursor: pointer;
}
.gallery-page-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-page-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-page-grid .gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
    position: fixed;
    bottom: 96px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-buttons-left {
    left: 24px;
}
.float-buttons-right {
    right: 24px;
}
.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    animation: floatPulse 2.5s infinite;
}
.float-btn:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}
.float-btn-whatsapp {
    background: #25D366;
    animation-delay: 0s;
}
.float-btn-whatsapp:hover {
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
}
.float-btn-call {
    background: #128C7E;
    animation-delay: 0.5s;
}
.float-btn-call:hover {
    box-shadow: 0 10px 36px rgba(18, 140, 126, 0.45);
}
@keyframes floatPulse {
    0%,
    100% {
        box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow: 0 6px 44px rgba(0, 0, 0, 0.40);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--off-white);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    cursor: pointer;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    box-shadow: var(--shadow-inset);
    color: var(--gold);
    transform: translateY(-4px);
}

/* ===== GALLERY MODAL ===== */
.gallery-modal .modal-content {
    background: var(--off-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: none;
}
.gallery-modal .modal-header {
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.gallery-modal .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.gallery-modal .gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}
.gallery-modal .gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 50px 0 24px;
}
.footer .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.footer .brand .brand-logo {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}
.footer .brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.footer .brand .brand-text .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}
.footer .brand .brand-text .brand-sub {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 6px;
}
.footer ul li a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    font-size: 0.88rem;
}
.footer ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    margin-right: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer .social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 110px 0 50px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-gallery .carousel-item img {
        height: 280px;
    }
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .float-buttons {
        bottom: 80px;
    }
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }
    .float-buttons-left {
        left: 16px;
    }
    .float-buttons-right {
        right: 16px;
    }
}
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .sofa-scroll .sofa-card {
        min-width: 200px;
    }
    .office-list .office-item {
        flex-wrap: wrap;
    }
    .office-list .office-item .office-actions {
        width: 100%;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .electronic-grid .electronic-item .elec-body .actions {
        flex-direction: column;
    }
    .electronic-grid .electronic-item .elec-body .actions .btn-shadow {
        width: 100%;
        justify-content: center;
    }
    .hero-gallery .carousel-item img {
        height: 220px;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .navbar-custom .navbar-brand .brand-text .brand-name {
        font-size: 0.95rem;
    }
    .navbar-custom .navbar-brand .brand-text .brand-sub {
        font-size: 0.5rem;
    }
    .navbar-custom .navbar-brand .brand-logo {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .float-buttons {
        bottom: 72px;
    }
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    .float-buttons-left {
        left: 12px;
    }
    .float-buttons-right {
        right: 12px;
    }
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .hero .hero-stats .stat-item {
        min-width: 65px;
        padding: 6px 10px;
    }
    .hero .hero-stats .stat-item h3 {
        font-size: 1.1rem;
    }
    .furniture-grid .furniture-item {
        aspect-ratio: 1/1;
    }
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .thumb-card .thumb-img {
        height: 140px;
    }
    .hero-gallery .carousel-item img {
        height: 180px;
    }
    .hero-gallery .carousel-control-prev,
    .hero-gallery .carousel-control-next {
        width: 32px;
        height: 32px;
    }
    .navbar-custom .navbar-brand .brand-text .brand-name {
        font-size: 0.85rem;
    }
    .navbar-custom .navbar-brand .brand-text .brand-sub {
        font-size: 0.45rem;
    }
    .navbar-custom .navbar-brand .brand-logo {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .float-buttons {
        bottom: 64px;
    }
    .float-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .float-buttons-left {
        left: 10px;
    }
    .float-buttons-right {
        right: 10px;
    }
    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
        right: 10px;
        bottom: 10px;
    }
}