/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0E4D56;   /* Deep Teal */
    --accent: #C5A059;    /* Gold/Sand */
    --text-dark: #222222; 
    --text-light: #555555;
    --white: #ffffff;
    --light-bg: #f4f8f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px; /* Large font for readability */
}

/* Add padding to top of body so content isn't hidden behind the fixed header */
body {
    padding-top: 130px; 
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================
   2. UTILITIES & BUTTONS
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: #b08d4b;
    border-color: #b08d4b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-block { width: 100%; }

/* =========================================
   3. FIXED HEADER
   ========================================= */
.sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: var(--accent);
    color: var(--primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.header {
    background-color: var(--white);
    padding: 15px 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    background: var(--primary);
    color: var(--accent);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 22px;
    font-family: 'Montserrat', sans-serif;
}
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--primary);
}

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-link { font-weight: 600; color: var(--text-dark); font-size: 16px; }
.nav-link:hover { color: var(--accent); }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(14, 77, 86, 0.85), rgba(14, 77, 86, 0.7));
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* =========================================
   5. PROCESS SECTION (HOW IT WORKS)
   ========================================= */
.process { padding: 60px 0; background-color: var(--white); text-align: center; }
.process-step { padding: 20px; }
.step-number {
    background-color: var(--primary);
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800;
    margin: 0 auto 20px auto;
    font-family: 'Montserrat', sans-serif;
    border: 3px solid var(--accent);
}
.process h3 { margin-bottom: 10px; font-size: 1.3rem; }
.process p { color: var(--text-light); font-size: 1rem; }

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services { padding: 80px 0; background: var(--light-bg); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { text-align: center; margin-bottom: 50px; color: var(--text-light); }

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 25px; }
.card-content h3 { margin-bottom: 5px; font-size: 1.4rem; }
.method-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 0.85rem; font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

/* =========================================
   7. GALLERY (BEFORE & AFTER)
   ========================================= */
.gallery { padding: 60px 0; background-color: var(--white); }
.gallery-grid { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.gallery-item { position: relative; max-width: 500px; flex: 1 1 300px; }
.gallery-item img { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.gallery-label {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0,0,0,0.7);
    color: white; padding: 5px 15px;
    font-weight: 700; font-size: 0.9rem;
    border-radius: 4px;
}
.label-after { background: var(--accent); color: var(--primary); }

/* =========================================
   8. TRUST BAR
   ========================================= */
.trust-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.trust-bar h3 { color: var(--accent); margin-bottom: 30px; }
.trust-grid { font-size: 1.1rem; }

/* =========================================
   9. FAQ (COLLAPSIBLE)
   ========================================= */
.faq { padding: 60px 0; background-color: var(--light-bg); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.faq-question:hover { background-color: #f9f9f9; }
.faq-question.active { background-color: var(--primary); color: var(--white); }
.faq-icon { font-size: 1.5rem; font-weight: 400; margin-left: 10px; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}
.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
    font-size: 1rem;
}

/* =========================================
   10. CONTACT & BIG BUTTON
   ========================================= */
.contact { padding: 80px 0; text-align: center; background: var(--white); }
.btn-call-big {
    display: block;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(14, 77, 86, 0.3);
    border: 2px solid var(--primary);
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
}
.btn-call-big:hover { background-color: #082d33; transform: scale(1.02); }

.separator {
    text-align: center;
    margin: 30px 0;
    font-weight: 700;
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; }
.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
footer {
    background-color: #082d33;
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* =========================================
   11. MOBILE RESPONSIVE LOGIC
   ========================================= */
@media (max-width: 768px) {
    
    /* Adjust body padding because header is shorter on mobile (stacked differently) */
    body { padding-top: 110px; }

    /* HEADER: Clean Side-by-Side */
    .header-row { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
    }

    /* Hide Desktop Menu Items */
    .desktop-only { display: none; }

    /* Logo Adjustments */
    .logo-text { font-size: 18px; }
    .logo-icon { width: 32px; height: 32px; font-size: 18px; }

    /* Nav Adjustment */
    .nav-menu { gap: 0; }
    
    /* Smaller Header Button */
    .btn { padding: 10px 15px; font-size: 14px; }

    /* Hero Text Adjustment */
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    
    /* Contact Section Adjustments */
    .form-wrapper { padding: 20px; }
    .btn-call-big { font-size: 1.3rem; padding: 15px; }

    /* Fix Top Bar: Force 1 line */
    .top-bar {
        font-size: 15px; /* Smaller text */
        padding: 8px 5px; /* Tighter padding */
        white-space: nowrap; /* Forces text to stay on one line */
    }
}