* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background: #e8a94d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hero Image Container */
.hero-image-container {
    position: static;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #e8a94d;
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.05);
    /* z-index: 1; */
}

/* Phone Number */
.phone-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    z-index: 10;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: #0056b3;
}

/* Hero Image */
.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Content Section */
.content-section {
    position: relative;
    margin-top: 0;
    min-height: calc(100vh - 450px);
    padding: 60px 40px 80px;
    text-align: center;
    background: #e0ddd8;
    z-index: 2;
}

/* Headline */
.headline {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    max-width: 100%;
    word-wrap: break-word;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Subheadline */
.subheadline {
    font-size: 23px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 50px;
    letter-spacing: 0.2px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.btn-blue {
    background: linear-gradient(135deg, #3d5a7a 0%, #334d68 100%);
}

.btn-blue:hover {
    background: linear-gradient(135deg, #2e4661 0%, #253952 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 90, 122, 0.35);
}

.btn-blue:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 90, 122, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, #4a8c66 0%, #3f7858 100%);
}

.btn-green:hover {
    background: linear-gradient(135deg, #3a7052 0%, #2f5c44 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 140, 102, 0.35);
}

.btn-green:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 140, 102, 0.3);
}

.btn-orange {
    background: linear-gradient(135deg, #da8f4d 0%, #cf7d3f 100%);
}

.btn-orange:hover {
    background: linear-gradient(135deg, #c47839 0%, #b56829 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 143, 77, 0.35);
}

.btn-orange:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 143, 77, 0.3);
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .headline {
        font-size: 48px;
    }

    .subheadline {
        font-size: 20px;
    }

    .cta-button {
        font-size: 18px;
        padding: 18px 35px;
        min-width: 240px;
    }

    .content-section {
        padding: 50px 30px 70px;
    }

    .phone-number {
        font-size: 16px;
        top: 15px;
        right: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .headline {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .subheadline {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .content-section {
        padding: 40px 20px 60px;
    }

    .button-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .cta-button {
        font-size: 18px;
        padding: 18px 30px;
        min-width: 100%;
        max-width: 100%;
    }

    .phone-number {
        font-size: 14px;
        top: 12px;
        right: 15px;
    }

    .hero-image-container {
        height: 300px;
    }

    /* Ensure content-section fills remaining viewport to avoid white gap */
    .content-section {
        min-height: calc(100vh - 300px);
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .headline {
        font-size: 28px;
    }

    .subheadline {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 16px 25px;
    }
}