/* Basic Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

#nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.lang-btn.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

#mobile-nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2940&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
}

.hero-price {
    font-weight: bold;
    color: #ffd700; /* A gold color for emphasis */
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #333;
}

/* About Section */
.about-section .container {
    max-width: 800px;
    text-align: center;
    font-size: 1.2em;
}

/* Services Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #007bff;
}

.card p {
    margin-bottom: 15px;
}

.calculator-result {
    display: none;
    margin-top: 10px;
    font-weight: bold;
}

.calculate-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.calculate-btn:hover {
    background-color: #0056b3;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    margin-top: auto;
}

.service-dropdown {
    margin-top: 15px;
}

.service-dropdown select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.service-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.service-area-container {
    margin-top: 60px;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-area-container h3 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

.service-area-container p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px;
}

.service-area-container h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
}

.service-area-container ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.service-area-container li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item figcaption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.before-after-container {
    position: relative;
    cursor: pointer;
}

.before-after-container .after-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.before-after-container:hover .after-image,
.before-after-container.hover .after-image {
    opacity: 1;
}


/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

input, select, textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.feedback-message {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    display: none;
    grid-column: 1 / -1;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    body.mobile-nav-open #nav-menu {
        display: flex;
    }

    #mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .icon-bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        transition: transform 0.3s;
    }

    body.mobile-nav-open #mobile-nav-toggle .icon-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    body.mobile-nav-open #mobile-nav-toggle .icon-bar:nth-child(2) {
        opacity: 0;
    }
    body.mobile-nav-open #mobile-nav-toggle .icon-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Highlight Offers link in red */
.nav-link[href*="offers"] {
    color:  #ed4065;
    font-weight: 700;
}

.nav-link[href*="offers"]:hover {
    color:  #ed4065;
}

.btn-secondary {
    color: #ed4065;
    border: none;
}


