/* ==========================================
   PREMIUM CONSTRUCTION WEBSITE STYLES
   Everything Waste - London's Premier Clearance & Demolition
   ========================================== */

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

:root {
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-green-light: #4ade80;
    --accent-green: #10b981;
    --dark-green: #065f46;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --gray: #6b7280;
    --dark-gray: #1f2937;
    --black: #111827;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--dark-gray);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green);
}

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

.cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    text-align: left;
}

.feature-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 14px;
    opacity: 0.8;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 14px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

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

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* ==========================================
   TRUST BADGES
   ========================================== */
.trust-section {
    background: var(--light-gray);
    padding: 40px 0;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.trust-badge:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 32px;
}

.badge-text strong {
    display: block;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.badge-text span {
    font-size: 14px;
    color: var(--gray);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 32px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    color: var(--white);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.process-step:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.step-icon {
    font-size: 48px;
    margin: 20px 0;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 14px 32px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.tab-btn:hover {
    border-color: var(--primary-green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.project-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray);
}

/* ==========================================
   PROJECT IMAGE SLIDER
   ========================================== */
.project-image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.slider-image.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
}

.project-card:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 12px;
}

.next-btn {
    right: 12px;
}

.slider-btn svg {
    color: var(--primary-green);
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8faf8 0%, #f0f4f0 100%);
    overflow: hidden;
}

.testimonial-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.testimonial-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.testimonial-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
}

