/* --- Basic Reset & Body Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0A2342;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; text-align: center; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.2em; }

p {
    margin-bottom: 1.2em;
    color: #555;
}

a {
    color: #0A2342;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F28D35;
}

ul {
    list-style: none;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    text-align: center;
    color: #555;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #0A2342;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1a3c61;
    color: #FFFFFF;
}

.btn-accent {
    background-color: #F28D35;
    color: #FFFFFF;
}

.btn-accent:hover {
    background-color: #d87826;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #0A2342;
}


/* --- Header --- */
header {
    background-color: #FFFFFF;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}

.header-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
}
.header-phone i {
    color: #F28D35;
    margin-right: 5px;
}

.trust-logos img {
    height: 45px;
}

/* Navigation */
nav .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav .nav-links li a:not(.btn) {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0A2342;
    padding: 10px 0;
    position: relative;
}

nav .nav-links li a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #F28D35;
    transition: width 0.3s ease;
}

nav .nav-links li a:not(.btn):hover:after {
    width: 100%;
    left: 0;
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    left: 0;
    border-top: 3px solid #F28D35;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    font-size: 0.95em;
    transition: all 0.2s ease;
    font-weight: 400;
}
.dropdown-content a:hover {
    background-color: #f2f2f2;
    color: #F28D35;
    padding-left: 20px;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle { display: none; }

/* --- Hero Section --- */
.hero {
    color: #FFFFFF;
    padding: 120px 20px;
    text-align: center;
}

.updated-hero {
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.8)), url('https://images.unsplash.com/photo-1542022949-14262144d272?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNTc5fDB8MXxzZWFyY2h8MXx8YnJpdGlzaCUyMGhvdXNlfGVufDB8fHx8MTYxOTcwNDI4MQ&ixlib=rb-1.2.1&q=80&w=1080') no-repeat center center/cover;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 3.2em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: rgba(255,255,255,0.9);
}

.hero .hero-btn {
    margin: 10px;
}

/* --- Main Content Sections --- */
main section {
    padding: 80px 0;
}

/* Why Choose Us Section */
.why-us {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #0A2342;
}

.feature-item h3 { margin-bottom: 10px; font-size: 1.3em; }
.feature-item p { font-size: 0.95em; }
.icon-blue { color: #0A2342; font-size: 2.5em; margin-bottom: 20px; }

/* Services Overview Section */
.services-overview { background-color: #FFFFFF; }

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.07);
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.service-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    margin-bottom: 10px;
    color: #0A2342;
}

.service-card-content p {
    color: #555;
    font-size: 0.95em;
    flex-grow: 1;
}

.service-card-content span {
    color: #F28D35;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-top: 15px;
}

.text-center { text-align: center; }

/* CTA Contact Section */
.cta-contact {
    background-color: #0A2342;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}
.cta-contact h2 { color: #FFFFFF; font-size: 2.5em; }
.cta-contact p { font-size: 1.2em; color: rgba(255,255,255,0.8); max-width: 800px; margin-left:auto; margin-right:auto; }

/* --- General Inner Page Styles --- */
.page-hero {
    background-color: #0A2342;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}
.page-hero h1 { color: #FFFFFF; font-size: 3em; }

.content-section { padding: 80px 0; }

/* About Us Page */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-text h3 {
    margin-top: 40px;
}
.about-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.about-text ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #F28D35;
    position: absolute;
    left: 0;
    top: 4px;
}

/* Specific Service Page */
.service-detail-section {
    padding: 80px 0;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.service-detail-main h2 { text-align: left; }
.service-feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #F28D35;
}
.icon-accent { color: #F28D35; font-size: 2em; margin-top: 5px; }

.service-detail-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}
.service-detail-sidebar h3 {
    border-bottom: 2px solid #F28D35;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.service-detail-sidebar ul li {
    margin-bottom: 12px;
    color: #333;
}
.service-detail-sidebar ul li i {
    color: #F28D35;
    margin-right: 10px;
}
.sidebar-cta {
    background-color: #0A2342;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,0.8); }

/* Testimonials Page */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0A2342;
    display: flex;
    flex-direction: column;
}
.testimonial-item p {
    font-style: italic;
    flex-grow: 1;
}
.rating {
    color: #F28D35;
    margin-bottom: 15px;
    font-size: 1.1em;
}
.author {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #0A2342;
    margin-top: 15px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    text-align: left;
    margin-top: 50px;
}
.contact-form-container, .contact-details-container {
    padding: 30px;
}
.contact-details-container h3 {
    border-bottom: 2px solid #F28D35;
    padding-bottom: 10px;
}
.contact-details-container p {
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-details-container p i {
    color: #F28D35;
    margin-top: 5px;
}
.map-placeholder {
    height: 250px;
    background-color: #e9ecef;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}
form textarea {
    min-height: 120px;
    resize: vertical;
}

/* --- Footer --- */
footer {
    background-color: #1c1c1c;
    color: #e0e0e0;
    padding: 60px 0 20px 0;
    font-size: 0.95em;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: #F28D35;
    margin-bottom: 20px;
    font-size: 1.2em;
}
.footer-col p { color: #ccc; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; transition: all 0.3s ease; }
.footer-col ul li a:hover { color: #F28D35; padding-left: 5px; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: #F28D35; }
.social-links { margin-top: 20px; }
.social-links a {
    color: #ccc;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: #F28D35; }

.contact-info-col p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-info-col i {
    color: #F28D35;
    font-size: 1.1em;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .header-contact-info { display: none; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content-grid, .service-detail-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image { grid-row: 1; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }

    header nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px; /* Adjust based on header height */
        left: 0;
        background-color: #0A2342;
        padding: 10px 0;
    }
    header nav .nav-links.active { display: flex; }
    nav .nav-links li { width: 100%; text-align: center; }
    nav .nav-links li a:not(.btn) { color: #fff; padding: 15px; }
    nav .nav-links li a:not(.btn):hover, nav .nav-links li a:not(.btn):hover:after {
        background-color: #F28D35;
        width: 100%;
        color: #fff;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8em;
        color: #0A2342;
        cursor: pointer;
    }
    .dropdown-content {
         display: none; /* Keep hidden on mobile until expanded */
         position: static;
         box-shadow: none;
         background-color: #1a3c61;
         border-top: none;
    }
   .dropdown:hover .dropdown-content {
        display: none; /* Disable hover opening on mobile */
    }
    .dropdown.active .dropdown-content {
        display: block; /* Show on click */
    }
    .dropdown-content a { color: #eee; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-info-col p { justify-content: center; }
    .hero .hero-btn { margin-bottom: 10px; display:block; width: 80%; margin-left:auto; margin-right:auto; }
}