:root {
    --primary-color: #FF8c00;
    /* Dark Orange - High Visibility */
    --primary-dark: #e67e00;
    --secondary-color: #1a1a1a;
    /* Dark Grey */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-bottom: 60px;
    /* Space for sticky button on mobile */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo & Subtitle */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 300;
    /* Thin styling */
    letter-spacing: 2px;
    margin-top: 2px;
    margin-left: 2px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list a {
    font-weight: 600;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-call-header:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .owner-name {
        display: none;
    }
}

/* Hero Section */
.hero {
    height: auto;
    /* content driven height */
    min-height: 50vh;
    /* Reduced from 80vh to show content below */
    padding: 100px 0 40px 0;
    /* Add padding for header spacing */
    position: relative;
    /* For absolute positioning of slider */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 50px;
    z-index: 1;
}

/* Background Slider */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-background-slider img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: -1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-warm-text {
    margin-top: 15px !important;
    font-size: 1rem !important;
    color: #ffd700;
    /* Gold color for warmth/attention */
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Service Areas */
.areas {
    padding: 3rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.areas .section-title {
    color: var(--white);
}

.area-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Why Us */
.why-us {
    padding: 5rem 0;
}

.why-us-content ul {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-us-content li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-content li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    align-items: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-item a,
.info-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

.map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* Sticky Call Button (Mobile) */
.sticky-call-btn {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .header .nav,
    .header .btn-call-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .sticky-call-btn {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
}


/* Gallery */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Quick Services in Hero */
.quick-services {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-badge i {
    color: var(--primary-color);
}

/* Working Hours Section */
/* Working Hours (Inside Hero) */
.hero-working-hours {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent dark background */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    /* Limit width to keep it neat */
    margin-left: auto;
    margin-right: auto;
}

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.day-item {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.green-text {
    color: #2ecc71;
    /* Bright Green */
    font-weight: 800;
    background-color: #333;
    /* Rectangular Gray Background */
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #555;
}

@media (max-width: 768px) {
    .quick-services {
        gap: 10px;
    }

    .service-badge {
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .hours-grid {
        gap: 10px;
    }

    .hero-working-hours {
        padding: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .quick-services {
        gap: 10px;
    }

    .service-badge {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}