/* ===========================
   Variables & Reset
   =========================== */
:root {
    --navy: #0a1628;
    --yellow: #f4e944;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-light: #6b7b93;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-weight: 300;
}

/* ===========================
   Header & Navigation
   =========================== */
header {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(10, 22, 40, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    color: var(--navy);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.nav-cta {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--white);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-graphic img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--text-light);
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 6rem 0;
    background: var(--navy);
    color: var(--white);
}

.about h2 {
    margin-bottom: 2rem;
}

.about-story {
    margin-bottom: 3rem;
    max-width: 900px;
}

.about-taglines {
    border-left: 4px solid var(--yellow);
    padding-left: 1.5rem;
}

.about-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
}

.about-tagline {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-tagline:not(:first-child) {
    margin-top: 1.5rem;
}

.about-tagline strong {
    color: var(--yellow);
}

.about-owner {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--yellow);
    margin-top: 2rem;
    text-align: right;
    font-style: italic;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature h3 {
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--white);
    opacity: 0.9;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    min-width: 250px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1);
}

.contact-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
}

.contact-value {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.contact-form {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(244, 233, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
}

/* ===========================
   Footer
   =========================== */
footer {
    padding: 3rem 0;
    background: var(--navy);
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: var(--yellow);
}

footer p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-graphic {
        order: -1;
    }

    .hero-graphic img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

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

    .btn {
        text-align: center;
    }

    .nav-cta {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .services,
    .about,
    .contact {
        padding: 4rem 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .contact-method {
        min-width: 0;
        width: 100%;
        padding: 1.5rem;
    }

    .contact-value {
        font-size: 1.125rem;
        word-break: break-word;
    }
}
