/* Global Styles */
:root {
    --primary-blue: #0A1E5C;
    /* Dark Blue from screenshot */
    --secondary-blue: #0E2A75;
    /* Lighter blue for overlays/gradients */
    --accent-yellow: #FFD700;
    /* Yellow highlight */
    --text-white: #FFFFFF;
    --text-grey: #CCCCCC;
    --whatsapp-green: #25D366;
    --button-call-bg: #EFEFEF;
    --input-bg: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background-color: var(--primary-blue);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Helpers */
.highlight-yellow {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: #f5f5f5;
    color: #333;
    font-size: 0.8rem;
    padding: 10px 0;
    text-align: center;
}

.top-bar a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    /* Placeholder background - replace with actual image URL later */
    background-image: url('https://images.unsplash.com/photo-1581094794329-cd282adb7ed3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 30, 92, 0.85) 0%, rgba(10, 30, 92, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    /* Responsive wrap */
    gap: 40px;
}

/* Hero Text */
.hero-text {
    flex: 1;
    min-width: 300px;
    padding-top: 20px;
}

.logo-placeholder h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-placeholder span {
    font-size: 0.9rem;
    letter-spacing: 8px;
    display: block;
    margin-bottom: 30px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin: 15px 0;
    line-height: 1.1;
}

.sub-text {
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.quality-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.phone-overlay {
    position: absolute;
    bottom: -40px;
    left: 0;
    font-size: 4rem;
    /* Large background text style */
    font-weight: 900;
    opacity: 0.1;
    color: white;
    pointer-events: none;
}

/* Form Container */
.form-container {
    width: 400px;
    background-color: rgba(10, 30, 92, 0.9);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.form-header h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call {
    background-color: var(--button-call-bg);
    color: #333;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #ddd;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #bbb;
}

/* Services Section */
.services {
    background-color: var(--primary-blue);
    padding: 60px 0;
    text-align: left;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.1rem;
}

.services-list li {
    position: relative;
    padding-left: 20px;
}

.services-list li::before {
    content: "►";
    /* Arrow bullet */
    color: var(--accent-yellow);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

/* CTA Section */
.cta-section {
    background-color: #FFFFFF;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-contact {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
}

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

/* Footer & Map */
.footer {
    background-color: var(--primary-blue);
    padding: 60px 0 20px;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-text {
    flex: 1;
    min-width: 300px;
}

.footer-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-map {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

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

    .form-container {
        width: 100%;
        max-width: 450px;
    }

    .hero-text {
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .services-list li::before {
        /* Keep bullet aligned */
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}