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

body {
    font-family: 'Inter', sans-serif;
    color: #0A1628;
    background-color: #FAFAF8;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F2EB;
}

::-webkit-scrollbar-thumb {
    background: #B8E6D9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #95D4C2;
}

/* Navigation */
.nav-scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.1);
}

/* Hero Section */
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 10% 6rem;
    background-color: #0A1628;
    position: relative;
    z-index: 10;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-img-overlay {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 55%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.25);
    z-index: 2;
}

/* Typography */
.headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #0A1628;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(184, 230, 217, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(10, 22, 40, 0.08);
    border-color: #B8E6D9;
}

/* Buttons */
.btn-primary {
    background-color: #B8E6D9;
    color: #0A1628;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #A3DCC8;
    transform: scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(184, 230, 217, 0.5);
}

.btn-dark {
    background-color: #0A1628;
    color: white;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-dark:hover {
    background-color: #1A2A40;
    transform: translateY(-2px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Form Styles */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 6rem 5% 4rem;
        min-height: 80vh;
        justify-content: flex-start;
    }
    
    .hero-visual {
        height: 50vh;
        order: -1;
    }
    
    .hero-img-overlay {
        width: 70%;
        bottom: 10%;
        left: 10%;
    }
}

@media (max-width: 640px) {
    .headline {
        font-size: 3.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-mint {
    color: #B8E6D9;
}

.bg-mint {
    background-color: #B8E6D9;
}

.bg-mint-pale {
    background-color: #F4FBF8;
}

.bg-sand {
    background-color: #F5F2EB;
}
