/* 
   Varianta 2 - High Conversion (TOTAL CLIMA)
   Stil: Bold, High Contrast, Emergency-like
   Culori: International Orange, Midnight Black, Lemon Yellow
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary: #FF4500;
    --secondary: #212529;
    --accent: #FFD700;
    --white: #ffffff;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--secondary);
    line-height: 1.4;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 { font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
h1 { font-size: 4.5rem; letter-spacing: -2px; }
.title-bold { font-size: 3rem; text-align: center; color: var(--secondary); margin-bottom: 50px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4); }

.btn-flash { 
    background: var(--accent); 
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-white { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }

.btn-xl { padding: 25px 40px; font-size: 1.2rem; }
.w-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(33, 37, 41, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px 0;
}

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

.logo-text { color: var(--white); font-weight: 900; font-size: 1.5rem; }
.logo-text span { color: var(--primary); }

nav ul { display: flex; list-style: none; }
nav ul li a { color: var(--white); text-decoration: none; margin: 0 15px; font-weight: 700; font-size: 0.9rem; }

/* Hero */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('hero-bg.png') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

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

.status-badge {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.status-badge span { color: #00ff00; margin-right: 5px; }

.hero-title span { color: var(--primary); background: var(--white); padding: 0 10px; }

.hero-subtext { font-size: 1.5rem; font-weight: 600; margin-bottom: 40px; max-width: 600px; }

.hero-actions { display: flex; gap: 20px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 40px; }
.stat-item { font-weight: 700; font-size: 0.9rem; position: relative; }
.stat-item strong { display: block; font-size: 1.5rem; color: var(--accent); }

/* Pills */
#pills { background: var(--primary); padding: 20px 0; color: var(--white); }
.pills-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; text-transform: uppercase; font-weight: 900; font-size: 0.85rem; }

/* Cards */
#servicii { padding: 80px 0; background: var(--bg-light); }
.services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover { transform: scale(1.02); }

.card.hot { border: 4px solid var(--primary); }
.card-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.8rem;
    border-radius: 4px;
}

.card h3 { font-size: 2rem; color: var(--secondary); }
.price { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 20px; }

.card ul { list-style: none; margin-bottom: 30px; }
.card ul li { padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 600; }
.card ul li::before { content: '✔'; color: #2ecc71; margin-right: 10px; }

/* Promo Box */
.promo-box {
    background: var(--accent);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
}

.countdown { font-family: monospace; font-size: 2rem; font-weight: 900; margin-top: 10px; background: var(--secondary); color: var(--accent); display: inline-block; padding: 5px 15px; }

/* Why grid */
#de-ce-noi { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature { margin-bottom: 30px; padding-left: 20px; border-left: 5px solid var(--primary); }
.feature h4 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 5px; }

/* Contact V2 */
.contact-card-v2 {
    background: var(--secondary);
    color: var(--white);
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.form-side { flex: 1.5; padding: 60px; background: #2a2e33; }
.image-side { flex: 1; padding: 60px; background: var(--primary); text-align: center; display: flex; flex-direction: column; justify-content: center; }

#express-form input, #express-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: transparent;
    border: 2px solid #444;
    color: var(--white);
    font-family: inherit;
    font-weight: 700;
}

.phone-big a { font-size: 3rem; color: var(--white); text-decoration: none; font-weight: 900; display: block; margin: 10px 0; }

/* Footer */
footer { padding: 40px 0; background: #000; color: #555; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; }

/* Sticky Footer */
.sticky-footer-v2 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-call-v2 {
    display: block;
    background: #FF4500;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
    animation: flash 1s infinite;
}

/* Animations */
@keyframes flash {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); background: #ff5e1a; }
    100% { transform: scale(1); }
}

.pulse { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.bounce { animation: bounce 0.5s infinite; }

/* Responsive Design */

/* Tablete și ecrane medii */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .title-bold { font-size: 2.5rem; }
    
    .why-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-card-v2 { flex-direction: column; margin-top: 50px; }
    
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .promo-box { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    
    header .container { flex-direction: column; gap: 15px; }
    nav ul li a { margin: 0 10px; }
}

/* Telefoane mobile (Portrait și Landscape) */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-title span { display: block; margin-top: 10px; padding: 5px; }
    .hero-subtext { font-size: 1.1rem; }
    
    .hero-stats { 
        flex-wrap: wrap; 
        gap: 20px; 
        justify-content: center; 
        text-align: center; 
    }
    
    .stat-item { width: 45%; }
    
    .title-bold { font-size: 2rem; margin-bottom: 30px; }
    
    .form-side, .image-side { padding: 40px 20px; }
    
    .phone-big a { font-size: 2rem; }
    
    .countdown { font-size: 1.5rem; }
    
    .pills-grid { justify-content: center; text-align: center; }
    .pill-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
    .pill-item:last-child { border: none; }
}

/* Telefoane mici (sub 480px) */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    
    header .header-cta { width: 100%; }
    header .btn-flash { width: 100%; display: block; }
    
    nav { display: none; } /* Ascundem navigația secundară pe ecrane foarte mici pentru focus pe apel */
    
    .hero-content { text-align: center; }
    .hero-subtext { margin: 0 auto 30px; }
    
    .stat-item { width: 100%; }
    
    .card { padding: 25px; }
    .price { font-size: 2rem; }
    
    .phone-big a { font-size: 1.6rem; }
    
    .promo-box h2 { font-size: 1.5rem; }
    
    .sticky-footer-v2 { left: 10px; right: 10px; bottom: 10px; }
    .btn-call-v2 { padding: 15px; font-size: 1rem; }
    
    /* Prevenire overflow pe elemente specifice */
    .container { padding: 0 15px; }
}
