/*
Theme Name: Revizie Aer Conditionat Bucuresti
Theme URI: https://revizie-aerconditionat-bucuresti.ro/
Author: Custom Theme
Description: Tema profesionala pentru servicii de revizie si igienizare aer conditionat in Bucuresti si Ilfov. Optimizata SEO, mobile-first, conversii mari.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revizie-ac
Tags: service, local-business, mobile-first, seo-optimized
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a56db;
    --primary-dark: #1341b0;
    --primary-light: #3b82f6;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --success: #22c55e;
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Inter', 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(26,86,219,0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,86,219,0.35);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }
.top-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar .highlight {
    background: var(--accent);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}
.site-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}
.site-logo span { color: var(--primary); }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-radius: 8px;
    position: relative;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
    background: rgba(26,86,219,0.06);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.75rem;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 0.88rem;
}
.dropdown-menu a:hover { color: var(--primary); background: var(--gray-100); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
}
.header-phone .phone-icon {
    width: 36px;
    height: 36px;
    background: rgba(26,86,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 60%, #1a3a6b 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.4);
    color: #fdba74;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--accent);
    position: relative;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    gap: 12px;
}
.hero-image-placeholder .icon { font-size: 4rem; }
.hero-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.hero-card .card-title { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.hero-card .card-sub { color: var(--text-light); font-size: 0.82rem; }
.hero-card .card-price { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-left: auto; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--primary);
    padding: 20px 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}
.trust-item .icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 0.9rem; color: white; }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(26,86,219,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.05);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card .btn { font-size: 0.85rem; padding: 10px 20px; }
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.service-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e0e7ff, #bfdbfe);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 3rem;
}

/* ===== ABOUT / WHY US ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #93c5fd;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge .number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge .text { font-size: 0.8rem; opacity: 0.85; }
.about-content { }
.advantages-list { margin-top: 28px; display: grid; gap: 16px; }
.advantage-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}
.advantage-item:hover { background: rgba(26,86,219,0.05); }
.advantage-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.advantage-item h4 { font-size: 1rem; margin-bottom: 4px; }
.advantage-item p { font-size: 0.85rem; margin: 0; }

/* ===== PRICING TABLE ===== */
.pricing-section { background: var(--gray-100); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header {
    padding: 36px 32px 28px;
    background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    color: white;
    text-align: center;
}
.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.pricing-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.pricing-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }
.pricing-features { padding: 28px 32px; }
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.check-yes { background: rgba(34,197,94,0.15); color: var(--success); }
.check-no { background: rgba(203,213,225,0.3); color: var(--gray-300); }
.pricing-feature .feature-name { flex: 1; }
.pricing-feature .feature-val {
    font-weight: 700;
    color: var(--dark);
    text-align: right;
    font-size: 0.85rem;
}
.pricing-footer { padding: 0 32px 32px; }
.pricing-footer .btn { width: 100%; justify-content: center; }

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--dark); color: white; }
.process-section .section-header h2,
.process-section h3 { color: white; }
.process-section .section-tag { background: rgba(249,115,22,0.2); color: #fdba74; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--dark);
    transition: var(--transition);
}
.process-step:hover .step-number { background: var(--accent); transform: scale(1.1); }
.process-step h3 { color: white; font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--text-light); }

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #93c5fd;
}
.blog-content { padding: 24px; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.blog-cat {
    background: rgba(26,86,219,0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-date { font-size: 0.8rem; color: var(--text-light); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; margin-bottom: 16px; }
.read-more { color: var(--primary); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 { color: white; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}
.contact-info-box { }
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26,86,219,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-info-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--dark); font-weight: 600; font-size: 1rem; margin: 0; }
.contact-info-item a:hover { color: var(--primary); }
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 24px;
    box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 240px; border: none; display: block; }

/* ===== CONTACT FORM ===== */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 8px; }
.contact-form-box > p { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.93rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.8rem; color: var(--text-light); }
.form-success, .form-error { display: none; padding: 14px 18px; border-radius: 10px; margin-top: 16px; font-weight: 600; font-size: 0.9rem; }
.form-success { background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.3); }
.form-error { background: rgba(239,68,68,0.1); color: #b91c1c; border: 1px solid rgba(239,68,68,0.3); }
/* Honeypot */
.hp-field { display: none !important; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    color: white;
    padding: 70px 0 55px;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--accent); }

