/* =========================================
   GLOBAL RESET & VARIABLES
========================================= */
*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --orange: #F15A24;
    --dark-blue: #0A192F;
    --light-grey: #F8F9FA;
    --text-white: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #A8B2D1;
    --border-light: #EBEBEB;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =========================================
   REUSABLE UTILITIES & BUTTONS
========================================= */
.btn-orange {
    background-color: var(--orange);
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

    .btn-orange:hover {
        background-color: #d44816;
    }

.btn-dark-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-dark-outline:hover {
        background-color: var(--text-white);
        color: var(--dark-blue);
    }

.btn-black {
    background-color: #000000;
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

    .btn-black:hover {
        background-color: #333333;
    }

.sub-heading {
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.center-text {
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* =========================================
   HEADER NAVIGATION
========================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 75px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 25px;
}

    .navbar a {
        color: #333;
        font-weight: bold;
        font-size: 14px;
        padding-bottom: 5px;
        transition: 0.2s;
    }

        .navbar a:hover, .navbar a.active {
            color: var(--orange);
            border-bottom: 2px solid var(--orange);
        }

/* =========================================
   SERVICES HERO
========================================= */
.services-hero {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-blue);
    align-items: stretch;
}

.hero-text {
    flex: 0 0 40%;
    padding: 80px 4% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .hero-text h1 {
        font-size: 3.2rem;
        color: var(--text-white);
        line-height: 1.1;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .hero-text .orange-text {
        color: var(--orange);
    }

    .hero-text p {
        color: var(--text-muted);
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    min-width: 400px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================================
   DETAILED CARDS SECTION
========================================= */
.services-detailed {
    padding: 80px 5%;
    background-color: var(--light-grey);
}

    .services-detailed .section-header {
        margin-bottom: 50px;
    }

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-card {
    background: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-img {
    position: relative;
    height: 220px;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.icon-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border: 3px solid var(--text-white);
}

.card-content {
    padding: 45px 30px 30px 30px;
    text-align: center;
}

    .card-content h3 {
        color: var(--dark-blue);
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

.card-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 42px;
}

.service-list {
    text-align: left;
    margin-bottom: 25px;
}

    .service-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #444;
        font-size: 14px;
        margin-bottom: 12px;
    }

        .service-list li i {
            color: var(--orange);
            font-size: 16px;
            margin-top: 2px;
        }

.learn-more {
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

    .learn-more:hover {
        color: var(--dark-blue);
    }

/* =========================================
   WHY CHOOSE US (Dark Bar)
========================================= */
.why-dark-bar {
    background-color: #050d1a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 5%;
    gap: 40px;
}

.why-left {
    flex: 0 0 30%;
    min-width: 300px;
}

    .why-left h2 {
        color: var(--text-white);
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .why-left p {
        color: var(--text-muted);
        line-height: 1.6;
    }

.why-right-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: var(--text-white);
}

.why-stat {
    padding: 10px 20px;
}

.border-right {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.why-stat i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.why-stat h4 {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-stat p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =========================================
   OUR PROCESS (Timeline)
========================================= */
.process-section {
    padding: 80px 5%;
    background-color: var(--text-white);
}

    .process-section .section-header {
        margin-bottom: 60px;
    }

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.timeline-line {
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    width: 18%;
}

.step-number {
    background: var(--orange);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 5px var(--text-white);
}

.process-step i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.process-step h4 {
    color: var(--dark-blue);
    font-size: 16px;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* =========================================
   CTA STRIP
========================================= */
.cta-strip {
    background: var(--orange);
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.cta-left h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   FOOTER (4-COLUMN VERSION)
========================================= */
.main-footer {
    background-color: #0A1424;
    color: var(--text-white);
    padding: 60px 4% 0 4%;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-contact h3, .footer-links h3, .footer-form-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.orange-divider {
    width: 30px;
    height: 3px;
    background-color: var(--orange);
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: #ccc;
}

    .footer-contact p i {
        color: var(--text-white);
        width: 20px;
        text-align: center;
    }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .social-icons a {
        background: var(--text-white);
        color: #0A1424;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: var(--orange);
            color: var(--text-white);
        }

.footer-logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.links-grid {
    display: flex;
    gap: 30px;
}

    .links-grid ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .links-grid a {
        color: #ccc;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

        .links-grid a:hover {
            color: var(--orange);
        }

.orange-arrow {
    color: var(--orange);
    font-size: 12px;
}

/* Footer Form */
.footer-form-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

    .form-row input, .form-row select {
        flex: 1;
        padding: 10px 12px;
        background: var(--text-white);
        border: none;
        border-radius: 3px;
        font-size: 13px;
        font-family: inherit;
    }

.btn-submit {
    background: var(--orange);
    color: var(--text-white);
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-submit:hover {
        background: #d44816;
    }

.footer-bottom-bar {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .footer-bottom-bar p {
        font-size: 12px;
        color: #888;
    }

/* =========================================
   RESPONSIVE LAYOUT STACKING
========================================= */
@media (max-width: 1200px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-right-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .border-right {
        border: none;
    }

    .timeline-container {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .timeline-line {
        display: none;
    }
    /* Hide line on small screens */
    .process-step {
        width: 45%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .hero-text, .hero-image, .why-left {
        flex: 0 0 100%;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orange-divider {
        margin: 0 auto 20px auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons, .links-grid {
        justify-content: center;
    }
}
