/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    background-image: url('../images/GettyImages-1134800911-1920w.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* Header Styles */
.site-header {
    background-color: #fff;
}

.header-top {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    max-width: 450px;
}

.header-contact {
    text-align: right;
    font-size: 15px;
    color: #666;
}

.header-contact strong {
    color: #333;
}

.header-contact a {
    color: #2962a5;
    font-weight: 600;
    margin-left: 5px;
}

.header-contact a:hover {
    color: #1e4a7a;
}

/* Navigation */
.main-navigation {
    background-color: #2962a5;
    position: relative;
}

.main-navigation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu li.active a {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
}

/* Hero Tagline Bar */
.hero-tagline-bar {
    background-color: #2962a5;
    padding: 12px 0;
    text-align: center;
}

.hero-tagline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
}

/* Hero Section - Full Width with Overlay */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    left: 10%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 60px 50px;
    max-width: 450px;
}

.hero-content {
    color: #fff;
    text-align: left;
}

.hero-content h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 20px;
    font-weight: 300;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dc1f3a;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b81830;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.white-bg {
    background-color: #fff;
}

.content-section.black-bg {
    background-color: #000;
    color: #fff;
}

/* Section with Icon */
.section-with-icon {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: #dc1f3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.black-bg .section-header h2 {
    color: #fff;
}

.black-bg .section-header p {
    color: #ddd;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-inner {
    width: 50px;
    height: 50px;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.service-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}

.service-item strong {
    color: #fff;
}

/* Call to Action Section */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #2962a5;
    font-weight: 600;
}

.footer-section a:hover {
    color: #3a7bc8;
}

.footer-badge {
    max-width: 120px;
    margin-top: 20px;
}

.footer-top {
    background-color: #333;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
}

.footer-top p {
    color: #ddd;
    font-size: 13px;
    font-style: italic;
}

.footer-spam-links {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    margin-top: 20px;
    border-top: 1px solid #222;
}

.footer-spam-links a {
    color: #666;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-overlay {
        left: 5%;
        max-width: 400px;
        padding: 50px 40px;
    }
    
    .hero-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay {
        position: relative;
        left: 0;
        transform: none;
        max-width: 100%;
        margin: 20px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}
