/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #00d4ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
}

.emergency-call {
    background: #ff4757 !important;
    color: white !important;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.emergency-call:hover {
    background: #ff3742 !important;
    transform: scale(1.05);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Page System */
.page {
    display: none;
    min-height: calc(100vh - 120px);
    margin-top: 80px;
}

.page.active {
    display: block;
}

/* Services List Section */
.services-list-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Service Detail Pages */
.service-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-header {
    margin-bottom: 3rem;
}

.service-detail-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.service-features-section,
.service-process-section {
    margin-bottom: 3rem;
}

.service-features-section h3,
.service-process-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.detailed-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detailed-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
}

.detailed-features-list i {
    color: #27ae60;
    font-size: 1rem;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    border-left: 2px solid #e9ecef;
    margin-bottom: 1rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: -10px;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-action-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.primary-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.secondary-action-btn {
    background: transparent;
    color: #3498db;
    padding: 15px 30px;
    border: 2px solid #3498db;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.secondary-action-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.service-image-container {
    margin-bottom: 2rem;
}

.service-image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-brands-section,
.common-issues-section {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.service-brands-section h4,
.common-issues-section h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.brand-tag {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #495057;
}

.issues-list {
    list-style: none;
}

.issues-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
    font-size: 0.9rem;
}

.issues-list li:last-child {
    border-bottom: none;
}

.issues-list i {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 2px;
}

.warranty-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 1.5rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.warranty-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.warranty-badge i {
    font-size: 2rem;
}

.warranty-text strong {
    display: block;
    font-size: 1.1rem;
}

.warranty-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3) 0%, rgba(42, 82, 152, 0.3) 100%),
        url('./attached_assets/hero-appliances-collection.png') center/cover no-repeat;
    color: white;
    padding: 40px 0 80px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffd700;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-button.primary:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

.cta-button.secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #00d4ff;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Service Section */
.quick-service {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quick-service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-service-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.emergency-btn:first-child {
    background: white;
    color: #ff4757;
}

.emergency-btn.whatsapp {
    background: #25d366;
    color: white;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

/* Services Section */
.services-preview,
.services-detail {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.price-tag {
    background: #25d366;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-content i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list i {
    color: #27ae60;
    font-size: 0.8rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #27ae60;
    font-size: 0.9rem;
    min-width: 16px;
}

.service-buttons {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.book-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.book-btn::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;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    scale: 1.02;
}

.book-btn i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.details-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 15px 25px;
    border: 2px solid #3498db;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.details-btn:hover::before {
    left: 0;
}

.details-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.details-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.details-btn:hover {
    color: white;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    scale: 1.02;
}

.details-btn:hover span,
.details-btn:hover i {
    color: white;
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Our Services Section */
.our-services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.our-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(26, 188, 156, 0.02) 100%);
    z-index: 0;
}

.our-services-section .container {
    position: relative;
    z-index: 1;
}

.our-services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.our-services-section .section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.our-services-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #1abc9c 100%);
    border-radius: 2px;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.service-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-showcase-card:hover::before {
    left: 100%;
}

.service-showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.service-showcase-card:nth-child(2) {
    transform: translateY(20px);
}

.service-showcase-card:nth-child(2):hover {
    transform: translateY(5px) scale(1.02);
}

.service-showcase-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

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

.service-showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 62, 80, 0.1) 100%);
    z-index: 1;
}

.service-showcase-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-showcase-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.service-showcase-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #3498db 0%, #1abc9c 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-showcase-card:hover .service-showcase-content h3::after {
    width: 60px;
}

.service-showcase-card:hover .service-showcase-content h3 {
    color: #3498db;
    transform: translateY(-2px);
}

.service-showcase-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    transition: all 0.3s ease;
}

.service-showcase-card:hover .service-showcase-content p {
    color: #555;
    transform: translateY(-2px);
}

/* Floating animation for service cards */
@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.service-showcase-card:nth-child(1) {
    animation: serviceFloat 4s ease-in-out infinite;
}

.service-showcase-card:nth-child(2) {
    animation: serviceFloat 4s ease-in-out infinite 1s;
}

