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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: #444;
}

.tagline {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.25rem;
    max-width: 600px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background:
        linear-gradient(135deg, rgba(30, 30, 30, 0.75) 0%, rgba(50, 50, 50, 0.7) 100%),
        url('../assets/images/container01.jpg') center/cover no-repeat;
    color: white;
    position: relative;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
}

.hero .tagline {
    color: rgba(255, 255, 255, 0.9);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Card Sections */
.card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.card.reverse {
    direction: rtl;
}

.card.reverse > * {
    direction: ltr;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: white;
}

/* Alternating backgrounds */
.card:nth-of-type(odd) .card-content {
    background: #f5f5f5;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.contact p {
    color: rgba(255, 255, 255, 0.8);
}

.contact .subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Button */
.button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        grid-template-columns: 1fr;
    }

    .card.reverse {
        direction: ltr;
    }

    .card-image {
        height: 300px;
    }

    .card-content {
        padding: 2rem;
    }

    .hero {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }
}
