/* Base Styles */
:root {
    --color-primary: #253149;
    --color-accent: #00a99d;
    --color-text: #444444;
    --color-text-light: #737373;
    --color-text-lighter: #999999;
    --color-background: #ffffff;
    --color-gray: #e5e5e5;
    --color-light-gray: #fafafa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-display: swap;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: var(--color-primary);
    transition: background-color 0.3s;
}

.nav.scrolled {
    background: var(--color-primary);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    padding: 1rem 2rem;
}

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

.logo {
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    border-radius: 4px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Navigation */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    background: var(--color-primary);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    background: var(--color-primary);
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }
}

.hero p {
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

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

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

.button.secondary {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.button.secondary:hover {
    /*
    background: transparent;
    border-color: transparent;
    */
    border: 2px solid white;
    color: white;
}

/* Section Headers */
.section-header h2,
.about-content h2,
.story-content h2,
.contact h2 {
    color: var(--color-primary);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.75rem;
    color: var(--color-text-lighter);
    line-height: 1.4;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

.story-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-content {
    max-width: 36rem;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 2.5rem;
}

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

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.copyright {
    color: #a3a3a3;
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.mt-4 {
    margin-top: 1rem;
}

/* Additional tweaks */
.color-accent {
    color: var(--color-accent);
}

.font-weight-700 {
    font-weight: 700;
}

.logo-link, .logo-link img {
    border: none;
    outline: none;
    text-decoration: none;
}

.logo-link:hover, .logo-link:active {
    outline: none;
}