/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on mobile */

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 18px;
    font-weight: 500;
}

/* ===== LOADING SVG BACKGROUNDS ===== */
.loading-svg-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.loading-svg {
    position: absolute;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    animation: floatSlow 8s ease-in-out infinite;
}

/* Loading screen first row of SVGs */
.loading-svg-fridge-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: auto;
    animation-delay: 0s;
    transform: rotate(-10deg);
    --rotation: -10deg;
}

.loading-svg-microwave-1 {
    top: 20%;
    right: 8%;
    width: 100px;
    height: auto;
    animation-delay: 2s;
    transform: rotate(15deg);
    --rotation: 15deg;
}

.loading-svg-oven-1 {
    bottom: 25%;
    left: 8%;
    width: 110px;
    height: auto;
    animation-delay: 4s;
    transform: rotate(-5deg);
    --rotation: -5deg;
}

.loading-svg-washer-1 {
    bottom: 15%;
    right: 5%;
    width: 130px;
    height: auto;
    animation-delay: 6s;
    transform: rotate(8deg);
    --rotation: 8deg;
}

/* Loading screen styles optimized - removed unused rules */

/* Unused loading screen SVG styles removed for performance */

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Brand name styling */
.nav-brand {
    display: flex;
    align-items: center;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 50%, #1B6EC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(27, 110, 194, 0.3);
    letter-spacing: 0.5px;
}

