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

:root {
    --primary-color: #1c3a4a;
    --secondary-color: #ffd700;
    --accent-color: #002d5c;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0f2d3d 0%, #1c3a4a 100%);
}

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

.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid var(--secondary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.language-switcher {
    display: flex;
    gap: 12px;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInDown 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 61, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 45px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: rgba(16, 28, 42, 0.55);
    color: #ffe27a;
    border: 2px solid rgba(255, 215, 0, 0.65);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.18);
    color: #fff8dc;
    border-color: #ffe27a;
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(255, 215, 0, 0.35);
}

section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.features {
    position: relative;
    overflow: hidden;
    color: white;
}

.features::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/features-bg.jpg') center/cover no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.72);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features h2 {
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(28, 58, 74, 0.4);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--secondary-color);
    background: rgba(28, 58, 74, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p .text-link {
    display: block;
    margin-top: 10px;
}

.services {
    position: relative;
    overflow: hidden;
    color: white;
}

.services::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/services-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 30, 0.80);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: linear-gradient(135deg, rgba(28,58,74,0.3) 0%, rgba(0,45,92,0.3) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(5px);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(28,58,74,0.42) 0%, rgba(0,45,92,0.42) 100%);
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.24);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonials {
    position: relative;
    overflow: hidden;
    color: white;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/testimonials-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 40, 0.78);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(28,58,74,0.2) 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    margin-bottom: 15px;
    font-style: italic;
    color: #e8e8e8;
    line-height: 1.8;
}

.testimonial-card span {
    display: block;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faq {
    position: relative;
    overflow: hidden;
    color: white;
}

.faq::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/faq-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.80);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq h2 {
    color: var(--secondary-color);
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(28, 58, 74, 0.3);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    color: var(--secondary-color);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question:hover {
    color: #ffed4e;
}

.faq-answer {
    margin-top: 12px;
    color: #bbb;
    line-height: 1.8;
}

.newsletter {
    position: relative;
    overflow: hidden;
    color: #f7f8fb;
    text-align: center;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/newsletter-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.newsletter::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 24, 48, 0.82) 0%, rgba(142, 112, 22, 0.52) 100%);
    z-index: 1;
}

.newsletter .container {
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    color: var(--secondary-color);
}

.newsletter-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer {
    background: linear-gradient(110deg, #0c1a24 0%, #121a22 55%, #2c2412 100%);
    color: white;
    padding: 60px 20px 20px;
    border-top: 2px solid var(--secondary-color);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.footer-brand-info {
    flex: 1;
    min-width: 220px;
}

.footer-brand-links {
    flex: 0 0 auto;
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.footer-logo span {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.footer-brand-info > p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 0 0 30px;
}

.footer-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
}

.footer-domains .footer-link {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    display: inline-block;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-brand-links {
        text-align: left;
    }
    .footer-domains {
        justify-content: flex-start;
    }
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #888;
    font-size: 13px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('../img/hero-bg-mobile.jpg');
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #081a2f;
        min-height: 78vh;
    }

    .features::before,
    .services::before,
    .process::before,
    .testimonials::before,
    .faq::before,
    .city-scenes::before,
    .newsletter::before {
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .newsletter-cta {
        flex-direction: column;
        align-items: center;
    }
}


.city-scenes {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.city-scenes::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/city-scenes-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.city-scenes::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 30, 0.75);
    z-index: 1;
}

.city-scenes .container {
    position: relative;
    z-index: 2;
}

.city-scenes h2,
.city-scenes p,
.city-scenes a {
    color: #ffffff;
}

.city-scenes .cta-buttons .btn-primary {
    color: #0f2d3d;
    text-shadow: none;
}

.city-scenes .cta-buttons .btn-secondary {
    color: #ffe27a;
}

/* ===== INLINE TEXT LINKS ===== */
/* Used within paragraphs on dark backgrounds (features, services, process, testimonials, faq) */
.text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: var(--transition);
}
.text-link:hover {
    color: #ffed4e;
    text-decoration-style: solid;
}

/* Used within city-scenes section (dark overlay background) */
.text-link-light {
    color: #ffd700;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: var(--transition);
}
.text-link-light:hover {
    color: #fff;
    text-decoration-style: solid;
}

/* Used within newsletter section */
.text-link-dark {
    color: #ffe27a;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: var(--transition);
}
.text-link-dark:hover {
    color: #fff;
}

