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

:root {
    --primary: #007BFF;
    --secondary: #28a745;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --accent: #ff6b6b;
    --background: #f9f9f9;
    --foreground: #333;
    --card-bg: #fff;
    --card-glass: rgba(255,255,255,0.35);
    --card-border: rgba(255,255,255,0.35);
    --section-bg: #fff;
    --nav-bg: rgba(255,255,255,0.95);
    --nav-link: var(--dark);
    --nav-link-active: var(--primary);
    --footer-bg: var(--dark);
    --footer-fg: #fff;
    --footer-link: #bbb;
    --footer-link-hover: #fff;
    --faq-card-bg: rgba(255,255,255,0.45);
    --faq-card-border: rgba(0,123,255,0.10);
    --faq-icon: var(--primary);
    --faq-icon-active: var(--secondary);
    --testimonial-bg: var(--light);
    --testimonial-card-bg: #fff;
    --testimonial-content: #555;
    --testimonial-author: var(--dark);
    --testimonial-location: #777;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--background);
    color: var(--foreground);
}

/* Dark theme overrides */
body.dark-theme {
    --primary: #4fc3f7;
    --secondary: #43e97b;
    --dark: #e0e0e0;
    --light: #232b32;
    --accent: #ffb74d;
    --background: #181c1f;
    --foreground: #e0e0e0;
    --card-bg: #232b32;
    --card-glass: rgba(35,43,50,0.65);
    --card-border: rgba(79,195,247,0.18);
    --section-bg: #232b32;
    --nav-bg: rgba(24,28,31,0.98);
    --nav-link: #e0e0e0;
    --nav-link-active: #4fc3f7;
    --footer-bg: #101417;
    --footer-fg: #e0e0e0;
    --footer-link: #bbb;
    --footer-link-hover: #fff;
    --faq-card-bg: rgba(35,43,50,0.85);
    --faq-card-border: rgba(79,195,247,0.10);
    --faq-icon: #4fc3f7;
    --faq-icon-active: #43e97b;
    --testimonial-bg: #232b32;
    --testimonial-card-bg: #181c1f;
    --testimonial-content: #bbb;
    --testimonial-author: #fff;
    --testimonial-location: #aaa;
}


body {
    font-family: 'Inter', 'Poppins', 'Montserrat', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Poppins', 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header Styles */
header.hero-section {
    background: linear-gradient(135deg, var(--primary), #0056b3), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(44,62,80,0.7) 0%, rgba(0,123,255,0.5) 100%);
    z-index: 0;
}
.header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.typewriter span {
    display: inline-block;
    overflow: hidden;
    border-right: .15em solid var(--accent);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .05em;
    animation: typing 2.5s steps(30, end), blink-caret .75s step-end infinite;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #b2fefa, #0ed2f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent); }
}
.hero-subheadline {
    font-size: 1.5rem;
    margin-top: 18px;
    margin-bottom: 32px;
    opacity: 0.92;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.hero-cta-group {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.btn-hero {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-hero i {
    margin-right: 10px;
}
.btn-hero-outline, .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}
.btn-hero-outline:hover, .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: var(--accent);
}
.btn-pulse {
    animation: pulse-btn 1.5s infinite;
}
@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(0,123,255,0.4); }
    70% { box-shadow: 0 0 0 18px rgba(0,123,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,123,255,0); }
}

header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    z-index: 0;
}
.header-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
header h1 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInDown 1s ease;
}
header p {
    font-size: 1.8rem;
    margin-top: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}
.tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 25px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

