/* === RESET & BASE === */
html { scroll-behavior: smooth; }
#top { position: absolute; top: 0; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* === COLOR VARIABLES === */
:root {
    --primary: #0c4a6e;
    --primary-light: #0ea5e9;
    --primary-dark: #082f49;
    --accent: #c8a951;
    --accent-light: #e8d48b;
    --accent-dark: #a68b3a;
    --success: #10b981;
    --danger: #ef4444;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-warm: #faf9f6;
    --border: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

/* === HEADER === */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.header-title { display: flex; flex-direction: column; }
.company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin: 0;
}
.company-tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-phone { display: flex; }
.header-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.header-phone-link:hover { background: var(--primary-dark); }
.header-phone-icon { width: 20px; height: 20px; flex-shrink: 0; }
.header-phone-number { font-size: 15px; font-weight: 600; white-space: nowrap; }
.header-phone-label { font-size: 11px; opacity: 0.85; }

@media (max-width: 768px) {
    .header { padding: 8px 0; }
    .header-container { padding: 0 15px; }
    .logo-icon { width: 36px; height: 36px; font-size: 16px; }
    .company-name { font-size: 17px; }
    .company-tagline { font-size: 9px; }
    .desktop-only { display: none !important; }
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 40px 20px;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}
.hero-content { padding: 20px 0; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 20px;
}
.badge-icon { color: var(--accent); }
.hero-title { margin-bottom: 16px; }
.title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}
.title-sub {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-top: 8px;
}
.hero-description {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}
.trust-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.hero-call-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.hero-call-button:hover { background: var(--primary-dark); }
.hero-call-icon { width: 24px; height: 24px; }
.hero-call-label { font-size: 13px; opacity: 0.9; }
.hero-call-number { font-size: 18px; font-weight: 700; }
.mobile-only { display: none; }

/* === HERO FORM === */
.hero-form-wrapper { position: sticky; top: 80px; }
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.form-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
}
.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.form-subtitle { font-size: 0.85rem; opacity: 0.9; }
.hero-contact-form { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-field { position: relative; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-field textarea { resize: vertical; min-height: 70px; }
.form-field select { cursor: pointer; appearance: auto; }
.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-dark), #8a7530);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,169,81,0.4);
}
.submit-arrow { font-size: 18px; }
.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}
.form-error { border-color: var(--danger) !important; }
.error-message { color: var(--danger); font-size: 12px; margin-top: 4px; }

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-content { padding: 0; order: 2; }
    .hero-form-wrapper { order: 1; position: static; }
    .hero-section { padding: 20px 16px; }
    .title-main { font-size: 1.8rem; }
    .title-sub { font-size: 1.1rem; }
    .mobile-only { display: flex; }
}
@media (max-width: 480px) {
    .title-main { font-size: 1.5rem; }
    .hero-contact-form { padding: 16px; gap: 12px; }
}

/* === SERVICES === */
.services-section {
    padding: 60px 20px;
    background: var(--white);
}
.services-container { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 40px; }
.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.services-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0 0 24px;
    overflow: hidden;
    transition: all 0.3s;
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    color: var(--primary);
}
.img-placeholder span { font-size: 48px; margin-bottom: 8px; }
.img-placeholder p { font-size: 14px; font-weight: 600; color: var(--primary); }
.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 16px 20px 8px;
}
.service-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 20px 12px;
    line-height: 1.6;
}
.service-features {
    list-style: none;
    margin: 0 20px;
    padding: 0;
}
.service-features li {
    font-size: 0.85rem;
    color: #374151;
    padding: 4px 0 4px 20px;
    position: relative;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
.services-cta { text-align: center; }
.services-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.services-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-section { padding: 40px 16px; }
    .services-title { font-size: 1.5rem; }
}

/* === BUTTONS === */
.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,81,0.4);
}
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}
.cta-button-secondary:hover {
    background: var(--primary);
    color: var(--white);
}
.cta-large { padding: 16px 36px; font-size: 17px; }
.cta-arrow { font-size: 18px; }

/* === WHY CHOOSE US === */
.why-section {
    padding: 60px 20px;
    background: var(--bg-light);
}
.why-container { max-width: 1200px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 40px; }
.why-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.why-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.benefit-icon svg { width: 28px; height: 28px; color: var(--primary); }
.benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.benefit-description { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 900px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .why-section { padding: 40px 16px; }
    .why-title { font-size: 1.5rem; }
}

