/* =======================
   BODY AND BACKGROUND
======================= */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    color: #5b6770;
}
/* Background image */
/*  
background-image: url('../images/hero.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;

padding: 0;
}*/

/* =======================
   PAGE CONTAINER
======================= */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container styling - full width up to max-width */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 30px;
    flex: 1;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li a {
    color: #4DA6FF;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-links li a[href*="wa.me"] {
    color: #25D366;
}

.nav-links li a:hover {
    background-color: #1a8cff;
    color: #fff;
}

/* Responsive navbar */
@media only screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-links li {
        width: 100%;
        margin-bottom: 5px;
    }
    .nav-links li a {
        display: block;
        width: 100%;
        padding: 10px;
    }
}

/* =======================
   TOP LINKS
======================= */
.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
}

.top-links a {
    margin: 5px;
    padding: 5px 8px;
    border-radius: 5px;
    text-decoration: none;
    color: #5b6770;
    transition: background-color 0.3s, color 0.3s;
}

.top-links a[href*="wa.me"] {
    background-color: #25D366;
    color: white;
}

.top-links a:hover {
    background-color: #e0e0e0;
    color: #007BFF;
}

.top-links a[href*="wa.me"]:hover {
    background-color: #1ebe5d;
}

/* =======================
   HEADER & TAGLINE
======================= */
.header {
    font-size: 32px;
    font-weight: normal;
    padding: 10px 0;
}

.tagline {
    font-size: 16px;
    padding: 15px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

/* =======================
   SECTIONS
======================= */
.section {
    padding: 60px 30px;
}

.section h2 {
    color: #33475b;
    margin-bottom: 15px;
    font-size: 20px;
}

.section p {
    font-size: 14px;
    color: #7a858f;
    margin-bottom: 20px;
}

/* Rates */
.rates {
    text-align: left;
    padding: 0 30px 30px;
}

.rates div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* Horizontal line */
hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 10px 0;
}

/* Service buttons */
.service-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #4DA6FF;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.service-button:hover {
    background-color: #1a8cff;
}

/* Service list */
.service ul {
    text-align: left;
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: disc;
}

/* Final CTA */
.final-cta p {
    font-size: 16px;
    margin: 10px 0;
}

/* =======================
   FOOTER
======================= */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.footer a {
    color: #4DA6FF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a[href*="wa.me"] {
    color: #25D366;
}

.footer a:hover {
    color: #ffffff;
}

/* =======================
   MEDIA QUERIES
======================= */
@media only screen and (max-width: 600px) {
    body {
        background-attachment: scroll;
    }
    .container {
        width: 95%;
        padding: 15px;
        margin-top: 20px;
    }
    .section {
        padding: 40px 15px;
    }
    .header {
        font-size: 24px;
    }
    .tagline {
        font-size: 13px;
    }
    .top-links a {
        font-size: 13px;
        padding: 4px 8px;
    }
    .footer {
        padding: 20px 15px;
    }
    .footer h3 {
        font-size: 18px;
    }
    .footer p {
        font-size: 14px;
    }
}

/* Container - wider, more padding */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    width: 95%;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 50px 40px;
    flex: 1;
}

/* Sections - more vertical space */
.section {
    padding: 100px 30px;
}

/* Header & Tagline - bigger */
.header {
    font-size: 40px;
    padding: 40px 0;
}

.tagline {
    font-size: 20px;
    padding: 25px 0;
}
/* Top Links container with border */
.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    border: 2px solid #4DA6FF;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: rgba(255,255,255,0.9);
}
@media only screen and (max-width: 600px) {
    .top-links {
        padding: 10px 15px;
        font-size: 13px;
    }
}
/* Space/separation between top links */
.top-links a {
    text-decoration: none;
    color: #4DA6FF;
    margin: 0 15px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}

/* WhatsApp link in green */
.top-links a[href*="wa.me"] {
    background-color: #25D366;
    color: white;
}

.top-links a[href*="wa.me"]:hover {
    background-color: #1ebe5d;
}

/* Light hover effect for other links */
.top-links a:not([href*="wa.me"]):hover {
    background-color: #e0e0e0;
    color: #007BFF;
}
/* Top links container with border */
.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    border: 2px solid #4DA6FF;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: rgba(255,255,255,0.9);
}

/* Each link */
.top-links a {
    text-decoration: none;
    color: #4DA6FF;
    padding: 5px 10px;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

/* WhatsApp link in green */
.top-links a[href*="wa.me"] {
    background-color: #25D366;
    color: white;
}

.top-links a[href*="wa.me"]:hover {
    background-color: #1ebe5d;
}

/* Light hover for other links */
.top-links a:not([href*="wa.me"]):hover {
    background-color: #e0e0e0;
    color: #007BFF;
}

/* Add vertical separator after each link except the wa.me link  */
.top-links a:not([href*="wa.me"]):not(:last-child)::after {
    content: "|";
    color: #4DA6FF;
    margin-left: 15px;
    position: absolute;
    right: -20px;
}

/* Rates section - time and price close together */
.rates div {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 8px;
}
/* Intro section image - responsive and styled */
.intro-image {
    width: 50%;
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
} 
/* Body background */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    color: #6bafe2;

    background-color: #ddedff;
}
/* =======================
   HERO SECTION
======================= */
.hero-section {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 20px;
    border-radius: 10px;
    margin-bottom: 50px;

    position: relative;
}

/* Dark overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
}

/* Hero content stays above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Make text larger inside hero */
.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}
/* =====================================
   MOBILE FIXES (DO NOT CHANGE DESIGN)
===================================== */

@media only screen and (max-width: 768px) {

    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
    }

    /* Container spacing */
    .container {
        width: 95%;
        margin: 20px auto;
        padding: 20px 15px;
    }

    /* Navbar stacks vertically */
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
    }

    /* Hero section shorter on mobile */
    .hero-section {
        padding: 70px 15px;
    }

    /* Hero text scales down */
    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Sections reduce vertical spacing */
    .section {
        padding: 50px 15px;
    }

    /* Rates stack instead of wide gap */
    .rates div {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    /* Top links wrap better */
    .top-links {
        flex-direction: column;
        text-align: center;
    }

    .top-links a {
        margin: 5px 0;
    }

    /* Header and tagline scale slightly */
    .header {
        font-size: 26px;
    }

    .tagline {
        font-size: 15px;
    }

}