/* Used within footer paragraphs */
.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted rgba(255,215,0,0.4);
    transition: var(--transition);
}
.footer-link:hover {
    color: #ffed4e;
    border-bottom-color: #ffed4e;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-sub {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-header.light h2,
.section-header.light .section-sub {
    color: #fff;
}
.section-header.light h2 {
    color: var(--secondary-color);
}

/* ===== HERO ENHANCEMENTS ===== */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0%   { transform: translateY(0) scale(1); opacity: 0.4; }
    100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}
.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.5);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}
.highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-item .stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline;
}
.stat-item > span { font-size: 2rem; color: var(--secondary-color); font-weight: 700; }
.stat-item p { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; opacity: 0.7; }

/* scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,215,0,0.6);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scrollBob 1.5s ease-in-out infinite;
}
@keyframes scrollBob {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%      { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* hero text animations */
.animate-fade-in        { animation: fadeInDown 0.8s ease-out both; }
.animate-fade-in-delay  { animation: fadeInDown 0.8s ease-out 0.2s both; }
.animate-fade-in-delay2 { animation: fadeInDown 0.8s ease-out 0.5s both; }
.animate-fade-in-delay3 { animation: fadeInDown 0.8s ease-out 0.8s both; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE ITEMS ===== */
.service-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,215,0,0.68);
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
    -webkit-text-stroke: 1px rgba(40, 25, 0, 0.35);
    line-height: 1;
    margin-bottom: 10px;
    font-family: monospace;
}
.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
    will-change: transform;
}
.service-link:hover {
    color: #ffeb99;
    transform: translateX(3px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

/* ===== PROCESS SECTION ===== */
.process {
    position: relative;
    overflow: hidden;
    color: white;
}

.process::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('../img/process-bg.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 45, 0.78);
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}
.process h2 { color: var(--secondary-color); }
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.process-step {
    background: rgba(255,215,0,0.06);
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.process-step:hover {
    border-color: var(--secondary-color);
    background: rgba(255,215,0,0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}
.step-num {
    position: absolute;
    top: -15px; right: -10px;
    width: 32px; height: 32px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 15px; }
.process-step h3 { color: var(--secondary-color); margin-bottom: 10px; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.process-step p { font-size: 13px; color: #aaa; line-height: 1.7; }
.process-arrow { font-size: 2rem; color: rgba(255,215,0,0.4); font-weight: 300; }
.process-arrow::before { content: '\2192'; }
.process-cta { text-align: center; }

/* ===== TESTIMONIAL ENHANCEMENTS ===== */
.stars { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 3px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author span { color: var(--secondary-color); font-size: 13px; font-weight: 700; }

/* ===== FAQ ACCORDION ===== */
.faq-item { cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; }
.faq-icon { font-size: 1.4rem; color: var(--secondary-color); transition: var(--transition); flex-shrink: 0; }
.faq-answer { display: none; padding-top: 15px; }
.faq-item.open .faq-answer { display: block; }

/* ===== CITY GRID ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.city-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    color: #fff;
}
.city-card:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.2);
}
.city-icon { font-size: 2.8rem; margin-bottom: 15px; display: block; }
.city-card h3 { color: var(--secondary-color); margin-bottom: 10px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.city-card p { font-size: 13px; line-height: 1.7; color: #ccc; }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 15px; justify-content: center; margin-top: 25px; flex-wrap: wrap; }
.social-btn {
    padding: 12px 25px;
    background: rgba(28,58,74,0.6);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.social-btn:hover { background: rgba(255,215,0,0.2); border-color: var(--secondary-color); transform: translateY(-3px); }

/* ===== FOOTER ENHANCEMENTS ===== */
.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-about .footer-logo img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid var(--secondary-color); }
.footer-about .footer-logo span { color: var(--secondary-color); font-weight: 700; font-size: 15px; }
.footer-about p { color: #aaa; font-size: 13px; line-height: 1.8; margin-bottom: 15px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}
.footer-hours { margin-top: 20px; }
.footer-hours p { color: #aaa; font-size: 13px; margin-bottom: 5px; }
.footer-bottom a { color: #888; text-decoration: none; margin: 0 5px; }
.footer-bottom a:hover { color: var(--secondary-color); }