.service-showcase-card:nth-child(3) {
    animation: serviceFloat 4s ease-in-out infinite 2s;
}

/* Mobile responsive for Our Services section */
@media (max-width: 768px) {
    .our-services-section {
        padding: 60px 0;
    }
    
    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-showcase-card:nth-child(2) {
        transform: none;
    }
    
    .service-showcase-card:nth-child(2):hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .service-showcase-image {
        height: 200px;
    }
    
    .service-showcase-content {
        padding: 2rem;
    }
    
    .service-showcase-content h3 {
        font-size: 1.3rem;
    }
    
    .our-services-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-showcase-content {
        padding: 1.5rem;
    }
    
    .service-showcase-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-showcase-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .our-services-section .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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="%23e9ecef" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.feature-card:nth-child(even) {
    transform: translateY(20px);
}

.feature-card:nth-child(even):hover {
    transform: translateY(5px) scale(1.02);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #1abc9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db, #2980b9, #1abc9c, #3498db);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

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

    100% {
        transform: rotate(360deg);
    }
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #3498db 0%, #1abc9c 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card:hover h3 {
    color: #3498db;
    transform: translateY(-2px);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0;
}

.feature-card:hover p {
    color: #555;
    transform: translateY(-2px);
}

/* Enhanced section header for Why Choose Us */
.why-choose-us .section-header {
    position: relative;
    margin-bottom: 3rem;
}

.why-choose-us .section-header h2 {
    position: relative;
    display: inline-block;
}

.why-choose-us .section-header h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(26, 188, 156, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: #1abc9c;
}

/* Floating elements animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card:nth-child(1) .feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation: float 3s ease-in-out infinite 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation: float 3s ease-in-out infinite 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation: float 3s ease-in-out infinite 1.5s;
}

.feature-card:nth-child(5) .feature-icon {
    animation: float 3s ease-in-out infinite 2s;
}

.feature-card:nth-child(6) .feature-icon {
    animation: float 3s ease-in-out infinite 2.5s;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer strong {
    color: #2c3e50;
    font-weight: 600;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-weight: 600;
    margin: 0;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    font-size: 2rem;
    color: #3498db;
    min-width: 40px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-content strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.badge-content span {
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-content {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0 2rem 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.pricing-btn {
    margin: 0 2rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 4rem);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.pricing-note {
    background: #fff3cd;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #ffc107;
}

.note-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-content i {
    color: #f39c12;
    font-size: 1.5rem;
    min-width: 24px;
}

.note-content h4 {
    margin-bottom: 0.5rem;
    color: #856404;
}

.note-content p {
    color: #856404;
    margin: 0;
}

/* Contact Section */
.contact-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-details span {
    display: block;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-header p {
    margin: 0;
    opacity: 0.9;
}

.modal form {
    padding: 2rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: auto;
    min-width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 0 20px;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.whatsapp-text {
    font-size: 14px;
    white-space: nowrap;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.emergency-call-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1001;
}

.emergency-call-float a {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    transition: all 0.3s ease;
    font-size: 20px;
    animation: pulse 2s infinite;
}

.emergency-call-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.call-text {
    display: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-social a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        border-radius: 0;
    }

    /* Service Detail Mobile Responsive */
    .service-detail-section {
        padding: 40px 0;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-sidebar {
        position: static;
        order: -1;
    }

    .service-detail-header h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .service-detail-description {
        font-size: 1rem;
    }

    .service-price-badge {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 15px 20px;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .service-features-section h3,
    .service-process-section h3 {
        font-size: 1.3rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .detailed-features-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .detailed-features-list li {
        padding: 1rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .process-list li {
        padding: 1rem 0 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .process-list li::before {
        left: -8px;
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }

    .service-action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        padding: 18px 25px;
        font-size: 1rem;
        min-width: auto;
    }

    .service-image-container {
        margin-bottom: 1.5rem;
    }

    .service-brands-section,
    .common-issues-section {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-brands-section h4,
    .common-issues-section h4 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .brand-tag {
        padding: 0.4rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .issues-list li {
        font-size: 0.85rem;
        padding: 0.8rem 0;
        line-height: 1.4;
    }

    .warranty-info {
        padding: 1.2rem;
        text-align: center;
    }

    .warranty-badge {
        flex-direction: column;
        gap: 8px;
    }

    .warranty-badge i {
        font-size: 1.5rem;
    }

    .warranty-text strong {
        font-size: 1rem;
    }

    .warranty-text span {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card:nth-child(even) {
        transform: none;
    }

    .feature-card:nth-child(even):hover {
        transform: translateY(-10px) scale(1.02);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats-inline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-text,
    .call-text {
        display: none;
    }

    .whatsapp-float {
        width: 60px;
        padding: 0;
        border-radius: 50%;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .quick-service,
    .services-preview,
    .services-detail,
    .why-choose-us,
    .reviews,
    .about-content,
    .contact-content,
    .pricing-content {
        padding: 60px 0;
    }

    .emergency-actions {
        flex-direction: column;
    }

    .emergency-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .service-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .book-btn,
    .details-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
    }

    .book-btn i,
    .details-btn i {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-stats-inline {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 5% auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Service Detail Extra Small Mobile */
    .service-detail-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .service-detail-header h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .service-detail-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-price-badge {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 1.3rem;
    }

    .service-features-section,
    .service-process-section {
        margin-bottom: 2rem;
    }

    .service-features-section h3,
    .service-process-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .detailed-features-list li {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .detailed-features-list i {
        font-size: 0.9rem;
    }

    .process-list li {
        padding: 0.8rem 0 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }

    .brand-tag {
        padding: 0.3rem;
        font-size: 0.65rem;
    }

    .issues-list li {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }

    .issues-list i {
        font-size: 0.7rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* Service Hero Section for Detail Pages */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.service-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.4) 0%, rgba(42, 82, 152, 0.4) 100%);
    padding: 80px 0;
}

.service-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.service-badge i {
    color: #ffd700;
}

.service-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-price-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.service-price-hero .price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-price-hero .price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-details {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Mobile responsive for service hero */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        margin-top: 60px;
    }

    .service-hero-overlay {
        padding: 60px 0;
    }

    .service-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-hero-content p {
        font-size: 1rem;
    }

    .service-price-hero {
        flex-direction: column;
        gap: 5px;
        padding: 12px 25px;
    }

    .service-price-hero .price-value {
        font-size: 1.3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-badge {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page.active {
    animation: fadeIn 0.5s ease-out;
}

/* Enhanced Common Issues Section */
.common-issues-enhanced-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-enhanced h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-enhanced p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.issue-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(52, 152, 219, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
    border-left-color: #1abc9c;
}

.issue-card:hover::before {
    opacity: 1;
}

.issue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.issue-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.issue-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.issue-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #3498db;
}

.feature-item-enhanced:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    border-left-color: #1abc9c;
}

.feature-item-enhanced i {
    font-size: 1.3rem;
    color: #3498db;
    min-width: 24px;
    transition: color 0.3s ease;
}

.feature-item-enhanced:hover i {
    color: #1abc9c;
}

.feature-item-enhanced span {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Enhanced Service Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #3498db;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Enhanced Common Issues Section */
.common-issues-enhanced-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-enhanced h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-enhanced p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.issue-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    display: flex;
    gap: 1.5rem;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    border-left-color: #1abc9c;
}

.issue-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.issue-icon i {
    font-size: 1.5rem;
    color: white;
}

.issue-content h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.issue-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .issue-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .common-issues-enhanced-section {
        padding: 2rem;
    }
    
    .section-header-enhanced h2 {
        font-size: 2rem;
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3498db, #1abc9c);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number::after {
    opacity: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Service Guarantee Section */
.service-guarantee-section {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.service-guarantee-section h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-list li:last-child {
    border-bottom: none;
}

.guarantee-list i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Mobile responsive for enhanced sections */
@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .issue-card,
    .process-step {
        padding: 1.2rem;
    }
    
    .section-header-enhanced h2 {
        font-size: 1.8rem;
    }
    
    .common-issues-enhanced-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .issue-icon {
        width: 50px;
        height: 50px;
    }
    
    .issue-icon i {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-item-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Smaller logo text on mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }
}