.brand-name:hover {
    background: linear-gradient(135deg, #0F4C7A 0%, #1B6EC2 50%, #0F4C7A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px) scale(1.02);
    text-shadow: 0 4px 8px rgba(27, 110, 194, 0.4);
}

/* Logo styles removed - no logo in navigation */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1B6EC2;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #1B6EC2, #0F4C7A);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Circles */
.nav-contact-circles {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(27, 110, 194, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-circle:hover::before {
    left: 100%;
}

.contact-circle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(27, 110, 194, 0.4);
    background: linear-gradient(135deg, #0F4C7A 0%, #1B6EC2 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(27, 110, 194, 0.1);
    border: 1px solid rgba(27, 110, 194, 0.2);
}

.hamburger:hover {
    background: rgba(27, 110, 194, 0.15);
    transform: scale(1.05);
}

.bar {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    position: relative;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    overflow: hidden;
    z-index: 1;
    /* Add top padding to account for fixed navbar */
    padding-top: 80px;
    /* Ensure content is never hidden behind navbar */
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    color: white;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.brand-text {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.service-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
}

.service-area-badge i {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: #1B6EC2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1B6EC2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
    color: white;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-cards-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2c3e50;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.floating-card i {
    font-size: 24px;
    color: #1B6EC2;
}

.card-1 {
    top: 50px;
    right: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    left: 50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 50px;
    right: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== HERO SVG BACKGROUNDS ===== */
.hero-svg-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    max-width: 100vw;
}

.hero-svg {
    position: absolute;
    opacity: 0.25;
    transition: all 0.3s ease;
    animation: floatSlow 8s ease-in-out infinite;
}

/* First row of SVGs - Main prominent elements */
.hero-svg-fridge-1 {
    top: 8%;
    left: 3%;
    width: 120px;
    height: auto;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.hero-svg-microwave-1 {
    top: 15%;
    right: 5%;
    width: 100px;
    height: auto;
    animation-delay: 2s;
    transform: rotate(15deg);
}

.hero-svg-oven-1 {
    bottom: 20%;
    left: 6%;
    width: 110px;
    height: auto;
    animation-delay: 4s;
    transform: rotate(-5deg);
}

.hero-svg-washer-1 {
    bottom: 8%;
    right: 3%;
    width: 130px;
    height: auto;
    animation-delay: 6s;
    transform: rotate(8deg);
}

/* Second row of SVGs - Well spaced secondary elements */
.hero-svg-fridge-2 {
    top: 45%;
    left: 25%;
    width: 90px;
    height: auto;
    animation-delay: 1s;
    transform: rotate(20deg);
    opacity: 0.15;
}

.hero-svg-microwave-2 {
    top: 30%;
    right: 25%;
    width: 80px;
    height: auto;
    animation-delay: 3s;
    transform: rotate(-25deg);
    opacity: 0.15;
}

.hero-svg-oven-2 {
    bottom: 35%;
    right: 20%;
    width: 95px;
    height: auto;
    animation-delay: 5s;
    transform: rotate(12deg);
    opacity: 0.15;
}

.hero-svg-washer-2 {
    bottom: 45%;
    left: 20%;
    width: 110px;
    height: auto;
    animation-delay: 7s;
    transform: rotate(-8deg);
    opacity: 0.15;
}

/* Unused hero SVG rows removed for performance */

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    50% { 
        transform: translateY(-15px) rotate(var(--rotation, 0deg)); 
    }
}

/* CSS Custom Properties for remaining SVG rotations */
.hero-svg-fridge-1 { --rotation: -10deg; }
.hero-svg-microwave-1 { --rotation: 15deg; }
.hero-svg-oven-1 { --rotation: -5deg; }
.hero-svg-washer-1 { --rotation: 8deg; }

.hero-svg-fridge-2 { --rotation: 20deg; }
.hero-svg-microwave-2 { --rotation: -25deg; }

/* Removed unused hero SVG rows 4-6 for performance optimization */





/* ===== PRICING SECTION ===== */
.pricing-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pricing-content {
    text-align: center;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.primary {
    border-color: #1B6EC2;
    transform: scale(1.05);
}

.pricing-card.primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.primary:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(27, 110, 194, 0.4);
}

.pricing-icon i {
    font-size: 32px;
    color: white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B6EC2;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1B6EC2;
    font-family: 'Poppins', sans-serif;
}

.pricing-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.pricing-features i {
    color: #27ae60;
    font-size: 14px;
    width: 16px;
}

.pricing-note {
    background: rgba(27, 110, 194, 0.1);
    border: 1px solid rgba(27, 110, 194, 0.2);
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note p {
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: #1B6EC2;
    font-size: 18px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #f8f9ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
}

.service-features i {
    color: #27ae60;
    font-size: 14px;
}

.service-brands {
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f8f9ff;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(27, 110, 194, 0.4);
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== BRANDS CAROUSEL SECTION ===== */
.brands-carousel {
    padding: 80px 0;
    background: #f8f9ff;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    width: 100%;
    max-width: 100vw;
}

.carousel-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: calc(150px * 30); /* 30 slides * 150px each */
}

.logo-slide {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.brand-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 24)); /* Move by 24 original slides */
    }
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: #f8f9ff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1B6EC2;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-certifications h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-certifications ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-certifications li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.about-certifications i {
    color: #27ae60;
}

.about-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    border-radius: 20px;
    overflow: hidden;
}

.about-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
}

.washer-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    opacity: 1;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1B6EC2;
    font-family: 'Poppins', sans-serif;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 100px 0;
    background: white;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #1B6EC2;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #ffd700;
    font-size: 14px;
}

.google-icon {
    font-size: 24px;
    color: #4285f4;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    font-size: 14px;
    color: #888;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(27, 110, 194, 0.4);
}

.google-cta {
    text-align: center;
}

.google-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.btn-google {
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    background: #3367d6;
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.google-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.google-reviews-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 20px;
    border: 2px solid #e1ecff;
}

.business-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B6EC2;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-summary .stars {
    display: flex;
    gap: 3px;
}

.rating-summary .stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e1ecff;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #1B6EC2;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
}

.review-text {
    line-height: 1.6;
}

.review-text p {
    color: #555;
    font-size: 0.95rem;
}

.reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.reviews-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.reviews-footer .btn-primary {
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    color: white;
    border: none;
}

.reviews-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #3367D6 0%, #2855C5 100%);
}

