/* CSS specific to the Home Page */

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Moved common hero-buttons & hero-stats to global styles.css */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent background decoration from causing horizontal overflow */
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    transform: scale(1.02);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Glassmorphic decorative shape behind the image */
.hero-visual-bg {
    position: absolute;
    top: -15%;
    right: -15%;
    width: 130%;
    height: 130%;
    background: radial-gradient(
        circle,
        rgba(5, 150, 105, 0.22) 0%,
        rgba(217, 119, 6, 0.12) 45%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Coverage Areas Showcase */
.coverage-section {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.city-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.city-card:hover .city-icon-wrapper {
    background: var(--primary);
    color: #070a13;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.city-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

.city-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
}

/* Service Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    padding: 30px 24px;
}

.highlight-card svg {
    color: var(--secondary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Interactive Calculator Container */
.calculator-section {
    background: radial-gradient(circle at 10% 20%, rgba(234, 179, 8, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
}

.calc-info h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.calc-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.price-bullets {
    margin-bottom: 40px;
}

.price-bullet {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.price-bullet svg {
    color: var(--primary);
    flex-shrink: 0;
}

.calc-container {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.select-wrapper select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--text-secondary);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.radio-label input {
    display: none;
}

.radio-label:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.radio-label.selected {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
}

/* Calculator Result Panel */
.calc-result {
    margin-top: 30px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    text-align: center;
}

.result-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.result-price {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.result-price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.result-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.calc-action-btn {
    width: 100%;
    margin-top: 20px;
}

/* Process Section (How It Works) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.2) 20%, rgba(234, 179, 8, 0.2) 80%, rgba(234, 179, 8, 0) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.process-step:hover .step-number {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0 16px;
}

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

.testimonial-card {
    padding: 32px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0.05;
    color: var(--text-primary);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070a13;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-details h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Moved common cta-section and cta-banner elements to global styles.css */

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Moved cta-banner query to global styles.css */
}

/* Working AC Inspection Section */
.working-ac-section {
    padding: 100px 24px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.working-ac-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
}

.working-ac-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.working-ac-info h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.working-ac-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.working-ac-form-wrapper {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.working-ac-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.working-ac-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .working-ac-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .working-ac-form-wrapper {
        padding: 32px 20px;
    }
}