/* ===== SERVICE PAGE ===== */
.service-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.service-sidebar { }
.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.sidebar-box-title {
    background: var(--dark);
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
}
.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover, .sidebar-links a.active {
    background: rgba(26,86,219,0.05);
    color: var(--primary);
    padding-left: 24px;
}
.sidebar-links a::after { content: '→'; font-size: 0.9rem; }
.sidebar-contact { padding: 20px; }
.sidebar-contact .phone {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}
.sidebar-contact .phone:hover { background: var(--primary-dark); }
.sidebar-contact .whatsapp {
    display: block;
    text-align: center;
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}
.sidebar-contact .whatsapp:hover { background: #20bd5a; }

/* Service Content */
.service-content h1 { margin-bottom: 20px; }
.service-intro { font-size: 1.08rem; color: var(--text-light); line-height: 1.8; margin-bottom: 30px; }
.service-content img { border-radius: var(--radius); margin: 24px 0; }
.service-content h2 { margin: 36px 0 16px; font-size: 1.8rem; }
.service-content h3 { margin: 28px 0 12px; }
.service-content ul { margin: 0 0 20px 0; }
.service-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}
.service-content ul li:last-child { border-bottom: none; }
.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
.service-img-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}
.service-img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #93c5fd;
    margin: 24px 0;
}
.service-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.gallery-img { height: 200px; object-fit: cover; border-radius: var(--radius); width: 100%; }
.gallery-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff, #bfdbfe);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #93c5fd;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 36px 0;
}
.cta-box h3 { color: white; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.cta-box .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-section { }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    gap: 12px;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.active { background: rgba(26,86,219,0.04); color: var(--primary); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-question.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    background: rgba(26,86,219,0.02);
}
.faq-answer.open { display: block; }

/* ===== BLOG PAGE ===== */
.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.blog-main { }
.blog-sidebar { }
.blog-post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 28px;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 280px 1fr;
}
.blog-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-post-img { height: 100%; min-height: 200px; object-fit: cover; width: 100%; }
.blog-post-img-placeholder {
    min-height: 200px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #93c5fd;
}
.blog-post-body { padding: 28px; }
.blog-post-body h2 { font-size: 1.35rem; margin-bottom: 12px; }
.blog-post-body h2 a:hover { color: var(--primary); }
.blog-post-body p { font-size: 0.9rem; margin-bottom: 16px; }
.blog-sidebar .sidebar-box { }
.sidebar-widget { padding: 20px; }
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); font-size: 1rem; }
.recent-post { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.recent-post img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post-img-placeholder { width: 60px; height: 60px; border-radius: 8px; background: #dbeafe; display: flex; align-items: center; justify-content: center; color: #93c5fd; font-size: 1.5rem; flex-shrink: 0; }
.recent-post-title { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.recent-post-date { font-size: 0.75rem; color: var(--text-light); }
.category-list a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--gray-700); }
.category-list a:last-child { border-bottom: none; }
.category-list a:hover { color: var(--primary); }
.category-list span { background: var(--gray-100); padding: 2px 8px; border-radius: 50px; font-size: 0.78rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about .site-logo { color: white; margin-bottom: 16px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); transform: translateY(-2px); }
.footer-widget h4 { color: white; font-size: 1rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-widget ul { }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-widget ul li a::before { content: '›'; color: var(--primary); }
.footer-widget ul li a:hover { color: white; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: 0.88rem; margin: 0; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: white; }
.footer-emergency {
    background: var(--primary);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-top: 16px;
    text-align: center;
}
.footer-emergency span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.footer-emergency a { color: white; font-size: 1.2rem; font-weight: 700; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: white; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25d366; }
.float-whatsapp:hover { background: #20bd5a; }
.float-phone { background: var(--primary); }
.float-phone:hover { background: var(--primary-dark); }
.float-btn .tooltip {
    position: absolute;
    right: 68px;
    white-space: nowrap;
    background: var(--dark);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-weight: 600;
}
.float-btn:hover .tooltip { opacity: 1; }
.float-btn .pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid;
    animation: pulse 2s infinite;
}
.float-whatsapp .pulse { border-color: #25d366; }
.float-phone .pulse { border-color: var(--primary); }
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile call button */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
}
.mobile-call-bar:hover { background: var(--primary-dark); }

/* ===== ALERT / NOTICE ===== */
.notice-bar {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ===== PAGE SIDEBAR BOX ===== */
.info-box {
    background: rgba(26,86,219,0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.92rem; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--primary); color: white; padding: 50px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-number { font-size: 3rem; font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .process-steps::before { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 55px 0; }
    .top-bar .container { justify-content: center; }
    .top-bar-right { display: none; }
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .mobile-call-bar { display: block; }
    .floating-buttons { bottom: 76px; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-page-grid { grid-template-columns: 1fr; }
    .service-sidebar { order: -1; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .blog-post-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .header-phone { display: none; }
    .hero-stats { gap: 20px; }
    .mobile-menu-open {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: white;
        overflow-y: auto;
    }
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--dark); }
.mobile-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-cta { margin-top: 24px; }
.mobile-nav .mobile-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== BADGE / TRUST ===== */
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}
.trust-badge .icon { font-size: 1rem; }

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 150px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 997;
}
#back-to-top.visible { opacity: 1; }
#back-to-top:hover { background: var(--primary); }

/* ===== PRINT ===== */
@media print { .floating-buttons, .mobile-call-bar, .site-header, #back-to-top { display: none !important; } }
