/* Universal Styles */
:root {
    --primary-color: #008080;
    --secondary-color: #ffcc00;
    --text-color: #333;
    --background-color: #f4f4f4;
    --white: #fff;
    --light-gray: #ddd;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    border-bottom: 3px solid #046565;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    margin: 0;
}

header .logo a {
    color: var(--white);
    text-decoration: none;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    cursor: pointer;
    display: block;
    font-size: 1.5rem;
    z-index: 100;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    text-align: center;
    transform: translateY(-100vh);
    transition: transform 0.3s ease-in-out;
}

.nav-toggle:checked + .nav-toggle-label + .nav-links {
    transform: translateY(0);
}

.nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    display: block;
}

/* Hero Section */
.hero-section {
    background: #f0f8ff url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subline {
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-btn {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--white);
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.whatsapp-btn { background-color: #25D366; }
.services-btn { background-color: #00BFFF; }
.find-us-btn { background-color: #FF4500; }

.cta-btn:hover {
    transform: translateY(-3px);
}
.whatsapp-btn:hover { background-color: #128C7E; }
.services-btn:hover { background-color: #009ACD; }
.find-us-btn:hover { background-color: #CD3700; }

/* Flashing Banner */
.banner-section {
    background-color: var(--white);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.banner-container {
    display: inline-block;
    animation: marquee 20s linear infinite;
    padding-left: 100%;
    will-change: transform;
}

.banner-slide span {
    display: inline-block;
    padding: 0 30px;
    font-style: italic;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* General Page Styles */
.page-section {
    padding: 20px 0;
}

.page-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-block {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.content-block h2, .content-block h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Home Services Grid */
.home-services {
    padding: 20px 0;
    background-color: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.button-center {
    text-align: center;
    margin-top: 30px;
}

.btn-more-services {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-more-services:hover {
    background-color: #046565;
}

/* Services Page (full list) */
.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-list .service-item {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
    font-size: 0.8rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Media Queries for Desktop */
@media (min-width: 767px) {
    header .container {
        flex-direction: row;
    }

    header .logo {
        font-size: 2rem;
    }

    .nav-toggle-label {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        transform: translateY(0);
        background: none;
        width: auto;
    }

    .nav-links li {
        padding: 0 20px;
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .subline {
        font-size: 1.2em;
    }

    .cta-buttons {
        flex-direction: row;
    }
    
    .cta-btn {
        font-size: 1rem;
    }

    .banner-slide span {
        font-size: 1rem;
    }
    
    .page-section h2 {
        font-size: 2.5rem;
    }

    .service-grid, .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .service-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background: var(--primary-color);
        width: 100vw;
        text-align: center;
        transform: translateY(-100vh);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .nav-toggle:checked + .nav-toggle-label + nav .nav-links {
        transform: translateY(0);
    }
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 102;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
        padding: 40px 10px 30px 10px;
        display: block;
    }
    .hero-content {
        padding: 10px;
    }
}