/* ===========================
   Future Travels - Modern UI
   Construction/Govt Contractor Style
   =========================== */

/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #0a1628;
    --primary-light: #122240;
    --secondary: #f57c20;
    --secondary-dark: #d96a10;
    --accent: #ffc107;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-bg: #f0f2f5;
    --text: #1a1a2e;
    --text-light: #6c757d;
    --text-muted: #adb5bd;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-left a:hover { color: var(--secondary); }
.top-bar-right { display: flex; gap: 15px; }
.top-bar-right span {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

/* ===========================
   Header
   =========================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: var(--shadow-sm);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-ft {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    letter-spacing: -1px;
}
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.logo-text small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* Navigation */
.nav { display: flex; gap: 4px; }
.nav-link {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
}
.nav-link:hover { background: var(--light-bg); color: var(--secondary); }
.nav-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Header Actions */
.header-actions { display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.btn-call {
    background: var(--primary);
    color: var(--white);
}
.btn-call:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(245,124,32,0.4); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 8px; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* Header scrolled state */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

/* ===========================
   Hero Section - Modern Dark
   =========================== */
.hero {
    background: linear-gradient(160deg, var(--primary) 0%, #0d2137 40%, #1a3a5c 100%);
    color: var(--white);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,124,32,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,124,32,0.15);
    border: 1px solid rgba(245,124,32,0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInDown 0.6s ease-out;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 span { color: var(--secondary); position: relative; }
.hero h1 .highlight {
    position: relative;
    display: inline-block;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: 4px;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Hero Trust Strip */
.hero-trust {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(245,124,32,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.hero-trust-text h4 { font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.hero-trust-text p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===========================
   Stats Counter Section
   =========================== */
.stats-section {
    background: var(--white);
    padding: 50px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.stat-item {
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light-bg); }
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { font-size: 1.5rem; }
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   Section Styles
   =========================== */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--primary); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,124,32,0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===========================
   Service Cards - Modern
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245,124,32,0.1), rgba(255,193,7,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: scale(1.1);
}
.service-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}
.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   Why Choose Us
   =========================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.why-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===========================
   Contact / Lead Form
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
.lead-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.lead-form-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.lead-form-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text);
    font-size: 0.85rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245,124,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* Contact Info Panel */
.contact-panel {
    background: linear-gradient(160deg, var(--primary), #122240);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-panel h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(245,124,32,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-item-text p, .contact-item-text a {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}
.contact-item-text a:hover { color: var(--secondary); }
.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===========================
   About Page
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 800;
}
.about-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.8;
}
.about-features { margin-top: 30px; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}
.about-feature .feat-icon { font-size: 2rem; flex-shrink: 0; }
.about-feature h4 { color: var(--primary); margin-bottom: 5px; font-weight: 700; }
.about-feature p { margin: 0; font-size: 0.9rem; }

/* ===========================
   Service Detail Page
   =========================== */
.service-hero {
    background: linear-gradient(160deg, var(--primary), #1a3a5c);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245,124,32,0.1), transparent 50%);
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; }
.service-hero p { font-size: 1.1rem; opacity: 0.8; }
.service-detail-content { max-width: 900px; margin: 0 auto; }
.service-detail-content h2 {
    color: var(--primary);
    margin: 35px 0 15px;
    font-size: 1.5rem;
    font-weight: 800;
}
.service-detail-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1rem;
}
.service-detail-content ul { margin: 15px 0 20px; }
.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}
.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), #e89a4a);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}
.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
}
.cta-section .btn { position: relative; }

/* ===========================
   Floating Call Button
   =========================== */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 25px rgba(245,124,32,0.5);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.floating-call:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 35px rgba(245,124,32,0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 6px 25px rgba(245,124,32,0.5); }
    50% { box-shadow: 0 6px 25px rgba(245,124,32,0.5), 0 0 0 12px rgba(245,124,32,0.15); }
    100% { box-shadow: 0 6px 25px rgba(245,124,32,0.5); }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations - elements always visible, animation enhances on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Client Logos Slider
   =========================== */
.clients-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}
.clients-section .section-header { margin-bottom: 35px; }

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-slider {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.logo-slider:hover {
    animation-play-state: paused;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 90px;
    padding: 15px 30px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
}
.logo-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(245,124,32,0.12);
    transform: translateY(-3px);
}
.logo-item span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    white-space: nowrap;
}
.logo-item small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.logo-item .logo-content {
    text-align: center;
    line-height: 1.3;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-item { min-width: 140px; height: 70px; padding: 10px 20px; }
    .logo-item span { font-size: 1rem; }
    .logo-slider { gap: 30px; }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-right { display: none; }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 15px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .nav.open { display: flex; }
    .nav-toggle { display: block; }
    .header-actions { display: none; }
    .hero { padding: 70px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; }
    .hero-trust { gap: 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .stat-item { padding: 25px 15px; }
    .stat-number { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .lead-form-card { padding: 25px; }
    .contact-panel { padding: 30px 25px; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .contact-actions { flex-direction: column; }
    .contact-actions .btn { width: 100%; justify-content: center; }
}