.testimonial-rating {
    font-size: 10px;
    color: #f59e0b;
    letter-spacing: 1px;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.testimonial-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.testimonial-nav:hover svg {
    stroke: white;
}

.testimonial-nav svg {
    stroke: #666;
    transition: stroke 0.3s ease;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.testimonial-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* ==========================================
   LIGHTBOX / IMAGE GALLERY MODAL
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Make slider images clickable */
.slider-image {
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 32px;
        width: 44px;
        height: 44px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.why-choose-list {
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.why-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 14px;
    color: var(--gray);
}

/* Desktop/tablet: show desktop-only, hide mobile-only */
.mobile-only {
    display: none;
}

.desktop-only {
    display: grid;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-details-title {
    display: none;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

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

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

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

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

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

.footer-about {
    max-width: 350px;
}

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

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-4px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    padding-left: 8px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* ==========================================
   CHAT WIDGET
   ========================================== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.chat-button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    transition: var(--transition);
}

.chat-button:hover {
    background: var(--primary-green-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 500px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.chat-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    flex-shrink: 0;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-body {
    flex: 1;
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.chat-message {
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.chat-message p {
    margin: 0;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.bot-message {
    display: flex;
    justify-content: flex-start;
}

.bot-message p {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 12px 4px;
    max-width: 85%;
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

.user-message p {
    background: var(--primary-green);
    color: var(--white);
    border-radius: 12px 12px 4px 12px;
    max-width: 85%;
}

.chat-footer {
    padding: 16px;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.chat-footer input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.chat-send {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover {
    background: var(--primary-green-dark);
    transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .project-gallery,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Reduce section padding on mobile */
    section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .container {
        padding: 0 16px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }

    .nav-menu {
        display: none;
    }

    .nav-container {
        height: 65px;
        padding: 0 16px;
    }

    .logo img {
        height: 40px !important;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero {
        min-height: 85vh;
        padding: 80px 0 60px !important;
    }

    .hero-content {
        padding: 0 16px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    /* Section headers - centered */
    .section-header {
        margin-bottom: 32px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 15px;
        max-width: 100%;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 12px;
        display: inline-block;
    }

    /* Trust badges - horizontal scroll or 2-column grid */
    .trust-section {
        padding: 24px 0 !important;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-badge {
        padding: 14px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .badge-icon {
        font-size: 24px;
    }

    .badge-text {
        text-align: center;
    }

    .badge-text strong {
        font-size: 13px;
        display: block;
    }

    .badge-text span {
        font-size: 11px;
    }

    /* Process section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-step {
        padding: 32px 20px 24px;
        text-align: center;
    }

    .step-number {
        top: -18px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-icon {
        font-size: 36px;
        margin: 12px 0;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Project tabs - horizontal scroll */
    .project-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
    }

    .project-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Project gallery and cards */
    .project-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        border-radius: 12px;
    }

    .project-image-slider {
        height: 220px;
    }

    /* IMPORTANT: Always show slider arrows on mobile */
    .slider-btn {
        opacity: 1 !important;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .prev-btn {
        left: 8px;
    }

    .next-btn {
        right: 8px;
    }

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

    .slider-dots {
        bottom: 12px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 18px;
    }

    .project-badge {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 10px;
    }

    .project-info {
        padding: 16px;
    }

    .project-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .project-info p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Testimonials */
    .testimonial-slider-wrapper {
        gap: 12px;
        padding: 0 10px;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
    }

    .testimonial-nav svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .quote-icon {
        font-size: 48px;
        top: 15px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
    }

    .author-info strong {
        font-size: 13px;
        margin-bottom: 12px;
    }

    /* FAQ */
    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
        text-align: left;
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* =============================================
       CONTACT SECTION - MOBILE REDESIGN
       ============================================= */
    .contact-section {
        padding: 40px 0 !important;
        background: var(--light-gray);
    }

    .contact-section .section-header {
        display: none; /* Hide the duplicate header on mobile */
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Hide desktop contact details, show mobile ones */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Why Choose section - appears FIRST, centered */
    .contact-info {
        background: var(--white);
        padding: 20px 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        order: 1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-info h3 {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: var(--dark-gray);
    }

    .why-choose-list {
        margin-bottom: 0;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .why-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
        border-radius: 6px;
        background: var(--primary-green);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-item strong {
        font-size: 14px;
        color: var(--dark-gray);
        display: block;
        margin-bottom: 2px;
    }

    .why-item p {
        font-size: 12px;
        color: var(--gray);
        line-height: 1.4;
        margin: 0;
    }

    /* Quote Form - appears SECOND */
    .contact-form {
        background: var(--white);
        padding: 24px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        order: 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-form::before {
        content: "Request Your Free Quote";
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: var(--dark-gray);
        text-align: center;
        margin-bottom: 8px;
    }

    .contact-form::after {
        content: "Fill out the form below and we'll get back to you within 1 hour";
        display: block;
        font-size: 13px;
        color: var(--gray);
        text-align: center;
        margin-bottom: 24px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

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

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark-gray);
        display: block;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom */
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        background: var(--white);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

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

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

    .contact-form .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 8px;
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Contact details inside form card on mobile */
    .contact-form .contact-details.mobile-only {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid #e5e7eb;
        display: flex !important;
        flex-direction: column;
        gap: 12px;
    }

    .contact-details-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray);
        text-align: center;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-form .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: linear-gradient(135deg, #f8faf8 0%, #f0f7f0 100%);
        border-radius: 10px;
        border: 1px solid rgba(34, 197, 94, 0.1);
        transition: all 0.2s ease;
    }

    .contact-form .contact-item:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 100%);
    }

    .contact-form .contact-item svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        color: var(--primary-green);
    }

    .contact-form .contact-item > div {
        display: flex;
        flex-direction: column;
    }

    .contact-form .contact-item strong {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--gray);
        margin-bottom: 2px;
    }

    .contact-form .contact-item p {
        font-size: 15px;
        color: var(--dark-gray);
        font-weight: 600;
        margin: 0;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 16px;
        margin-top: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Chat widget adjustments */
    #chatButton {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    #chatWindow {
        width: calc(100vw - 32px);
        max-width: 360px;
        height: 420px;
        bottom: 80px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        height: 60px;
    }

    .logo img {
        height: 36px !important;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero {
        min-height: 80vh;
        padding: 60px 0 40px !important;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 13px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    /* Trust badges - stack on very small screens */
    .trust-section {
        padding: 20px 0 !important;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trust-badge {
        padding: 12px 8px;
    }

    .badge-icon {
        font-size: 20px;
    }

    .badge-text strong {
        font-size: 12px;
    }

    .badge-text span {
        font-size: 10px;
    }

    /* Process steps */
    .process-steps {
        gap: 28px;
    }

    .process-step {
        padding: 28px 16px 20px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: -16px;
    }

    .step-icon {
        font-size: 32px;
        margin: 8px 0;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 13px;
    }

    /* Project tabs */
    .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Project cards */
    .project-image-slider {
        height: 200px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Testimonials */
    .testimonial-nav {
        display: none;
    }

    .testimonial-slider-wrapper {
        padding: 0;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .quote-icon {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-author img {
        width: 36px;
        height: 36px;
    }

    /* FAQ */
    .faq-question {
        padding: 14px 12px;
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* Contact section - small phones */
    .contact-section {
        padding: 32px 0 !important;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-info {
        padding: 16px 14px;
    }

    .contact-info h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .why-item {
        padding: 10px 0;
        gap: 10px;
    }

    .why-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }

    .why-item strong {
        font-size: 13px;
    }

    .why-item p {
        font-size: 11px;
    }

    .contact-details {
        gap: 8px;
        padding-top: 14px;
    }

    .contact-item {
        padding: 10px;
    }

    .contact-item svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .contact-item strong {
        font-size: 10px;
    }

    .contact-item p {
        font-size: 13px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .contact-form::before {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .contact-form::after {
        font-size: 12px;
        margin-bottom: 20px;
    }

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

    .form-group label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

    .contact-form .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 16px !important;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-links h4 {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Chat widget */
    #chatButton {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }

    #chatWindow {
        width: calc(100vw - 24px);
        height: 380px;
        bottom: 70px;
        right: 12px;
    }
}

/* Smooth scrolling offset for sticky nav */
section {
    scroll-margin-top: 80px;
}
