/* London Bright Cleaners - Stylesheet */

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00a8e8;
    --primary-dark: #0077a8;
    --secondary: #003459;
    --accent: #ffb703;
    --dark: #1a1a2e;
    --grey: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --error: #dc3545;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

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

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary);
}

/* --- Header --- */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.logo-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.header-phone {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #005a8b 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 700px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-trust span::before {
    content: "";
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: #ffa500;
    color: var(--dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: var(--light);
    color: var(--secondary);
}

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

.btn-full {
    width: 100%;
}

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

.section-alt {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-featured {
    border: 2px solid var(--primary);
    position: relative;
}

.service-card-featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card-featured .service-icon {
    background: rgba(255, 183, 3, 0.15);
    color: #e89a00;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-card ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: "\2713";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.pricing-card-featured {
    border: 2px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}

.price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey);
}

.pricing-card > p {
    color: var(--grey);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card ul li::before {
    content: "\2713";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* --- Areas --- */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.areas-grid span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--secondary);
    box-shadow: var(--shadow);
    font-weight: 500;
}

.areas-note {
    text-align: center;
    margin-top: 30px;
    color: var(--grey);
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.review-card p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

.reviews-note {
    text-align: center;
    margin-top: 30px;
    color: var(--grey);
    font-size: 0.85rem;
}

/* --- Reviews CTA (new business) --- */
.reviews-cta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-cta-text h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.reviews-cta-text p {
    color: var(--grey);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.reviews-cta-box {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.reviews-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.15);
    color: #e89a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.reviews-cta-box h4 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.reviews-cta-box ul {
    list-style: none;
}

.reviews-cta-box ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.reviews-cta-box ul li::before {
    content: "\2713";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

@media (max-width: 700px) {
    .reviews-cta {
        grid-template-columns: 1fr;
    }
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--grey);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 500;
}

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

.badge-small {
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form-wrap {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
}

/* --- Footer --- */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .services-grid,
    .features-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 700px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin: 8px auto;
    }

    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}
