@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --brand-black: #000000;
    --brand-red: #E4002B;
    --brand-yellow: #FFD700;
    --brand-white: #FFFFFF;
    --brand-gray-light: #F5F5F5;
    --brand-gray-medium: #E0E0E0;
    --brand-gray-dark: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--brand-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--brand-gray-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header.shrink {
    height: 70px;
}

.header.shrink .logo img {
    max-height: 50px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height var(--transition-medium);
}

.logo img {
    max-height: 70px;
    width: auto;
    transition: all var(--transition-medium);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-desktop a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-black);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-desktop a:hover {
    color: var(--brand-red);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a.active {
    color: var(--brand-red);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-red);
    color: var(--brand-white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #c40025;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 0, 43, 0.4);
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu */
.mobile-header {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--brand-black);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--brand-red);
    border-radius: 50%;
    color: var(--brand-white);
}

.mobile-call-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    background: var(--brand-white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right var(--transition-medium);
    z-index: 1001;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 1000;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-black);
    border-bottom: 1px solid var(--brand-gray-medium);
    transition: color var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--brand-red);
}

.mobile-nav .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
    background: var(--brand-gray-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 40px 0;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--brand-black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero .cta-button {
    font-size: 1rem;
    padding: 16px 32px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('images/hero-electrician-at-work.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    display: none;
}

/* About/Intro Section */
.about-intro {
    text-align: center;
    padding: 100px 0;
}

.about-intro h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--brand-red);
}

.about-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    background: var(--brand-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid var(--brand-gray-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 0, 43, 0.1);
    border-radius: 50%;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-red);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand-red);
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 10px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--brand-gray-light);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--brand-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--brand-yellow);
    fill: var(--brand-yellow);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--brand-black);
    font-style: normal;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    background: transparent;
    color: var(--brand-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    opacity: 0;
}

.testimonials-section:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--brand-red);
    color: var(--brand-white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-gray-medium);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--brand-red);
    transform: scale(1.2);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-block {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.feature-block:hover .feature-icon {
    transform: translateY(-3px);
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-block p {
    font-size: 0.9rem;
}

/* Special Offers Section */
.special-offers {
    background: var(--brand-gray-light);
    padding: 80px 0;
}

.special-offers h2 {
    text-align: center;
    margin-bottom: 50px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-card {
    background: var(--brand-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 30px;
}

.offer-card:hover {
    transform: scale(1.02);
}

.offer-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-content h3 {
    margin-bottom: 10px;
    color: var(--brand-black);
}

.offer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    text-align: center;
}

.service-area h2 {
    margin-bottom: 20px;
}

.service-area > .container > p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.cities-grid ul {
    padding: 20px;
    background: var(--brand-gray-light);
    border-radius: 8px;
}

.cities-grid li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cities-grid li::before {
    content: '✓';
    color: var(--brand-red);
    margin-right: 8px;
    font-weight: bold;
}

/* CTA Banner Section */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('images/call-to-action-banner.png') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--brand-white);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.cta-banner .cta-button {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* FAQ Section */
.faq-section {
    background: var(--brand-gray-light);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    background: var(--brand-white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--brand-red);
    transform: scale(1.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-white);
}

.footer h4 {
    color: var(--brand-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-red);
}

.footer-contact p {
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--brand-red);
    flex-shrink: 0;
}

.footer-services a,
.footer-links a {
    display: block;
    color: #999;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-services a:hover,
.footer-links a:hover {
    color: var(--brand-white);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.85rem;
}

.badge-item img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #999;
    margin: 0 10px;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--brand-white);
}

/* Page Hero Sections */
.page-hero {
    position: relative;
    padding: 150px 0 80px;
    background: var(--brand-gray-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-full-list {
    padding: 80px 0;
}

.services-full-list h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: var(--brand-white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
}

.service-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 0, 43, 0.1);
    border-radius: 50%;
}

.service-item-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-red);
}

.service-item-content h3 {
    margin-bottom: 10px;
}

.service-item-content p {
    margin-bottom: 0;
}

/* Process Timeline */
.process-section {
    background: var(--brand-gray-light);
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gray-medium);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--brand-red);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.9rem;
}

/* About Page - Story */
.story-section {
    padding: 80px 0;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background: var(--brand-gray-light);
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: var(--brand-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-medium);
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member-content {
    padding: 25px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member .title {
    color: var(--brand-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--brand-gray-medium);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--brand-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-red);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .cta-button {
    align-self: flex-start;
    padding: 16px 40px;
    font-size: 1rem;
}

.contact-info-wrapper h2 {
    margin-bottom: 30px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(228, 0, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand-red);
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--brand-red);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Page */
.faq-full-section {
    padding: 80px 0;
}

.faq-full-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 15px;
}

/* Still Have Questions */
.still-questions {
    background: var(--brand-gray-light);
    padding: 80px 0;
    text-align: center;
}

.still-questions h2 {
    margin-bottom: 15px;
}

.still-questions p {
    max-width: 500px;
    margin: 0 auto 25px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--brand-white);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    transform: scale(0.95);
    transition: transform var(--transition-medium);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--brand-gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--brand-red);
    color: var(--brand-white);
}

.modal h2 {
    margin-bottom: 20px;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form .form-group input {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .carousel-btn {
        opacity: 1;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner h2 {
        font-size: 1.75rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}
