/* ==========================================
   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);
}

/* ==========================================
   SERVICES PAGE (services.html)
   ========================================== */

/* Hero Section */
.services-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/services-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

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

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

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

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

/* Section 1 - Service Cards (White Background) */
.services-section1 {
    padding: 80px 0;
}

/* Section 2 - CTA (Dark Background with Image) */
.services-section2 {
    position: relative;
    min-height: 400px;
}

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

.services-section2-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;
}

.services-section2-content {
    max-width: 550px;
    color: white;
}

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

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

/* ==========================================
   MOBILE & TABLET ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .services-section2-overlay {
        background: rgba(0,0,0,0.85);
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
}
