/* Base Styles */
:root {
    --primary-color: #1f41a5;
    --primary-hover: #183383;
    --dark-bg: #111111;
    --dark-grey: #222222;
    --light-grey: #f4f4f4;
    --text-color: #333333;
    --text-light: #dddddd;
    --white: #ffffff;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    min-height: 80px;
}

.logo img {
    height: 80px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--dark-bg);
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.about-image {
    flex: 1;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover;
    height: 500px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    background-attachment: fixed;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 50px 40px;
    border-top: 5px solid var(--primary-color);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-light);
    min-height: 120px;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.quote-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.quote-text {
    flex: 1;
}

.quote-text h2 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark-bg);
}

.quote-image {
    flex: 1;
}

.quote-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    object-fit: cover;
    height: 500px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-info a:hover {
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter input {
    padding: 14px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: var(--white);
    font-size: 16px;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {

    .about-container,
    .quote-container {
        flex-direction: column;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 46px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }
}