/* === HOW IT WORKS === */
.process-section {
    padding: 60px 20px;
    background: var(--white);
}
.process-container { max-width: 800px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 40px; }
.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.process-description {
    font-size: 1.05rem;
    color: var(--text-light);
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 50px;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.step-description { font-size: 0.95rem; color: var(--text-light); }
.step-connector {
    width: 2px;
    height: 20px;
    background: var(--accent);
    margin: 0 0 0 47px;
}
.process-cta { text-align: center; }
.cta-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}
.cta-highlight h3 { font-size: 1.4rem; margin-bottom: 8px; }
.cta-highlight p { opacity: 0.9; margin-bottom: 20px; }
.cta-highlight .cta-button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

/* === REVIEWS === */
.reviews-section {
    padding: 60px 20px;
    background: var(--bg-warm);
}
.reviews-container { max-width: 1200px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.reviews-description { font-size: 1.05rem; color: var(--text-light); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.avatar-initials { color: var(--white); font-weight: 700; font-size: 16px; }
.review-name { font-size: 1rem; font-weight: 600; color: var(--text); margin: 0; }
.review-location { font-size: 0.8rem; color: var(--text-light); margin: 2px 0; }
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.review-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}
.review-date { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    margin-bottom: 24px;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.reviews-cta { text-align: center; }
.reviews-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .reviews-section { padding: 40px 16px; }
    .reviews-title { font-size: 1.5rem; }
    .reviews-stats { gap: 24px; }
    .stat-number { font-size: 1.5rem; }
}

/* === PRICING === */
.pricing-section {
    padding: 60px 20px;
    background: var(--white);
}
.pricing-container { max-width: 1000px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.pricing-description { font-size: 1.05rem; color: var(--text-light); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(200,169,81,0.15);
    transform: scale(1.04);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pricing-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}
.pricing-price {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
}
.pricing-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.pricing-includes li {
    padding: 8px 0 8px 24px;
    font-size: 0.9rem;
    color: #374151;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
.pricing-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pricing-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 4px 12px rgba(200,169,81,0.4);
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-section { padding: 40px 16px; }
    .pricing-title { font-size: 1.5rem; }
}

/* === FAQ === */
.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.faq-description { font-size: 1.05rem; color: var(--text-light); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.faq-question:hover { background: #f9fafb; }
.question-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}
.question-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-light);
}
.faq-item.active .question-arrow { transform: rotate(180deg); }
.faq-item.active .question-text { color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 600px) {
    .faq-section { padding: 40px 16px; }
    .faq-title { font-size: 1.5rem; }
}

/* === BOTTOM CTA === */
.bottom-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: var(--white);
}
.bottom-cta-container { max-width: 700px; margin: 0 auto; }
.bottom-cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.bottom-cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }
.bottom-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.bottom-cta-section .cta-button-secondary {
    border-color: var(--white);
    color: var(--white);
}
.bottom-cta-section .cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 600px) {
    .bottom-cta-section { padding: 40px 16px; }
    .bottom-cta-section h2 { font-size: 1.5rem; }
    .bottom-cta-buttons { flex-direction: column; align-items: center; }
    .cta-large { width: 100%; justify-content: center; }
}

/* === FOOTER === */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 48px 20px 24px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-description { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; margin-bottom: 4px; }
.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-links { list-style: none; }
.footer-links li {
    font-size: 0.9rem;
    padding: 4px 0;
    color: #9ca3af;
}
.footer-links a { color: #9ca3af; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 32px 16px 16px; }
}

/* === FLOATING BUTTONS === */
.floating-call-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(12,74,110,0.4);
    z-index: 90;
    transition: all 0.3s;
    animation: pulse-glow 2s infinite;
}
.floating-call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(12,74,110,0.5);
}
.call-icon { width: 22px; height: 22px; flex-shrink: 0; }
.call-label { font-size: 12px; opacity: 0.9; }
.call-number { font-size: 15px; font-weight: 700; }
.call-text { display: flex; flex-direction: column; }

.floating-whatsapp-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 90;
    transition: all 0.3s;
}
.floating-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(12,74,110,0.4); }
    50% { box-shadow: 0 4px 30px rgba(12,74,110,0.6); }
}

@media (max-width: 768px) {
    .floating-call-button {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
    }
    .call-number { font-size: 14px; }
    .floating-whatsapp-button {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }
}

/* === FORM LOADING STATE === */
.form-loading .form-submit-btn {
    opacity: 0.7;
    pointer-events: none;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }
