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

/* CSS Variables */
:root {
    --primary-blue: #4169B5;
    --accent-orange: #FF8C00;
    --secondary-blue: #0099CC;
    --light-blue: #E8F4F8;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    direction: rtl;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* LTR Support */
html[lang="en"] body {
    font-family: 'Inter', sans-serif;
    direction: ltr;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 5px 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-switch:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.hamburger.active span {
    background: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(65, 105, 181, 0.98) 0%, rgba(0, 153, 204, 0.98) 100%);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

html[lang="en"] .mobile-menu {
    right: auto;
    left: -100%;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

html[lang="en"] .mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    text-decoration: none;
}

html[lang="en"] .mobile-menu a {
    transform: translateX(-30px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

html[lang="en"] .mobile-menu-close {
    right: auto;
    left: 1.5rem;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu .btn-primary {
    margin-top: 20px;
    text-align: center;
    background: var(--white);
    color: var(--primary-blue);
}

.mobile-menu .btn-primary:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.logo h1 {
    font-size: 26px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 2px;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
}

html[lang="en"] .nav-link.active::after {
    right: auto;
    left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #2d4a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-header {
    padding: 10px 24px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--light-blue);
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
    height: 8px;
}

.services-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

/* Services Hub Page - Normal Grid Layout */
.services-hub-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 30px;
    padding-bottom: 0;
}

.services-hub-section .service-card {
    flex: unset;
    min-width: unset;
    width: 100%;
}

@media (max-width: 1024px) {
    .services-hub-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-hub-section .service-card {
        flex: unset;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .services-hub-section .services-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }
    .services-hub-section .service-card {
        flex: unset;
        min-width: unset;
    }
}

.service-card {
    flex: 0 0 350px;
    min-width: 350px;
}

@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 320px;
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
        padding-bottom: 10px;
    }
    
    .service-card {
        flex: 0 0 calc(100vw - 60px);
        min-width: 280px;
    }
}

.service-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-title,
.service-card .service-description {
    color: var(--white);
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b00 100%);
    padding: 50px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h3 {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.why-content {
    padding: 25px;
}

.why-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.why-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-blue);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent-orange);
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Contact Section */
.contact {
    background: var(--white);
}

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

.contact-info h2 {
    font-size: 40px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.emergency-note {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 5px;
}

.contact-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-description {
    margin-top: 15px;
}

.footer-map {
    margin-top: 20px;
}

.footer-map iframe {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-license {
    margin-top: 15px;
    font-size: 14px;
    color: var(--accent-orange) !important;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Floating CTA removed as per request */

/* Responsive Design */
@media (max-width: 992px) {
    .nav, .header-actions .lang-switch:not(.mobile-only), .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }

    .services-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* AC Types Section */
.ac-types {
    padding: 80px 0;
    background: var(--light-bg);
}

.ac-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ac-type-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.ac-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ac-type-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ac-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-type-content {
    padding: 25px;
}

.ac-type-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.ac-type-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--accent-orange) 0%, transparent 100%);
}

html[lang="en"] .process-step:not(:last-child)::after {
    right: auto;
    left: 24px;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.step-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.service-areas .section-header h2,
.service-areas .section-header p {
    color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.area-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.area-card span {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* CTA Section Alt */
.cta-section-alt {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B00 100%);
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.cert-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cert-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cert-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cert-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.cert-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cert-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Maintenance Tips Section */
.maintenance-tips {
    padding: 80px 0;
    background: var(--white);
}

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

.tips-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tips-intro {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 35px;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tip-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border-right: 4px solid var(--accent-orange);
}

html[lang="en"] .tip-item {
    border-right: none;
    border-left: 4px solid var(--accent-orange);
}

.tip-icon {
    min-width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-item h3,
.tip-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tip-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

.tips-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tips-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: var(--light-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}

.brand-item {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.brand-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 12px;
    border-right: 4px solid var(--primary-blue);
    transition: all 0.3s;
    overflow: hidden;
}

html[lang="en"] .faq-item {
    border-right: none;
    border-left: 4px solid var(--primary-blue);
}

.faq-item:hover {
    border-right-color: var(--accent-orange);
    box-shadow: var(--shadow);
}

html[lang="en"] .faq-item:hover {
    border-left-color: var(--accent-orange);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .ac-types-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        gap: 30px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cert-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cert-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tips-image {
        order: -1;
    }

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

    .brand-item {
        padding: 15px 10px;
        font-size: 16px;
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-item {
        padding: 12px 8px;
        font-size: 14px;
        min-height: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* Contact, About, and Terms Page Styles */

/* Contact Info Cards */
.contact-info {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-gray);
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

html[lang="ar"] .form-group input,
html[lang="ar"] .form-group textarea,
html[lang="ar"] .form-group select {
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(65, 105, 181, 0.1);
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 244, 248, 0.5) 100%);
}

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

.mission-card,
.vision-card,
.values-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.values-card ul {
    list-style: none;
    padding: 0;
}

.values-card li {
    color: var(--text-gray);
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    line-height: 1.8;
}

.values-card li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 18px;
}

html[lang="en"] .values-card li {
    padding-right: 0;
    padding-left: 25px;
}

html[lang="en"] .values-card li::before {
    right: auto;
    left: 0;
}

/* Why Us About Section */
.why-us-about {
    padding: 80px 0;
    background: var(--white);
}

.why-us-about h2 {
    text-align: center;
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.why-us-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 244, 248, 0.5) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-us-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.why-us-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: var(--white);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    border-right: 4px solid var(--primary-blue);
}

html[lang="en"] .intro-text {
    border-right: none;
    border-left: 4px solid var(--primary-blue);
}

.terms-section-item {
    margin-bottom: 50px;
}

.terms-section-item h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-section-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.terms-section-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-section-item li {
    color: var(--text-gray);
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    line-height: 1.8;
}

.terms-section-item li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 20px;
}

html[lang="en"] .terms-section-item li {
    padding-right: 0;
    padding-left: 25px;
}

html[lang="en"] .terms-section-item li::before {
    right: auto;
    left: 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 244, 248, 0.5) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    color: var(--text-gray);
    padding: 10px 0;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* CTA Buttons in About */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .about-text h2 {
        font-size: 28px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .terms-content {
        padding: 0 20px;
    }

    .terms-section-item h3 {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}


/* =====================================================
   SERVICE LANDING PAGE STYLES
   ===================================================== */

/* Logo Text (non-H1 version for subpages) */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--light-blue);
    padding: 10px 0;
    border-bottom: 1px solid rgba(65, 105, 181, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    opacity: 0.4;
}

html[lang="en"] .breadcrumb li:not(:last-child)::after {
    content: '/';
}

.breadcrumb li a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Trust Badges Strip */
.trust-badges {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 30px 0;
    color: var(--white);
}

.trust-badges .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
}

.badge-item svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.badge-item span,
.badge-item strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.badge-item p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.service-detail-text h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-text ul li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

html[lang="en"] .service-detail-text ul li {
    padding-right: 0;
    padding-left: 30px;
}

.service-detail-text ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 18px;
}

