/* ═══════════════════════════════════════════════════════════
   Better Fix Technical Works LLC — Main Stylesheet
   Design: Modern, Minimal, Professional, Corporate
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables / Design Tokens ─── */
:root {
    --primary: #1B3A5C;
    --primary-dark: #122840;
    --primary-light: #2A5580;
    --accent: #E8A317;
    --accent-dark: #C78A0E;
    --accent-light: #F5C04A;
    --dark: #0F1923;
    --dark-soft: #1A2836;
    --body-text: #4A5568;
    --body-text-light: #718096;
    --light: #F8F9FA;
    --light-alt: #EDF2F7;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    color: var(--body-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}
a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--body-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Buttons ─── */
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 163, 23, 0.3);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.3);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ═══ TOP BAR ═══ */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}
.top-bar-item:hover {
    color: var(--accent);
}
.top-bar-item i {
    color: var(--accent);
    font-size: 12px;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}
.top-bar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition-fast);
}
.top-bar-social a:hover {
    color: var(--accent);
}

/* ═══ NAVBAR ═══ */
.navbar-main {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-main.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 20px;
}

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

.logo-primary {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.logo-accent {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--body-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-main .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--accent);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-main .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin-top: 8px;
    min-width: 240px;
}

.navbar-main .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--body-text);
    transition: var(--transition-fast);
}

.navbar-main .dropdown-item:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 24px;
}

.nav-cta .btn-accent {
    padding: 8px 20px;
    font-size: 13px;
    margin-left: 8px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* ═══ HERO SECTION ═══ */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.02)" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,133.3C672,117,768,139,864,170.7C960,203,1056,245,1152,245.3C1248,245,1344,203,1392,181.3L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"/></svg>') no-repeat top center / cover;
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,163,23,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,163,23,0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 640px;
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 480px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 18px 12px;
    position: relative;
}

.hero-stat + .hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* Hero image styling */
.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ═══ PAGE BANNER ═══ */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,163,23,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-custom li a {
    color: var(--accent);
}

.breadcrumb-custom li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255,255,255,0.3);
}

/* ═══ SERVICE CARDS ═══ */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--body-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-card .card-link:hover {
    gap: 8px;
}

/* ═══ ABOUT / WHY CHOOSE US ═══ */
.about-preview {
    background: var(--light);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.feature-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(232,163,23,0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 18px;
}

.feature-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 13px;
    color: var(--body-text-light);
    margin-bottom: 0;
}

/* ═══ STATS COUNTER ═══ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ═══ BRANDS CAROUSEL ═══ */
.brands-section {
    padding: 60px 0;
    background: var(--white);
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.brand-card span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--body-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.brand-card:hover span {
    color: var(--primary);
}

/* ═══ GALLERY ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15,25,35,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}

.testimonial-card .quote-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-card .quote-text {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-card .author-role {
    font-size: 12px;
    color: var(--body-text-light);
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 14px;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232,163,23,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
}

/* ═══ CONTACT FORM ═══ */
.contact-form-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--light);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    margin: 0 auto 16px;
}

.contact-info-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--body-text);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,163,23,0.12);
}

.contact-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-message {
    display: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.form-message.success {
    background: rgba(40,167,69,0.1);
    color: var(--success);
    border: 1px solid rgba(40,167,69,0.2);
}

.form-message.error {
    background: rgba(220,53,69,0.1);
    color: var(--danger);
    border: 1px solid rgba(220,53,69,0.2);
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--dark);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: var(--accent);
}

.footer-logo .logo-primary {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--accent);
}

.footer-description {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-heading {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

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

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ═══ BACK TO TOP ═══ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ═══ WHY CHOOSE US ═══ */
.why-choose-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

.why-choose-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-choose-card .icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.why-choose-card:hover .icon {
    background: var(--accent);
    color: var(--white);
}

.why-choose-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-choose-card p {
    font-size: 13px;
    color: var(--body-text-light);
    margin-bottom: 0;
}

/* ═══ ABOUT PAGE SPECIFIC ═══ */
.vision-mission-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.vision-mission-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.vision-mission-card .card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 22px;
    margin-bottom: 20px;
}

.vision-mission-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* ═══ HOME APPLIANCES BRAND GRID ═══ */
.brand-grid-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.brand-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.brand-grid-card .brand-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.brand-grid-card p {
    font-size: 13px;
    color: var(--body-text-light);
    margin-bottom: 16px;
}

.brand-grid-card .btn-sm {
    font-size: 12px;
    padding: 6px 16px;
}

/* ═══ GALLERY FILTERS ═══ */
.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.gallery-filters .filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ═══ MAP ═══ */
.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ═══ LOADING SPINNER ═══ */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 12px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ═══ HONEYPOT (Anti-spam) ═══ */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ═══ OFFERS SECTION ═══ */
.offer-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(232,163,23,0.15);
    border-radius: 50%;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.offer-card h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}
