/* ==========================================
   GENERAL STUFF (APPLIES TO WHOLE SITE)
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #93afd0;
    color: white;
}

.btn-primary:hover {
    background: #7a9bc0;
    transform: translateY(-2px);
}

.btn-dark {
    background: #000;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background: #333;
    transform: scale(1.05);
}

.btn-white {
    background: white;
    color: #000;
    border: 2px solid white;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* ==========================================
   HOME PAGE (index.html)
   ========================================== */

/* Hero Section */
.index-hero {
    position: relative;
    min-height: clamp(400px, 50vh, 600px);
    padding-top: clamp(80px, 15vh, 140px);
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/index-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.index-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.index-hero .container {
    max-width: 800px;
}

.index-hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.index-hero p {
    font-size: 18px;
    color: white;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Section 1 - Value Props (Light Grey Background) */
.index-section1 {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.index-section1-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.index-section1-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.index-section1-box.owners {
    transform: translateY(40px);
}

.index-section1-tag {
    display: inline-block;
    background: #93afd0;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.index-section1-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.index-section1-box p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Section 2 - How It Works (White Background) */
.index-section2 {
    padding: 80px 0;
}

.index-section2-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #6b7280;
}

.index-section2-intro h2 {
    font-size: 28px;
    font-weight: 800;
    color: #93afd0;
    margin-bottom: 12px;
}

.index-section2-intro p {
    font-size: 16px;
    line-height: 1.7;
}

.index-section2-steps {
    max-width: 700px;
    margin: 0 auto;
}

.index-section2-step {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.index-section2-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.index-section2-step-number {
    font-size: 64px;
    font-weight: 900;
    color: #93afd0;
    line-height: 1;
    opacity: 0.3;
}

.index-section2-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.index-section2-step-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Section 3 - Services Preview (Light Grey Background) */
.index-section3 {
    padding: 100px 0;
    background: #f8f9fa;
}

.index-section3 h2 {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.index-section3-container {
    max-width: 800px;
    margin: 0 auto;
}

.index-section3-panel {
    background: #f8f9fa;
    padding: 22px 40px;
    margin-bottom: 12px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    cursor: pointer;
}

.index-section3-panel:hover {
    background: #93afd0;
    color: white;
    transform: translateX(10px);
}

.index-section3-panel h3 {
    font-size: 19px;
    font-weight: 700;
}

.index-section3-arrow {
    font-size: 18px;
    transition: all 0.3s;
}

/* Section 4 - CTA (Dark Background with Image) */
.index-section4 {
    position: relative;
    min-height: 400px;
}

.index-section4-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/index-CTA.jpg');
    background-size: cover;
    background-position: center;
}

.index-section4-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.index-section4-content {
    max-width: 550px;
    color: white;
}

.index-section4-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.index-section4-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d1d5db;
}

.index-section4-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   MOBILE & TABLET ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .index-section1-container {
        grid-template-columns: 1fr;
    }

    .index-section1-box.owners {
        transform: translateY(0);
    }

    .index-section3-panel {
        padding: 20px 30px;
    }
    
    .index-section4-overlay {
        background: rgba(0,0,0,0.85);
    }
    
    .index-hero h1 {
        font-size: 36px;
    }
}
