/* Base Styles and Resets */
:root {
    --primary-blue: #325D7E;
    --primary-dark: #1E3A52;
    --accent-orange: #F47B20;
    --accent-light: #FF9B4D;
    --bg-light: #F8FAFC;
    --text-main: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
}

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

/* Utilities */
.text-white { color: var(--white); }
.center-text { text-align: center; }
.highlight-orange { color: var(--accent-orange); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-light));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(244, 123, 32, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 123, 32, 0.6);
}

.small-btn {
    padding: 10px 20px;
    font-size: 1rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 123, 32, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(244, 123, 32, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 123, 32, 0); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-sun { color: var(--accent-orange); }
.logo-mar { color: var(--primary-blue); }

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 82, 0.9) 0%, rgba(30, 58, 82, 0.6) 50%, rgba(30, 58, 82, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #E2E8F0;
}

/* Why Clean Section */
.why-clean {
    padding: 100px 20px;
}

.why-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-5px);
}

.benefits-list .icon {
    font-size: 2.5rem;
    background: rgba(244, 123, 32, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.benefits-list h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.glass-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(50, 93, 126, 0.2);
    object-fit: cover;
    max-height: 600px;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary-dark);
    padding: 100px 0;
    position: relative;
}

/* Add a subtle wave or angle at the top if desired */

.pricing-subtitle {
    text-align: center;
    color: #94A3B8;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.premium {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
}

.price-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-header h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    font-weight: bold;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.period {
    color: var(--text-light);
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    color: var(--text-main);
}

.price-features li:last-child {
    border-bottom: none;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 20px;
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-main);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid #E2E8F0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact h4 {
    margin-bottom: 10px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .why-clean-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
    .price-card.premium {
        transform: scale(1);
    }
    .price-card.premium:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero {
        text-align: center;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(30, 58, 82, 0.8) 0%, rgba(30, 58, 82, 0.6) 100%);
    }
}
