        :root {
            --primary-blue: #0056b3;
            --dark-blue: #001a3d;
            --light-blue-bg: #f8fbff;
            --text-gray: #555555;
            --white: #ffffff;
            --accent-blue: #4ea8de;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--light-blue-bg);
            color: var(--dark-blue);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Navigation --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: white;
            position: sticky;
            top: 0;
            z-index: 2000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 14px;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .cta-nav-btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            transition: 0.3s;
        }

        /* Hamburger Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-blue);
            border-radius: 2px;
        }

        /* --- Main Layout --- */
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: start;
        }

        /* --- Content Side --- */
        .hero-text h1 {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text h1 span { color: var(--primary-blue); }

        .hero-text p {
            font-size: 17px;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
            text-decoration: none;
            color: var(--dark-blue);
            font-size: 16px;
        }

        .info-item i { color: var(--primary-blue); width: 20px; }

        .promo-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary-blue);
        }

        .promo-content h3 { font-size: 18px; margin-bottom: 8px; }
        .promo-content p { font-size: 14px; margin-bottom: 12px; }
        .promo-content a { color: var(--primary-blue); text-decoration: none; font-weight: 700; font-size: 13px; }

        /* --- Form Side --- */
        .form-wrapper {
            background: var(--dark-blue);
            padding: 30px;
            border-radius: 15px;
            color: white;
            box-shadow: 0 15px 35px rgba(0,26,61,0.2);
        }

        .form-header h2 { font-size: 22px; margin-bottom: 5px; }
        .form-header p { font-size: 13px; color: #cbd5e0; margin-bottom: 20px;}

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .full-width { grid-column: span 2; }

        .input-group label { font-size: 11px; font-weight: 600; text-transform: uppercase; color: #a0aec0; display: block; margin-bottom: 5px; }
        
        .input-group input, .input-group select, .input-group textarea {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #2d3748;
            background: #ffffff;
            font-size: 14px;
        }

        .submit-btn {
            width: 100%;
            margin-top: 20px;
            background: var(--accent-blue);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; margin-top: 20px; }
            
            /* Mobile Nav Logic */
            .menu-toggle { display: flex; order: 3; }
            .cta-nav-btn { order: 2; margin-right: 15px; padding: 8px 15px; font-size: 12px; }
            .logo { order: 1; }

            .nav-links {
                position: absolute;
                top: 70px;
                left: -100%;
                width: 100%;
                height: auto;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: 0.4s;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            }

            .nav-links.active { left: 0; }
        }

        @media (max-width: 600px) {
            .form-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
            .hero-text h1 { text-align: center; }
            .hero-text p { text-align: center; }
            .contact-info { align-items: center; }
            .form-wrapper { padding: 20px; }
        }

        :root {
            --primary-blue: #003d7e;
            --accent-orange: #ff6a00;
            --dark-navy: #0a192f;
            --light-bg: #f4f7fa;
            --text-main: #333;
            --text-light: #666;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: var(--white); color: var(--text-main); line-height: 1.6; }

        .main-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        /* --- SEO Optimized Content --- */
        .content-side h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: var(--dark-navy);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .content-side h1 span { color: var(--primary-blue); }

        .content-side p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tag {
            background: #eef2f7;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-blue);
            border: 1px solid #d0dbe9;
        }

        .contact-strips {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .strip-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--dark-navy);
            text-decoration: none;
            font-size: 18px;
        }

        .strip-item i { color: var(--accent-orange); }


        /* --- Features Section --- */
        .features-section { background-color: var(--light-bg); padding: 80px 20px; }
        .features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .feature-card { background: var(--white); padding: 30px; border-radius: 15px; text-align: center; }
        .feature-card i { font-size: 35px; color: var(--primary-blue); margin-bottom: 20px; }

        /* --- SEO Footer Text --- */
        .seo-footer { max-width: 1300px; margin: 40px auto; padding: 0 20px; color: var(--text-light); font-size: 14px; line-height: 1.8; }

        @media (max-width: 992px) { .main-wrapper { grid-template-columns: 1fr; } }
    :root {
            --primary-blue: #003d7e;
            --accent-orange: #ff6a00;
            --dark-navy: #0a192f;
            --bg-light: #f4f8fb;
            --card-white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: var(--card-white); }

        /* --- Animation Definitions --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-section { padding: 80px 8%; text-align: center; }

        .header-content { margin-bottom: 60px; animation: fadeInUp 0.8s ease-out; }
        .header-content h2 { font-size: 42px; color: var(--dark-navy); font-weight: 800; }
        .header-content p { color: #636e72; max-width: 700px; margin: 15px auto; }

        /* --- Grid Layout --- */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-white);
            padding: 45px 35px;
            border-radius: 25px;
            text-align: left;
            position: relative;
            border: 1px solid #e1e8f0;
            transition: var(--transition);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Staggered Delay */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 61, 126, 0.1);
            border-color: var(--primary-blue);
        }

        .card-index {
            position: absolute;
            top: 25px; right: 30px;
            font-size: 55px; font-weight: 900;
            color: rgba(0, 61, 126, 0.04);
            transition: var(--transition);
        }

        .service-card:hover .card-index { color: rgba(255, 106, 0, 0.08); }

        .icon-box {
            width: 65px; height: 65px;
            background: var(--bg-light);
            border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 25px;
            color: var(--primary-blue);
            font-size: 26px;
            transition: var(--transition);
        }

        .service-card:hover .icon-box { background: var(--primary-blue); color: white; }

        .service-card h3 { font-size: 20px; color: var(--dark-navy); margin-bottom: 15px; }
        .service-card p { font-size: 15px; color: #576574; line-height: 1.7; margin-bottom: 20px; }

        .cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--accent-orange); text-decoration: none;
            font-weight: 700; font-size: 14px; transition: var(--transition);
        }
        .cta-btn:hover { gap: 12px; }

        @media (max-width: 768px) { .service-section { padding: 60px 5%; } }

        .elba-svc-section-wrapper {
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        color: #333;
        padding: 40px 0; /* Changed from fixed padding to local spacing */
        max-width: 1100px;
        margin: 0 auto;
    }

    .elba-svc-title {
        text-align: center;
        margin-bottom: 50px;
        color: #1a2a3a;
        font-size: 2.5rem;
        font-weight: 700;
    }

    .elba-svc-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .elba-svc-card {
        display: flex;
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    .elba-svc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .elba-svc-image {
        flex: 1;
        min-height: 320px;
        overflow: hidden;
    }

    .elba-svc-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .elba-svc-card:hover .elba-svc-image img {
        transform: scale(1.08);
    }

    .elba-svc-content {
        flex: 1.2;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .elba-svc-content h2 {
        margin-bottom: 15px;
        color: #0056b3;
        font-size: 1.6rem;
        font-weight: 700;
        border-bottom: 3px solid #ff6a00;
        display: inline-block;
        width: fit-content;
        padding-bottom: 5px;
    }

    .elba-svc-content p {
        margin-bottom: 25px;
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
    }

    .elba-svc-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #0056b3;
        color: #fff !important; /* Ensure visibility over theme defaults */
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        transition: background 0.3s ease;
        align-self: flex-start;
    }

    .elba-svc-btn:hover {
        background-color: #003d7e;
    }

    /* Mobile Compatibility */
    @media (max-width: 850px) {
        .elba-svc-card {
            flex-direction: column !important;
        }
        .elba-svc-image {
            min-height: 220px;
        }
        .elba-svc-content {
            padding: 25px;
        }
    }
    .elba-ft-wrapper {
        background-color: #0a192f; /* Deep professional navy */
        color: #ffffff;
        padding: 70px 20px 20px 20px;
        font-family: 'Roboto', sans-serif;
        margin-top: 50px;
    }

    .elba-ft-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .elba-ft-column h3 {
        color: #ff6a00; /* Elba accent orange */
        font-size: 1.4rem;
        margin-bottom: 25px;
        position: relative;
        font-weight: 700;
    }

    .elba-ft-column h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #ff6a00;
        margin-top: 8px;
    }

    .elba-ft-list {
        list-style: none;
        padding: 0;
    }

    .elba-ft-list li {
        margin-bottom: 15px;
        display: flex;
        gap: 12px;
        line-height: 1.5;
    }

    .elba-ft-list i {
        color: #ff6a00;
        margin-top: 5px;
    }

    .elba-ft-link {
        color: #d1d5db;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .elba-ft-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    .elba-ft-address-link {
        color: #60a5fa; /* Light blue for links */
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    .elba-ft-address-link:hover {
        color: #ffffff;
    }

    /* Bottom Bar */
    .elba-ft-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 50px;
        padding-top: 25px;
        text-align: center;
        font-size: 0.85rem;
        color: #9ca3af;
    }

    .elba-ft-socials {
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .elba-ft-socials a {
        color: #ffffff;
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .elba-ft-socials a:hover {
        color: #ff6a00;
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .elba-ft-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .elba-ft-column h3::after {
            margin: 8px auto 0 auto;
        }
        .elba-ft-list li {
            justify-content: center;
        }
    }


    /*repair service */
    .elba-sp-body {
        font-family: 'Inter', sans-serif;
        color: #2d3436;
        line-height: 1.6;
        background-color: #ffffff;
    }

    .elba-sp-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* Hero Styling */
    .elba-sp-hero {
        text-align: center;
        background: linear-gradient(135deg, #0a192f 0%, #003d7e 100%);
        color: white;
        padding: 80px 20px;
        border-radius: 30px;
        margin-bottom: 80px;
    }

    .elba-sp-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 20px;
        font-weight: 800;
    }

    .elba-sp-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Service Row Styling */
    .elba-sp-row {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 100px;
    }

    .elba-sp-row.reverse {
        flex-direction: row-reverse;
    }

    .elba-sp-image {
        flex: 1;
        position: relative;
    }

    .elba-sp-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .elba-sp-content {
        flex: 1;
    }

    .elba-sp-badge {
        background: #eef2f7;
        color: #003d7e;
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .elba-sp-content h2 {
        font-size: 2.2rem;
        margin: 15px 0;
        color: #0a192f;
    }

    .elba-sp-content p {
        color: #636e72;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    /* Common Issues List */
    .elba-sp-issues {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .elba-sp-issue-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #2d3436;
    }

    .elba-sp-issue-item i {
        color: #ff6a00;
    }

    .elba-sp-cta {
        display: inline-block;
        background: #003d7e;
        color: white !important;
        padding: 15px 35px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.3s;
    }

    .elba-sp-cta:hover {
        transform: translateY(-3px);
        background: #0a192f;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .elba-sp-row, .elba-sp-row.reverse {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
        .elba-sp-issues {
            justify-items: center;
        }
        .elba-sp-cta {
            width: 100%;
        }
    }