/* CSS Variables */
:root {
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #86efac;
    --secondary-color: #065f46;
    --accent-color: #fbbf24;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.nav-logo span {
    font-size: 14px;
    color: var(--text-medium);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    opacity: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.4) 0%, rgba(22, 163, 74, 0.5) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    text-align: center;
    color: white;
}

.hero-icon svg {
    margin-bottom: 16px;
    color: rgba(34, 197, 94, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-icon h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icon p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

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

.service-card.featured .service-icon svg {
    color: white;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 14px;
}

.service-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.service-card.featured .service-cta {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-cta .btn {
    width: 100%;
    justify-content: center;
}

.service-card.featured .service-cta .btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card.featured .service-cta .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.services-cta {
    background: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

/* Service Areas Section */
.service-areas {
    padding: 120px 0;
    background: white;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.areas-map {
    position: relative;
    height: 400px;
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.area-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

.area-item:has(.area-badge:contains("Primary")) .area-badge {
    background: var(--primary-color);
    color: white;
}

.area-item:has(.area-badge:contains("Extended")) .area-badge {
    background: var(--accent-color);
    color: var(--text-dark);
}

.areas-note {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-features {
    margin-top: 48px;
}

.feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.feature-content p {
    margin: 0;
    color: var(--text-medium);
    font-size: 14px;
}

.about-image {
    position: relative;
    height: 400px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    text-align: center;
    color: var(--text-medium);
}

.about-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.about-badge small {
    font-size: 14px;
    opacity: 0.9;
}

/* Reviews Carousel */
.reviews-carousel {
    padding: 120px 0;
    background: var(--bg-light);
}

.carousel-container {
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 32px;
    padding: 20px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 8));
    }
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    min-width: 320px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 48px;
    color: var(--primary-light);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-light);
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

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

.prev-btn {
    margin-left: -24px;
}

.next-btn {
    margin-right: -24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.reviews-cta {
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.reviews-cta h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reviews-cta p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* Contact Links */
.contact-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.phone-link {
    color: var(--primary-color);
}

.phone-link:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.email-link {
    color: var(--primary-color);
}

.email-link:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Phone link icon effect */
.phone-link:hover + .method-icon,
.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
}

.contact-method:hover .method-icon svg {
    color: white;
}

/* Email link icon effect */
.email-link:hover + .method-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

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

.contact-methods {
    margin-top: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.method-content h4 {
    margin-bottom: 8px;
}

.method-content p {
    margin-bottom: 4px;
}

.method-content span {
    font-size: 14px;
    color: var(--text-light);
}

/* Form Styles */
.quote-form {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-light);
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-header h3 {
    margin-bottom: 8px;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-item {
    display: flex;
    gap: 8px;
}

.footer-item strong {
    color: var(--primary-color);
    min-width: 60px;
}

.footer-item a {
    color: white;
    text-decoration: none;
}

.footer-item a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.footer-contact-quick {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.footer-contact-quick span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-quick a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-contact-quick a:hover {
    color: white;
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 16px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Social - Elegant Single Link Design */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 320px;
    width: 100%;
}

.social-header {
    margin-bottom: 24px;
    text-align: center;
}

.social-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.social-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.facebook-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    background: linear-gradient(135deg, #166fe5 0%, #1976d2 100%);
}

.facebook-link svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.social-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.social-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.social-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

.contact-alternatives {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 4px;
}

.alt-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.alt-contact:last-child {
    margin-bottom: 0;
}

.alt-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.alt-contact div {
    flex: 1;
}

.alt-contact strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.alt-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.alt-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */

/* Tablet View (iPad) - 768px to 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* Carousel adjustments for iPad */
    .review-card {
        min-width: 300px;
    }
    
    .carousel-track {
        animation-duration: 25s;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-332px * 8));
        }
    }
}

/* Mobile View - up to 768px */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        border-top: 1px solid #e5e7eb;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 8px 0;
        font-size: 16px;
        color: var(--text-dark);
    }
    
    .nav-cta {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 140px 24px 80px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Small Mobile View - up to 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 16px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .nav-logo span {
        font-size: 12px;
    }
    
    /* Enhanced mobile hero */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 40px 16px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Mobile service cards */
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
        margin: 0 4px;
    }
    
    .service-image {
        height: 150px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .service-features {
        margin: 20px 0;
    }
    
    .service-features li {
        margin-bottom: 6px;
        font-size: 14px;
    }
    
    /* Mobile areas section */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .area-item {
        padding: 12px;
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .area-badge {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    /* Mobile about section */
    .about {
        padding: 80px 0;
    }
    
    .about-image {
        height: 300px;
        order: -1;
    }
    
    .feature {
        margin-bottom: 16px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    /* Mobile contact section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-method {
        margin-bottom: 24px;
        align-items: center;
    }
    
    .method-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .method-content h4 {
        margin-bottom: 4px;
        font-size: 16px;
    }
    
    /* Mobile form */
    .quote-form {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    /* Mobile reviews carousel */
    .reviews-carousel {
        padding: 80px 0;
    }
    
    .carousel-track {
        animation-duration: 20s;
        padding: 16px;
        gap: 16px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8));
        }
    }
    
    .review-card {
        min-width: 260px;
        padding: 20px;
    }
    
    .review-card::before {
        font-size: 36px;
        top: 12px;
        left: 16px;
    }
    
    .review-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .reviews-cta {
        padding: 32px 20px;
    }
    
    .reviews-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile footer */
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        font-size: 13px;
    }
    
    /* Touch-friendly improvements */
    .btn, .carousel-btn, .indicator {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Better mobile typography */
    .section-header h2 {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 13px;
        padding: 4px 12px;
    }
}

/* Ultra-wide mobile (landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-icon,
    .method-icon,
    .feature-icon {
        transform: translateZ(0); /* Hardware acceleration */
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-right {
    animation: fadeInRight 0.6s ease-out;
}

.animate-scale {
    animation: fadeInScale 0.6s ease-out;
}

.animate-down {
    animation: slideInDown 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Stagger Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Initial hidden states for animated elements */
.animate-hidden {
    opacity: 0;
}

.service-card:not(.animate-in) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.contact-method:not(.animate-in) {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.feature:not(.animate-in) {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.area-item:not(.animate-in) {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

/* Enhanced existing animations */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    animation: pulse 3s ease-in-out infinite;
}

.btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* FAQ Section for AI Optimization */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.faq-item p strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    /* Social section mobile styles */
    .footer-social {
        align-items: center;
    }
    
    .social-card {
        max-width: 100%;
        padding: 24px;
        margin-top: 20px;
    }
    
    .facebook-link {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .facebook-link svg {
        margin: 0 0 8px 0;
    }
    
    .alt-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.nav-menu a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Loading animations */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
}

/* Form animations */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Icon animations */
.service-icon,
.method-icon,
.feature-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

/* Scroll reveal setup */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced hero animations */
.hero-title:not(.animate-down) {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-subtitle:not(.animate-left) {
    opacity: 0;
    transform: translateX(-30px);
}

.stat:not(.animate-scale) {
    opacity: 0;
    transform: scale(0.8);
}

.hero-buttons:not(.animate-in) {
    opacity: 0;
    transform: translateY(30px);
}

/* Smooth transitions for all interactive elements */
.area-item,
.footer-social a,
.nav-logo,
.hero-badge {
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: scale(1.05);
    background: rgba(34, 197, 94, 0.05);
}

.footer-social .facebook-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}