/* ===== GOOGLE REVIEWS CAROUSEL WIDGET ===== */
/* Theme variables matching website design */
.grw-wrap {
    --grw-bg: #ffffff;
    --grw-text: #333333;           /* main text */
    --grw-muted: #64748b;          /* secondary text */
    --grw-border: #e5e7eb;         /* card border */
    --grw-card: #ffffff;           /* card bg */
    --grw-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --grw-star: #f59e0b;           /* ★ star color */
    --grw-accent: #1B6EC2;         /* CTA button - matching website theme */
    --grw-badge-bg: #f3f4f6;       /* initials circle */
    --grw-badge-ring: #e5e7eb;     /* avatar ring */
    --grw-gap: 20px;
    --grw-radius: 20px;            /* matching website rounded corners */
}

/* Layout & Typography */
.grw-wrap { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 16px; 
}

/* Header with rating + CTA */
.grw-top { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 16px; 
    margin-bottom: 30px; 
    flex-wrap: wrap; 
}

.grw-agg { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.grw-agg-num { 
    font-size: 48px; 
    font-weight: 800; 
    line-height: 1; 
    color: var(--grw-text);
    font-family: 'Poppins', sans-serif;
}

.grw-stars-agg { 
    font-size: 20px; 
    line-height: 1; 
    letter-spacing: 1px; 
    color: var(--grw-star); 
}

.grw-on { 
    font-size: 16px; 
    color: var(--grw-muted); 
    margin-top: 5px;
}

.grw-cta { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: linear-gradient(135deg, var(--grw-accent) 0%, #0F4C7A 100%);
    color: #fff; 
    padding: 12px 24px; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 110, 194, 0.3);
}

.grw-cta:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 110, 194, 0.4);
}

/* Controls (navigation) */
.grw-controls { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin: 20px 0 30px; 
}