/* Navigation */
nav {
    background: var(--nav-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.darkmode-toggle {
    background: none;
    border: none;
    margin-left: 18px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--nav-link);
    transition: color 0.2s, background 0.2s;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.darkmode-toggle:focus {
    box-shadow: 0 0 0 2px var(--primary);
}
.darkmode-toggle .darkmode-icon {
    pointer-events: none;
}
.darkmode-toggle .fa-sun {
    display: none;
}
body.dark-theme .darkmode-toggle .fa-moon {
    display: none;
}
body.dark-theme .darkmode-toggle .fa-sun {
    display: inline;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo-svg {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}
.logo i {
    margin-right: 10px;
    color: var(--secondary);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
    z-index: 110;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before {
    top: -9px;
}
.hamburger::after {
    top: 9px;
}
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}
.nav-links {
    display: flex;
    list-style: none;
    transition: var(--transition);
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: flex-end;
        min-width: 220px;
        padding: 18px 0 18px 0;
        border-radius: 0 0 12px 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links li {
        margin: 0 24px 18px 24px;
    }
    .nav-links li:last-child {
        margin-bottom: 0;
    }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section {
    margin-bottom: 60px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}
.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.feature-card {
    background: rgba(255,255,255,0.35);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.35);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.36,1.56,.64,1), transform 0.7s cubic-bezier(.36,1.56,.64,1), box-shadow 0.3s;
    cursor: pointer;
}
.faq-card {
    text-align: left;
    padding: 0;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 16px;
    border: 1.5px solid rgba(0,123,255,0.10);
    background: rgba(255,255,255,0.45);
    box-shadow: 0 2px 12px rgba(0,123,255,0.06);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px 18px 28px;
    cursor: pointer;
    user-select: none;
}
.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}
.faq-card[aria-expanded="true"] .faq-icon {
    color: var(--secondary);
    transform: rotate(90deg) scale(1.2);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px;
    transition: max-height 0.4s cubic-bezier(.36,1.56,.64,1), opacity 0.3s, padding 0.3s;
}
.faq-card[aria-expanded="true"] .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 28px 22px 28px;
}
.faq-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:hover {
    box-shadow: 0 16px 40px 0 rgba(40,167,69,0.13), 0 2px 8px 0 rgba(0,123,255,0.08);
    border-color: var(--secondary);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,255,255,0.45);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(0,123,255,0.2);
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: color 0.3s, transform 0.3s;
    will-change: transform, color;
}
.feature-card:hover .feature-icon {
    color: var(--accent);
    animation: icon-bounce 0.7s cubic-bezier(.36,1.56,.64,1) 1;
}
@keyframes icon-bounce {
    0%   { transform: scale(1) translateY(0); }
    30%  { transform: scale(1.15, 0.85) translateY(-8px); }
    50%  { transform: scale(0.95, 1.05) translateY(4px); }
    70%  { transform: scale(1.05, 0.95) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-icon {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 40px;
}
.contact-text h3 {
    margin-bottom: 5px;
    color: var(--dark);
}
.contact-text p, .contact-text a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}
.contact-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(120deg, #007BFF 0%, #43e97b 100%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: white;
    border-radius: 18px;
    padding: 70px 40px 70px 40px;
    margin: 70px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
}
.cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(44,62,80,0.7) 0%, rgba(0,123,255,0.5) 100%);
    z-index: 0;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    z-index: 0;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-service {
    margin-top: 18px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0,123,255,0.13);
    border: none;
    transition: var(--transition);
}
.btn-service i {
    margin-right: 8px;
}
.btn-service:hover {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,123,255,0.18);
}
.btn-service-outline {
    margin-top: 18px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 40px;
    box-shadow: none;
    transition: var(--transition);
}
.btn-service-outline i {
    margin-right: 8px;
}
.btn-service-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--secondary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,123,255,0.10);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
    background: #218838;
}
.btn:active {
    transform: translateY(1px);
}
.btn-call {
    background: #fff;
    color: var(--primary);
    margin-left: 15px;
    box-shadow: 0 0 0 0 rgba(0,123,255,0.4), 0 5px 15px rgba(0, 123, 255, 0.4);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 40px;
    padding: 18px 44px;
    position: relative;
    animation: cta-glow 2s infinite alternate;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
@keyframes cta-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.4), 0 5px 15px rgba(0, 123, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 32px 8px rgba(67,233,123,0.18), 0 8px 32px rgba(0,123,255,0.18);
    }
}
.btn-call:hover {
    background: #f0f0f0;
    color: var(--secondary);
    box-shadow: 0 0 48px 12px rgba(67,233,123,0.22), 0 12px 36px rgba(0,123,255,0.22);
    animation: none;
}

/* Map Section */
.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 60px 20px;
    margin: 60px 0;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.36,1.56,.64,1), transform 0.7s cubic-bezier(.36,1.56,.64,1), box-shadow 0.3s;
}
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0,123,255,0.13);
    transform: translateY(-8px) scale(1.03);
}
.testimonial-card:hover .testimonial-card::before {
    color: var(--primary);
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover .author-avatar {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(0,123,255,0.18);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0,123,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-content {
    margin-top: 20px;
    font-style: italic;
    color: #555;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}
.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark);
}
.author-info p {
    color: #777;
    font-size: 0.9rem;
}
.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 30px;
}
.newsletter-form {
    margin: 24px 0 18px 0;
}
.newsletter-label {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.newsletter-group {
    display: flex;
    gap: 0;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.newsletter-group input[type="email"] {
    border: none;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 40px 0 0 40px;
    outline: none;
    min-width: 0;
    flex: 1;
}
.btn-newsletter {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.btn-newsletter:hover {
    background: var(--secondary);
    color: #fff;
}
.footer-legal {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
    color: #bbb;
    font-size: 0.98rem;
}
.footer-link {
    color: #bbb;
    text-decoration: underline;
    margin: 0 8px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-column h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    header h1 {
        font-size: 2.8rem;
    }
    header p {
        font-size: 1.5rem;
    }
    .section {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 60px 20px 40px;
    }
    header h1 {
        font-size: 2.3rem;
    }
    header p {
        font-size: 1.2rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 5px 15px;
    }
    .section h2 {
        font-size: 1.8rem;
    }
    .cta-section {
        padding: 40px 20px;
    }
    .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 576px) {
    .section {
        padding: 20px;
        margin-bottom: 30px;
    }
    .features-grid, .contact-section {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 300px;
    }
}
