/* Global Vars & Reset */
:root {
    --primary-color: #0066cc;
    /* Deep Blue */
    --secondary-color: #00aaff;
    /* Aqua Blue */
    --accent-color: #ff9900;
    /* CTA Orange */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f9ff;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

/* ... (Logic continues unchanged) ... */

/* Header Mobile Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive */
body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.btn-primary:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: #f0f0f0;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.nav a {
    margin-left: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--secondary-color);
}

.nav .btn {
    color: var(--white);
    margin-left: 20px;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: var(--bg-light);
    padding: 0;
    min-height: auto;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    flex-wrap: wrap;
    /* Stack on mobile */
    min-height: 80vh;
}

/* Hero Image Styling */
.hero-image-wrapper {
    flex: 1;
    min-width: 350px;
    position: relative;
    order: 2;
    /* Image Right */
    perspective: 1000px;
    /* For 3D effect */
    display: flex;
    /* Center image in wrapper */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    /* Allow auto height to maintain aspect ratio */
    max-height: 500px;
    /* Max height constraint */
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 20px 20px;
    /* Smooth corners */
    box-shadow: 0 20px 50px rgba(0, 60, 120, 0.15);
    /* Deep soft shadow */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
    /* Floating effect */
}

.hero-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 60, 120, 0.25);
}

/* Floating Animation */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

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

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

/* Hero Content Styling */
.hero-content {
    flex: 1;
    min-width: 350px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    /* Content Left */
    background: var(--white);
    color: var(--text-dark);
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Subtitle with better spacing */
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text-light);
    opacity: 1;
    text-shadow: none;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    /* Align left */
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: flex-start;
    /* Align left */
    gap: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    /* Light blue bg */
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: none;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-split-container {
        flex-direction: column;
    }

    .hero-image-wrapper {
        height: 300px;
        order: 1;
        /* Image top on mobile */
        min-height: 300px;
    }

    .hero-content {
        order: 2;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-buttons,
    .trust-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.single-service-content {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.service-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-image-wrapper {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.service-feature-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1.2;
    min-width: 350px;
    padding: 60px;
    text-align: left;
    background: var(--white);
}

.service-intro {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.service-features-list li {
    background: #f8fbff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 6px solid var(--secondary-color);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.service-features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-cta {
    margin-top: 30px;
}

/* Responsive Services */
@media (max-width: 900px) {
    .service-layout {
        flex-direction: column;
    }

    .service-image-wrapper {
        min-height: 300px;
        width: 100%;
    }

    .service-details {
        padding: 40px 25px;
    }
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    margin-bottom: 10px;
}

/* Process */
.process {
    position: relative;
    /* Use an existing image or fallback color */
    background: url('../assets/images/hero-bg-technician.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.92);
    /* Heavy Dark Blue Overlay */
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    z-index: 2;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 45px;
    position: relative;
    min-width: 20px;
}

/* Responsive Mobile Process */
@media (max-width: 768px) {
    .process {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .process-steps {
        flex-direction: column;
        gap: 0;
        padding-left: 20px;
    }

    /* Vertical Line */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 55px;
        /* Center of 70px icon (35 + 20) */
        width: 2px;
        background: rgba(255, 255, 255, 0.2);
        z-index: 0;
    }

    .step-connector {
        display: none;
    }

    .step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 40px;
        width: 100%;
        padding: 0;
    }

    /* Smaller Icons for Mobile */
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin: 0 20px 0 0;
        flex-shrink: 0;
        background: var(--primary-color);
        /* Solid bg for visibility */
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .process-steps::before {
        left: 55px;
        /* 20px padding + 35px center */
    }

    .step-content {
        padding-top: 5px;
    }
}

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

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.client-info strong {
    display: block;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Offer */
.offer {
    padding: 0;
}

.offer-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 50px 20px;
    box-shadow: var(--shadow);
}

.offer-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.offer-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-methods h2 {
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-link.whatsapp {
    color: #25D366;
}

.contact-options-centered {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.call-card .icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.whatsapp-card .icon-wrapper {
    background: linear-gradient(135deg, #4cc764, #25D366);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.text-wrapper {
    display: flex;
    flex-direction: column;
}

.text-wrapper .label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.text-wrapper .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.call-card:hover .text-wrapper .value {
    color: var(--primary-color);
}

.whatsapp-card:hover .text-wrapper .value {
    color: #25D366;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-options-centered {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
    }
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    /* Limit width */
    margin: 0 auto;
    /* Center if needed */
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    /* Lighter border */
    border-radius: 10px;
    /* Rounded inputs */
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    /* Focus color orange */
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

/* Custom Select styling hack can be tricky cross-browser, strict to basic styling for now or match padding */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

/* Footer */
.footer {
    background: #001e3c;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

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

    .nav a {
        margin-left: 0;
        margin: 0 5px;
    }

    .nav .btn {
        margin-left: 5px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }
}
/* Responsive Navigation */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 25px;
        border-top: 1px solid #f0f0f0;
        z-index: 9999;
    }

    .nav.active {
        display: flex !important;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav a {
        margin: 0;
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .nav .btn {
        margin: 0;
        width: 100%;
        display: inline-block;
    }
}

