/* Luxelet Cleaning Ltd - Stylesheet */

:root {
    --navy: #2C3E7A;
    --teal: #13829F;
    --gold: #F1B856;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-color: #EEEEEE;
    --success: #28A745;
    --error: #DC3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--teal);
}

.btn-secondary {
    background-color: var(--teal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--navy);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background-color: #e0a845;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--teal);
}

.header-contact .phone-btn {
    background-color: var(--light-gray);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-contact .phone-btn:hover {
    background-color: var(--teal);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6958?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 62, 122, 0.9), rgba(19, 130, 159, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-icon {
    background-color: var(--gold);
    color: var(--navy);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--light-gray);
    padding: 0 0 40px 0;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
    overflow: hidden;
}

.service-image-container {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-image-container img {
    transform: scale(1.1);
}

.service-card h3, .service-card p {
    padding: 0 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--teal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-cta {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--navy);
    color: var(--white);
}

.why-choose-us h2, .why-choose-us p {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    color: var(--gold);
}

/* Special Offer */
.special-offer {
    padding: 60px 0;
    background-color: var(--gold);
    text-align: center;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background-color: var(--navy);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gold);
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.values-list {
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 800;
}

.highlight-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid var(--teal);
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 60px 0;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.area-tag {
    background-color: var(--navy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    align-items: center;
    overflow: hidden;
}

.service-detail-image {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

/* Pricing Info */
.pricing-info {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-feature {
    text-align: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.pricing-feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--teal);
    background-color: var(--light-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.business-hours {
    margin-top: 3rem;
    background-color: var(--navy);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.business-hours h3 {
    color: var(--gold);
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.note {
    margin-top: 15px;
    font-style: italic;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 5px rgba(19, 130, 159, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input {
    width: auto;
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.booking-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.info-box {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-top: 5px solid var(--navy);
}

.steps-list {
    margin-top: 15px;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.offer-badge {
    background-color: var(--gold);
    color: var(--navy);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.benefits-list li {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--teal);
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Placeholder */
.map-placeholder {
    background-color: #e9ecef;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px dashed #ced4da;
}

.map-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-weight: 600;
    color: var(--gold);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact .icon {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.website-credit {
    margin-top: 10px;
    color: rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-grid, .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail-icon {
        margin-bottom: 1rem;
    }
}
