/* 
   Rapid Installations - Style Sheet
   Colors: Navy Blue (#001f3f), Bright Orange (#FF851B), White (#FFFFFF)
   Font: Roboto, sans-serif
*/

:root {
    --primary-color: #001f3f;
    /* Navy Blue */
    --accent-color: #FF851B;
    /* Bright Orange */
    --text-color: #333333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --whatsapp-green: #25D366;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--accent-color);
}

nav a {
    color: var(--white);
    margin-left: 20px;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.btn-cta-small {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: bold;
}

.btn-cta-small:hover {
    background-color: #1ebc57;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 31, 63, 0.15), rgba(0, 31, 63, 0.15)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2069&auto=format&fit=crop');
    /* Satellite/Antenna on roof */
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Added for readability on brighter background */
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-content .tagline {
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #e67e22;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Quote Section */
.quote-section {
    background-color: #001f3f;
    /* Background matching the Navy Blue theme */
    padding: 60px 0;
    color: var(--white);
}

#quote-tool {
    color: var(--primary-color);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.trust-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.features-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #001021;
    /* Darker Navy */
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-info h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--accent-color);
    width: 20px;
}

.btn-whatsapp-large {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-details p {
        justify-content: center;
    }
}