.grw-nav { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    border: 2px solid var(--grw-border);
    background: #fff; 
    box-shadow: var(--grw-shadow); 
    cursor: pointer; 
    font-size: 20px; 
    line-height: 1; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grw-nav:hover {
    border-color: var(--grw-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.grw-nav:disabled { 
    opacity: 0.4; 
    cursor: default; 
    transform: none;
}

.grw-dots { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
}

.grw-dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    background: #d1d5db; 
    border: none; 
    padding: 0; 
    cursor: pointer; 
    transition: all 0.3s ease;
}

.grw-dot[aria-current="true"] { 
    background: var(--grw-accent); 
    transform: scale(1.2);
}

/* Carousel */
.grw-carousel { 
    position: relative; 
    overflow: hidden; 
    padding: 0 8px; 
}

.grw-track { 
    display: flex; 
    transition: transform 0.45s ease; 
    will-change: transform; 
    touch-action: pan-y; 
}

.grw-page { 
    flex: 0 0 100%; 
    padding: 0 6px; 
    box-sizing: border-box; 
}

.grw-grid { 
    display: grid; 
    gap: var(--grw-gap); 
    grid-template-columns: repeat(4, 1fr); 
}

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

@media (max-width: 640px) { 
    .grw-grid { 
        grid-template-columns: 1fr; 
    } 
}

.grw-card { 
    border: 1px solid var(--grw-border); 
    border-radius: var(--grw-radius);
    padding: 20px; 
    background: var(--grw-card); 
    box-shadow: var(--grw-shadow); 
    min-height: 240px; 
    transition: all 0.3s ease;
}

.grw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.grw-row { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 12px; 
    min-height: 46px;
}

.grw-avatar { 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    object-fit: cover; 
    object-position: center;
    border: 2px solid var(--grw-badge-ring); 
    background: #fff; 
    flex-shrink: 0;
}

.grw-badge { 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    background: var(--grw-badge-bg);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    color: var(--grw-muted); 
    border: 2px solid var(--grw-badge-ring); 
    font-size: 16px;
    flex-shrink: 0;
}

.grw-author { 
    font-weight: 700; 
    color: var(--grw-text);
    font-size: 16px;
}

.grw-date { 
    margin-left: auto; 
    font-size: 13px; 
    color: var(--grw-muted); 
}

.grw-stars-line { 
    margin: 8px 0 15px; 
    font-size: 18px; 
    color: var(--grw-star); 
}

.grw-text { 
    font-size: 15px; 
    line-height: 1.5; 
    color: var(--grw-text);
}

.grw-skeleton { 
    border: 1px solid var(--grw-border); 
    border-radius: var(--grw-radius); 
    height: 240px; 
    background: #f9fafb; 
    animation: pulse 1.5s infinite; 
}

@keyframes pulse { 
    0% { opacity: 0.6; } 
    50% { opacity: 1; } 
    100% { opacity: 0.6; } 
}

.grw-footer { 
    margin-top: 30px; 
    font-size: 14px; 
    color: var(--grw-muted); 
    text-align: center;
}

a.grw-link { 
    text-decoration: none; 
    color: var(--grw-accent); 
    font-weight: 600;
    transition: color 0.3s ease;
}

a.grw-link:hover {
    color: #0F4C7A;
}

.grw-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 15px;
    border-radius: var(--grw-radius);
    margin-top: 20px;
    text-align: center;
}

/* Mobile responsive styles for Google Reviews Carousel */
@media (max-width: 768px) {
    .grw-wrap {
        padding: 0 12px;
    }
    
    .grw-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .grw-agg-num {
        font-size: 36px;
    }
    
    .grw-stars-agg {
        font-size: 18px;
    }
    
    .grw-on {
        font-size: 14px;
    }
    
    .grw-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .grw-controls {
        margin: 15px 0 25px;
        gap: 12px;
    }
    
    .grw-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .grw-dot {
        width: 10px;
        height: 10px;
    }
    
    .grw-card {
        padding: 18px;
        min-height: 220px;
    }
    
    .grw-row {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .grw-avatar,
    .grw-badge {
        width: 38px;
        height: 38px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .grw-avatar {
        object-fit: cover;
        object-position: center;
    }
    
    .grw-author {
        font-size: 15px;
    }
    
    .grw-date {
        font-size: 12px;
    }
    
    .grw-stars-line {
        font-size: 16px;
        margin: 6px 0 12px;
    }
    
    .grw-text {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .grw-footer {
        margin-top: 25px;
        font-size: 13px;
    }
}

/* Mobile responsive styles for Google Reviews */
@media (max-width: 768px) {
    .google-reviews-header {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .business-info h3 {
        font-size: 1.4rem;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 10px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-date {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .google-reviews-header {
        padding: 15px;
    }
    
    .business-info h3 {
        font-size: 1.2rem;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .avatar-placeholder {
        font-size: 1rem;
    }
}

/* ===== OUR TEAM SECTION ===== */
.our-team {
    padding: 100px 0;
    background: #f8f9ff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    position: relative;
    border: 4px solid #1B6EC2;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-image.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-mark {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.team-info p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #1B6EC2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #f8f9ff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== BOOKING CTA SECTION ===== */
.booking-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.booking-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.booking-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}



/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1B6EC2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 110, 194, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    width: 20px;
    color: #1B6EC2;
}

.contact-item span {
    color: #e8e9ea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B6EC2 0%, #0F4C7A 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(27, 110, 194, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 110, 194, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) and (min-width: 769px) {
    /* Tablet styles */
    .contact-cards-grid {
        max-width: 700px;
        gap: 25px;
    }
    
    .booking-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Navigation */
    .navbar {
        padding: 0;
    }
    
    .nav-container {
        padding: 10px 15px;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        min-height: 64px;
    }
    
    /* Mobile brand name styling */
    .brand-name {
        font-size: 1.3rem;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        /* Allow wrapping on mobile (override any nowrap) */
        display: inline-block;
        white-space: normal;
        line-height: 1.15;
        word-break: break-word;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    /* Put "Repair" on its own line and indent it */
    .brand-name .brand-second {
        display: block;       /* forces the second line */
        margin-left: 1.2rem;  /* larger indent amount */
        color: #888;          /* gray color */
        font-weight: 800;     /* maintain same font weight */
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    /* Mobile navigation right side */
    .nav-right {
        gap: 10px;
    }
    
    /* Mobile contact circles styling */
    .nav-contact-circles {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .contact-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
        box-shadow: 0 3px 10px rgba(27, 110, 194, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-circle i {
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        margin-left: 8px;
        padding: 10px;
    }
    
    .hamburger .bar {
        width: 24px;
        height: 3px;
    }

    /* Hero Section */
    .hero {
        min-height: calc(100vh - 70px); /* Account for mobile navbar */
        padding: 90px 0 40px; /* Increased top padding for mobile */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-title-main {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-title-main .service-text {
        display: block;
        margin-left: 2rem !important; /* Create hanging indent for "Appliance Repair" */
        text-indent: 0; /* Reset any text-indent that might interfere */
    }

    .hero-title-sub {
        font-size: 1.1rem;
    }
    
    .service-area-badge {
        font-size: 0.85rem;
        padding: 10px 16px;
        margin-bottom: 20px;
        animation: none; /* Disable animation on mobile for better performance */
    }
    
    .service-area-badge i {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 14px;
    }

    .hero-image {
        height: auto;
        margin-top: 30px;
    }
    
    .floating-cards-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .floating-card {
        position: static;
        display: flex;
        padding: 12px 20px;
        font-size: 14px;
        margin: 0;
        animation: none;
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        width: fit-content;
        max-width: 280px;
    }

    .floating-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* Hero SVG Backgrounds - Mobile */
    .hero-svg {
        opacity: 0.15;
    }
    
    /* First row - mobile */
    .hero-svg-fridge-1 {
        width: 80px;
        top: 8%;
        left: 3%;
    }
    
    .hero-svg-microwave-1 {
        width: 70px;
        top: 15%;
        right: 5%;
    }
    
    .hero-svg-oven-1 {
        width: 75px;
        bottom: 20%;
        left: 5%;
    }
    
    .hero-svg-washer-1 {
        width: 85px;
        bottom: 10%;
        right: 3%;
    }
    
    /* Second row - smaller on mobile */
    .hero-svg-fridge-2 {
        width: 50px;
        opacity: 0.08;
    }
    
    .hero-svg-microwave-2 {
        width: 45px;
        opacity: 0.08;
    }



    /* Section Spacing */
    .services,
    .why-choose-us,
    .about,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    /* Pricing */
    .pricing-banner {
        padding: 50px 0;
    }
    
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.primary {
        transform: none;
    }
    
    .pricing-card.primary:hover {
        transform: translateY(-5px);
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 24px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-features {
        margin-bottom: 20px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .service-brands {
        font-size: 0.8rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Brands Carousel - Mobile */
    .brands-carousel {
        padding: 60px 0;
    }
    
    .logo-slide {
        flex: 0 0 120px;
        height: 60px;
        padding: 0 10px;
    }
    
    .brand-logo {
        max-width: 100px;
        max-height: 45px;
    }
    
    .carousel-track {
        width: calc(120px * 30);
        animation: scrollMobile 50s linear infinite;
    }
    
    @keyframes scrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 24));
        }
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 32px;
    }

    .about-stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .washer-illustration {
        width: 200px;
    }

    /* Reviews */
    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
    }

    /* Our Team */
    .our-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        border-width: 3px;
    }
    
    .question-mark {
        font-size: 35px;
    }
    
    .team-info h3 {
        font-size: 1.2rem;
    }
    
    .team-info p {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .booking-cta {
        padding: 30px 20px;
    }
    
    .booking-cta h3 {
        font-size: 1.5rem;
    }
    
    .booking-cta p {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 20px;
        margin-bottom: 20px;
    }



    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        gap: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal scroll on small mobile */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    /* Navigation */
    .nav-container {
        padding: 8px 12px;
        min-height: 60px;
        gap: 10px;
    }
    
    /* Very small mobile brand name styling */
    .brand-name {
        font-size: 1.2rem;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        /* Allow wrapping on mobile (override any nowrap) */
        display: inline-block;
        white-space: normal;
        line-height: 1.15;
        word-break: break-word;
        font-weight: 800;
        letter-spacing: 0.2px;
    }

    /* Put "Repair" on its own line and indent it */
    .brand-name .brand-second {
        display: block;       /* forces the second line */
        margin-left: 1rem;    /* larger indent for very small screens */
        color: #888;          /* gray color */
        font-weight: 800;     /* maintain same font weight */
    }
    
    /* Small mobile navigation right side */
    .nav-right {
        gap: 8px;
    }
    
    /* Small mobile contact circles */
    .nav-contact-circles {
        gap: 8px;
        align-items: center;
    }
    
    .contact-circle {
        width: 42px;
        height: 42px;
        font-size: 16px;
        min-width: 42px;
        min-height: 42px;
        flex-shrink: 0;
        box-shadow: 0 3px 8px rgba(27, 110, 194, 0.3);
    }
    
    .contact-circle i {
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
    }
    
    .hamburger {
        min-width: 42px;
        min-height: 42px;
        padding: 8px;
        margin-left: 6px;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2.5px;
    }

    /* Hero */
    .hero-title-main {
        font-size: 1.8rem;
    }
    
    .hero-title-main .service-text {
        display: block;
        margin-left: 1.5rem !important; /* Create hanging indent for "Appliance Repair" on smaller screens */
        text-indent: 0; /* Reset any text-indent that might interfere */
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .service-area-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 18px;
        gap: 6px;
    }
    
    .service-area-badge i {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .floating-card {
        padding: 10px 16px;
        font-size: 13px;
        margin: 0;
    }

    /* Hero SVG Backgrounds - Small Mobile */
    .hero-svg {
        opacity: 0.12;
    }
    
    /* First row - small mobile */
    .hero-svg-fridge-1 {
        width: 60px;
        top: 5%;
        left: 2%;
    }
    
    .hero-svg-microwave-1 {
        width: 50px;
        top: 12%;
        right: 3%;
    }
    
    .hero-svg-oven-1 {
        width: 55px;
        bottom: 18%;
        left: 3%;
    }
    
    .hero-svg-washer-1 {
        width: 65px;
        bottom: 8%;
        right: 2%;
    }
    
    /* Second row - very small on small mobile */
    .hero-svg-fridge-2 {
        width: 35px;
        opacity: 0.06;
    }
    
    .hero-svg-microwave-2 {
        width: 30px;
        opacity: 0.06;
    }

    /* Sections */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }

    .service-card,
    .feature-card {
        padding: 15px 10px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .service-features li {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .service-brands {
        font-size: 0.7rem;
    }
    
    /* Brands Carousel - Small Mobile */
    .brands-carousel {
        padding: 50px 0;
    }
    
    .logo-slide {
        flex: 0 0 100px;
        height: 50px;
        padding: 0 8px;
    }
    
    .brand-logo {
        max-width: 80px;
        max-height: 35px;
    }
    
    .carousel-track {
        width: calc(100px * 30);
        animation: scrollSmall 40s linear infinite;
    }
    
    @keyframes scrollSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 24));
        }
    }
    
    .service-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i,
    .feature-icon i {
        font-size: 20px;
    }

    /* About */
    .stat-number {
        font-size: 2rem;
    }
    
    .washer-illustration {
        width: 180px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
        top: 20px;
        right: 20px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 11px;
    }

    /* Our Team - Small Mobile */
    .team-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        border-width: 2px;
    }
    
    .question-mark {
        font-size: 28px;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
    }
    
    .team-info p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-card {
        padding: 15px;
    }
    
    .booking-cta {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .booking-cta h3 {
        font-size: 1.3rem;
    }
    
    .booking-cta p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    /* Misc */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    

    
    /* Pricing mobile */
    .pricing-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .pricing-icon {
        width: 50px;
        height: 50px;
    }
    
    .pricing-icon i {
        font-size: 20px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .pricing-note {
        padding: 15px;
        margin: 0 10px;
    }
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== SMOOTH SCROLLING ENHANCEMENTS ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    .floating-card {
        animation: none !important;
    }
    
    .hero-svg {
        animation-duration: 12s; /* Slower animations for better performance */
    }
    
    /* Optimize touch targets */
    .btn, .contact-circle, .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Reduce GPU layer creation */
    .service-card:hover,
    .feature-card:hover,
    .team-card:hover {
        transform: translateY(-5px); /* Reduced transform for better performance */
    }
    
    /* Optimize carousel for mobile */
    .carousel-track {
        will-change: transform; /* Hint to browser for GPU optimization */
    }
    
    /* Reduce parallax effects on mobile */
    .hero-background {
        transform: none !important;
    }
    
    /* Mobile-specific performance optimizations */
    .hero-title-main {
        contain: layout style; /* Optimize rendering containment */
    }
    
    .nav-container {
        contain: layout; /* Prevent reflow propagation */
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast; /* Better image rendering on mobile */
    }
    
    /* Reduce repaints on scroll */
    .navbar {
        will-change: background-color, box-shadow;
    }
    
    /* Optimize font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeSpeed; /* Prioritize speed over quality on mobile */
    }
}

/* ===== BROWSER ZOOM SUPPORT (ALL LEVELS) ===== */
/* Universal approach to handle all zoom levels properly */

/* Ensure all sections have proper scroll margin to account for fixed navbar */
.services,
.why-choose-us,
.about,
.reviews,
.contact,
.pricing-banner,
.brands-carousel,
.our-team {
    scroll-margin-top: 100px; /* Generous margin to handle all zoom levels */
}

/* Also apply scroll margin to any element with an id (for anchor links) */
[id] {
    scroll-margin-top: 100px;
}

/* Special handling for the home section (hero) */
#home {
    scroll-margin-top: 0; /* Hero section handles its own spacing */
}

/* Make navbar more robust for zoom levels */
.navbar {
    min-height: 60px; /* Minimum height */
    height: auto; /* Allow height to grow with content */
}

.nav-container {
    min-height: 60px; /* Match navbar min-height */
    padding: 15px 20px; /* Consistent padding */
}

/* Improve hero section for zoom compatibility */
.hero {
    /* Use calc to ensure content is never hidden */
    min-height: calc(100vh - 60px); /* Account for navbar */
    padding-top: 80px; /* Safe top padding */
    /* Add bottom padding for better spacing */
    padding-bottom: 40px;
}

/* Add scroll padding to html element for smooth scrolling with fixed header */
html {
    scroll-padding-top: 80px; /* This ensures smooth scroll accounts for navbar */
    /* Improve scrolling behavior for all zoom levels */
    scroll-behavior: smooth;
}

/* Ensure body doesn't have conflicting margins that could cause issues at zoom */
body {
    margin: 0;
    padding: 0;
    /* Prevent horizontal scroll at any zoom level */
    overflow-x: hidden;
    max-width: 100vw;
}

/* Responsive adjustments for different screen sizes that also help with zoom */
@media (max-width: 1200px) {
    .hero {
        padding-top: 90px;
    }
    
    html {
        scroll-padding-top: 90px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
    }
    
    html {
        scroll-padding-top: 100px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #1B6EC2;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .service-card,
    .feature-card,
    .review-card {
        border: 2px solid #000;
    }
}

/* ==== FONT OVERRIDES TO MATCH ORIGINAL DESIGN ==== */

/* Global body font */
body {
    font-family: 'Inter', sans-serif !important;
}

/* Headings + hero + brand text */
h1, h2, h3, h4, h5, h6,
.hero-title-main,
.hero-title,
.brand-name,
.brand-text,
.service-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
}

/* Hero main title more bold/strong like original */
.hero-title-main {
    font-weight: 800;
}