/* Modern Clean CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #666;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.5;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Professional Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.page-loader::before {
    content: '';
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

.page-loader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.loader-brand {
    margin-bottom: 40px;
    animation: brandPulse 2s ease-in-out infinite;
}

.loader-brand .brand-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.loader-brand .brand-icon i {
    font-size: 36px;
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
}

.loader-brand h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loader-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.loading-animation {
    position: relative;
    margin-bottom: 30px;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid white;
    border-right: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: modernSpin 1s linear infinite;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: modernSpin 1.5s linear infinite reverse;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: modernSpin 0.8s linear infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-top: 30px;
    letter-spacing: 2px;
    animation: textPulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 45px rgba(255, 255, 255, 0.5),
        0 3px 12px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    font-stretch: expanded;
}

.loading-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loading-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: progressSlide 2s ease-in-out infinite;
}

/* Animations */
@keyframes modernSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes progressSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(10px, 10px);
    }
}

/* Hide header during loading */
body.loading .header {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

/* Mobile responsive loader */
@media (max-width: 768px) {
    .loader-brand h1 {
        font-size: 24px;
    }

    .loader-brand p {
        font-size: 14px;
    }

    .loader-brand .brand-icon {
        width: 70px;
        height: 70px;
    }

    .loader-brand .brand-icon i {
        font-size: 32px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
    }

    .loading-text {
        font-size: 22px;
    }

    .loading-progress {
        width: 150px;
    }
}

/* Header */
.header {
    background: #2563eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.header.sticky {
    background: #1d4ed8;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 55px;
}

.logo {
    display: none;
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    display: block;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 18px 28px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

.nav-menu a.active {
    background: #1d4ed8;
    color: white;
    border-bottom: 3px solid #1e40af;
}

.header-contact {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 10000;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.2s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modern Blue Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    z-index: 9999;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mobile-menu-content::before {
    content: '';
    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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    position: static;
    transform: none;
}

.mobile-menu-header .logo i {
    margin-right: 10px;
    font-size: 24px;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-nav {
    flex: 1;
    padding: 30px 0 40px;
    position: relative;
    z-index: 2;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.3s ease forwards;
}

.mobile-nav li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav li:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav li:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav li:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav li:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav li:nth-child(6) {
    animation-delay: 0.35s;
}

.mobile-nav li:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav a {
    display: block;
    padding: 20px 30px;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a:hover {
    color: white;
    background: rgba(37, 99, 235, 0.2);
    transform: translateX(10px);
}

.mobile-nav a.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: 700;
    transform: translateX(0);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.mobile-nav a.active::before {
    display: none;
}

.mobile-nav li:first-child a.active {
    border-radius: 0;
}

.mobile-contact {
    padding: 20px 25px;
    background: rgba(37, 99, 235, 0.15);
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    margin: 20px 0;
}

.mobile-contact .btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.mobile-contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    color: white;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-message {
    margin-bottom: 2rem;
}

.greeting {
    display: block;
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.typewriter {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    min-height: 120px;
    border-right: 3px solid #2563eb;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        border-color: #2563eb;
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.appliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
}

.appliance-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.appliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.appliance-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.appliance-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-content h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.service-features i {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background: #f8fafc;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2563eb;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.stat-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
}

/* Emergency Section */
.emergency-section {
    background: #dc2626;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: white;
}

.emergency-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-contact .btn {
    background: white;
    color: #dc2626;
    font-weight: 600;
    font-size: 18px;
}

.emergency-contact .btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 15px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 12px;
    margin-top: 2px;
    color: white;
    width: 18px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background: #2563eb;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: white;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-btn span {
        background: white;
    }

    .logo {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: white;
    }

    .logo i {
        font-size: 22px;
        margin-right: 8px;
    }

    .header-content {
        padding: 15px 0;
        min-height: 70px;
        position: relative;
        justify-content: space-between;
    }

    /* Ensure mobile menu is visible on mobile */
    .mobile-menu {
        display: block;
    }

    /* Allow header to be scrollable */
    .header {
        position: fixed;
        top: 0;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    .header.header-hidden {
        transform: translateY(-100%);
    }

    .hero {
        padding-top: 90px;
        min-height: 90vh;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .service-card {
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }

    .footer {
        padding: 40px 0 25px;
    }

    .btn {
        width: 100%;
        margin-bottom: 8px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 4px;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #dc2626;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    margin-left: 16px;
}

/* Why Cho
ose Us Section */
.why-choose-us {
    background: #f8fafc;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-feature .feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.brand-item h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #2563eb;
    font-weight: 600;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.brand-list span {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.brand-list span:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #f59e0b;
    margin-right: 4px;
    font-size: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.author-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Contact CTA Section */
.contact-cta-section {
    background: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .why-feature .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-feature {
        padding: 20px;
    }

    .brand-item {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .brand-list {
        gap: 8px;
    }

    .brand-list span {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* 
Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e5f3ff;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 32px;
    color: #2563eb;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.feature-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
}

.overlay-content h3 {
    margin-bottom: 8px;
    color: white;
}

.overlay-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Mission Vision Section */
.mission-vision-section {
    background: #f8fafc;
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-info span {
    color: #2563eb;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Values Section */
.values-section {
    background: #f8fafc;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 24px;
    color: white;
}

.value-item h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .team-member {
        margin-bottom: 20px;
    }

    .member-info {
        padding: 20px;
    }
}

/* Servi
ces Detailed Grid */
.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.service-detailed-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay .service-icon i {
    font-size: 24px;
    color: white;
}

.service-detailed-content {
    padding: 40px;
}

.service-detailed-content h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
    font-size: 24px;
}

.service-detailed-content>p {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

.service-features-detailed {
    margin-bottom: 24px;
}

.service-features-detailed h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 16px;
}

.service-features-detailed ul {
    list-style: none;
    padding: 0;
}

.service-features-detailed li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.service-features-detailed i {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
}

.service-brands {
    margin-bottom: 32px;
}

.service-brands h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 16px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brand-tags span:hover {
    background: #2563eb;
    color: white;
}

.service-actions {
    display: flex;
    gap: 12px;
}

.service-actions .btn {
    flex: 1;
    text-align: center;
}

/* Service Process */
.service-process {
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 20px;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.period {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 4px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #666;
}

.pricing-features i {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 8px;
}

.pricing-note p {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.pricing-note i {
    color: #2563eb;
    margin-right: 8px;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-actions {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .brand-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-detailed-content {
        padding: 30px 20px;
    }

    .process-step {
        padding: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 36px;
    }
}

* Service Hero Section */ .service-hero {
    background: #f8fafc;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-feature i {
    font-size: 20px;
    color: #2563eb;
    margin-right: 12px;
    width: 30px;
}

.hero-feature span {
    font-weight: 500;
    color: #1a1a1a;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Services Detail Section */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-detail-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-card .service-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-detail-card .service-icon i {
    font-size: 28px;
    color: white;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-detail-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-detail-card li:before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Common Problems Section */
.common-problems {
    background: #f8fafc;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.problem-icon i {
    font-size: 20px;
    color: white;
}

.problem-card h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 18px;
}

.problem-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.solution {
    padding: 12px;
    background: #f0f9ff;
    border-left: 3px solid #2563eb;
    border-radius: 4px;
}

.solution strong {
    color: #2563eb;
    font-size: 14px;
}

/* Brands Detailed Section */
.brands-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-detailed-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.brand-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.brand-logo i {
    font-size: 24px;
    color: white;
}

.brand-detailed-card h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 20px;
}

.brand-detailed-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.brand-detailed-card ul {
    list-style: none;
    padding: 0;
}

.brand-detailed-card li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.brand-detailed-card li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Emergency Features */
.emergency-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.emergency-feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-feature i {
    font-size: 20px;
    margin-right: 10px;
}

.emergency-feature span {
    font-weight: 500;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brands-detailed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emergency-features {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

    .service-detail-card,
    .problem-card,
    .brand-detailed-card {
        padding: 20px;
    }

    .hero-image img {
        height: 300px;
    }

    .emergency-features {
        gap: 15px;
    }
}

/*
 Appliances Section */
.appliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.appliance-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.appliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.appliance-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.appliance-icon i {
    font-size: 28px;
    color: white;
}

.appliance-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 20px;
}

.appliance-card>p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.appliance-services {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.appliance-services li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.appliance-services li:before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.appliance-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.appliance-brands span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appliance-brands span:hover {
    background: #2563eb;
    color: white;
}

/* Warranty Section */
.warranty-section {
    background: #f8fafc;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.warranty-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.warranty-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.warranty-icon i {
    font-size: 24px;
    color: white;
}

.warranty-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 18px;
}

.warranty-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design for Appliances and Warranty */
@media (max-width: 768px) {
    .appliances-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .warranty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .appliance-card {
        padding: 25px;
    }

    .warranty-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .warranty-grid {
        grid-template-columns: 1fr;
    }

    .appliance-card {
        padding: 20px;
    }

    .warranty-card {
        padding: 20px;
    }

    .appliance-brands {
        justify-content: center;
    }
}

* Climate Services Section */ .climate-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.climate-service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.climate-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.climate-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.climate-service-card .service-icon i {
    font-size: 28px;
    color: white;
}

.climate-service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 20px;
}

.climate-service-card>p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.climate-service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.climate-service-card li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.climate-service-card li:before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-price {
    background: #f0f9ff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #2563eb;
}

.service-price span {
    color: #666;
    font-size: 14px;
}

.service-price strong {
    color: #2563eb;
    font-size: 16px;
}

/* Seasonal Services Section */
.seasonal-services {
    background: #f8fafc;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seasonal-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.seasonal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seasonal-icon.summer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.seasonal-icon.winter {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.seasonal-icon.maintenance {
    background: linear-gradient(135deg, #10b981, #059669);
}

.seasonal-icon i {
    font-size: 32px;
    color: white;
}

.seasonal-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.seasonal-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.seasonal-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.seasonal-card li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.seasonal-card li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seasonal-period {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Energy Efficiency Section */
.energy-efficiency {
    background: white;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.efficiency-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.efficiency-card:hover {
    transform: translateY(-3px);
    border-color: #10b981;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.efficiency-icon {
    width: 70px;
    height: 70px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.efficiency-icon i {
    font-size: 28px;
    color: white;
}

.efficiency-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.efficiency-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.efficiency-tips ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.efficiency-tips li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.efficiency-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Responsive Design for Climate Services */
@media (max-width: 768px) {
    .climate-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .efficiency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .climate-service-card {
        padding: 25px;
    }

    .seasonal-card {
        padding: 25px;
    }

    .efficiency-card {
        padding: 25px;
    }

    .seasonal-period {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {

    .climate-service-card,
    .seasonal-card,
    .efficiency-card {
        padding: 20px;
    }

    .service-price {
        padding: 10px;
    }
}

/* Con
tact Info Section */
.contact-info-section {
    background: #f8fafc;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details a,
.contact-details span {
    color: #2563eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
}

.contact-details .emergency {
    color: #dc2626;
    font-weight: 600;
}

/* Live Location Section */
.live-location-section {
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.location-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #10b981;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.current-time {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    font-size: 20px;
    color: #2563eb;
    margin-top: 2px;
}

.location-item h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
    font-size: 16px;
}

.location-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.location-item a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.location-item a:hover {
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 15px;
}

.location-actions .btn {
    flex: 1;
    text-align: center;
}

.live-map {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.map-header h4 {
    margin: 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.map-container {
    position: relative;
}

.service-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.marker-pulse {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: markerPulse 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.service-marker i {
    font-size: 24px;
    color: #2563eb;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.map-info {
    padding: 15px 20px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

.map-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-color.service {
    background: #2563eb;
}

.legend-color.coverage {
    background: #10b981;
}

.last-update {
    font-size: 12px;
    color: #666;
}

.last-update span {
    color: #2563eb;
    font-weight: 500;
}

/* Map Section */
.map-section {
    background: #f8fafc;
    padding: 80px 0;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px dashed #e5e7eb;
}

.map-content i {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.map-content h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.map-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.map-info-item i {
    color: #2563eb;
    font-size: 16px;
}

/* Service Areas Section */
.service-areas {
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon i {
    font-size: 24px;
    color: white;
}

.area-card h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 6px 0;
    color: #666;
    border-bottom: 1px solid #e5e7eb;
}

.area-card li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: #2563eb;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question {
    background: #f0f9ff;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-status {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .location-actions {
        flex-direction: column;
    }

    .map-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .map-legend {
        justify-content: center;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 25px;
    }

    .location-item {
        padding: 15px;
    }

    .area-card {
        padding: 25px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .map-header {
        padding: 15px;
    }

    .map-header h4 {
        font-size: 16px;
    }
}

/* Locati
on Section */
.location-section {
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.static-map {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.map-header h4 {
    margin: 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.location-badge {
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.map-container {
    position: relative;
}

.map-info {
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.map-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    color: #2563eb;
    font-size: 16px;
}

.service-areas {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-areas h3 {
    margin-bottom: 25px;
    color: #1a1a1a;
    font-size: 20px;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.area-group h4 {
    margin-bottom: 15px;
    color: #2563eb;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-group li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 20px;
}

.area-group li:last-child {
    border-bottom: none;
}

.area-group li:before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design for Location Section */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-details {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .areas-list {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-areas {
        padding: 20px;
    }

    .map-header {
        padding: 15px;
    }

    .map-info {
        padding: 15px;
    }
}

/* Enha
nced FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-items {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: #fafbfc;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question:focus {
    outline: none;
    background: #f0f9ff;
}

.question-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-question i {
    color: #2563eb;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: #f0f9ff;
    color: #2563eb;
    border-bottom: 1px solid #e0f2fe;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.answer-content {
    padding: 0 32px 28px;
    font-family: 'Inter', sans-serif;
}

.answer-content p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

.answer-content ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.answer-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.answer-content li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 8px;
    font-size: 16px;
}

.answer-content strong {
    color: #1a202c;
    font-weight: 600;
}

.brand-categories {
    margin: 20px 0;
}

.brand-group {
    margin-bottom: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    font-size: 15px;
    line-height: 1.6;
}

.brand-group strong {
    color: #2563eb;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.service-areas-list {
    margin: 20px 0;
}

.area-group {
    margin-bottom: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    font-size: 15px;
    line-height: 1.6;
}

.area-group strong {
    color: #2563eb;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.faq-contact {
    margin-top: 60px;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact-content h3 {
    margin-bottom: 16px;
    color: #1a202c;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.faq-contact-content p {
    margin-bottom: 32px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design for Enhanced FAQ */
@media (max-width: 768px) {
    .faq-categories {
        gap: 20px;
    }

    .category-header {
        padding: 20px;
    }

    .category-header h3 {
        font-size: 18px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .answer-content {
        padding: 0 20px 20px;
    }

    .faq-contact {
        padding: 30px 20px;
    }

    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .category-header {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }

    .answer-content {
        padding: 0 15px 15px;
        font-size: 14px;
    }

    .brand-categories,
    .service-areas-list {
        gap: 8px;
    }

    .brand-group,
    .area-group {
        padding: 10px;
        font-size: 14px;
    }
}

/* Mobil
e Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 9998;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: callButtonPulse 2s ease-in-out infinite;
}

.mobile-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

.mobile-call-button i {
    font-size: 24px;
    color: white;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.mobile-call-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

/* Call button animations */
@keyframes callButtonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Show call button only on mobile devices */
@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
    }
}

/* Adjust position for smaller screens */
@media (max-width: 480px) {
    .mobile-call-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .mobile-call-button i {
        font-size: 22px;
    }
}

/* Hide call button when page loader is active */
body.loading .mobile-call-button {
    display: none;
}/* S
croll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    z-index: 9998;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    animation: scrollButtonPulse 3s ease-in-out infinite;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
}

.scroll-to-top i {
    font-size: 20px;
    color: white;
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: scrollRipple 3s ease-out infinite;
}

/* Scroll button animations */
@keyframes scrollButtonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes scrollRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Adjust position for smaller screens */
@media (max-width: 480px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
    }
    
    .scroll-to-top i {
        font-size: 18px;
    }
}

/* Hide scroll button when page loader is active */
body.loading .scroll-to-top {
    display: none;
}