html[lang="en"] .service-detail-text ul li::before {
    right: auto;
    left: 0;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Common Problems Section */
.common-problems-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.common-problems-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.common-problems-section .grid-4,
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(65, 105, 181, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.problem-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Work Process Section (Service Pages) */
.work-process-section {
    padding: 80px 0;
    background: var(--white);
}

.work-process-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}

.process-steps .process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s;
}

.process-steps .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-steps .process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-steps .process-step h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-steps .process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Why Choose Us Section (Service Pages) */
.why-choose-us-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-us-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(65, 105, 181, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Service Areas Section (Service Pages) */
.service-areas-section {
    padding: 80px 0;
    background: var(--white);
}

.service-areas-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.service-areas-section .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

/* FAQ Section (Service Pages) */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

/* Related Services Section */
.related-services-section {
    padding: 80px 0;
    background: var(--white);
}

.related-services-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.related-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: visible;
}

.related-services-section .service-card {
    flex: unset;
    min-width: unset;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    color: inherit;
}

.service-card-content {
    padding: 20px;
}

.service-card-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card-cta {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* Button Secondary */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* =====================================================
   SERVICE LANDING PAGE RESPONSIVE
   ===================================================== */

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

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .common-problems-section .grid-4,
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-badges .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .badge-item {
        padding: 10px 5px;
    }

    .badge-item svg {
        width: 32px;
        height: 32px;
    }

    .badge-item span,
    .badge-item strong {
        font-size: 14px;
    }

    .service-detail-section,
    .common-problems-section,
    .work-process-section,
    .why-choose-us-section,
    .service-areas-section,
    .faq-section,
    .related-services-section {
        padding: 50px 0;
    }

    .service-detail-text h2,
    .common-problems-section h2,
    .work-process-section h2,
    .why-choose-us-section h2,
    .service-areas-section h2,
    .faq-section h2,
    .related-services-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .common-problems-section .grid-4,
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .related-services-section .services-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .related-services-section .service-card {
        flex: unset;
        min-width: unset;
    }

    .service-areas-section .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-badges .container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .badge-item span,
    .badge-item strong {
        font-size: 13px;
    }

    .service-areas-section .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* =====================================================
   SERVICE PAGE UI FIXES
   ===================================================== */

/* Fix: related-services cards — white background for image+text cards */
.related-services-section .service-card {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
}

.related-services-section .service-card:hover {
    box-shadow: var(--shadow-lg);
}

.related-services-section .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
}

.related-services-section .service-card-content h3 {
    color: var(--text-dark);
}

.related-services-section .service-card-content p {
    color: var(--text-gray);
}

.related-services-section .service-card-link,
.related-services-section a {
    color: inherit;
    text-decoration: none;
}

/* Fix: hero image appears above text on mobile */
@media (max-width: 768px) {
    .hero-image {
        order: -1;
    }
}

/* CTA section alt — centered layout for mid-page CTA */
.cta-section-alt {
    text-align: center;
    padding: 60px 0;
}

.cta-section-alt h2 {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section-alt p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.cta-section-alt .cta-buttons {
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-section-alt h2 {
        font-size: 24px;
    }

    .cta-section-alt p {
        font-size: 16px;
    }
}
