/* ============================================
   DCL House Cleaning Services - Main Stylesheet
   ============================================ */

/* CSS Variables for Brand Colors */
:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1e3f73;
    --primary-light: #4a7bc8;
    --accent-color: #00a86b;
    --accent-dark: #007a4f;
    --accent-light: #00d98b;
    --secondary-color: #ff6b6b;
    --tertiary-color: #4ecdc4;
    --purple-accent: #9b59b6;
    --orange-accent: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link.cta-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    margin-left: 1rem;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.88) 0%, rgba(0, 168, 107, 0.85) 50%, rgba(30, 63, 115, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rating-badge,
.experience-badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text,
.experience-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.experience-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-secondary > * {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, white, #f0f0f0);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-block {
    width: 100%;
}

.hero-testimonial-snippet {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    animation: fadeInUp 1.4s ease;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: none;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(20px);
    }
}

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

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 25%, #fff5f0 50%, #f0f7ff 75%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(44, 90, 160, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 107, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--tertiary-color), var(--purple-accent));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

    .section-title::before,
    .section-title::after {
        display: none;
    }

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.service-card:nth-child(1) {
    border-top: 4px solid var(--primary-color);
}

.service-card:nth-child(2) {
    border-top: 4px solid var(--accent-color);
}

.service-card:nth-child(3) {
    border-top: 4px solid var(--tertiary-color);
}

.service-card:nth-child(4) {
    border-top: 4px solid var(--purple-accent);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.service-card:nth-child(1):hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.3);
}

.service-card:nth-child(2):hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.3);
}

.service-card:nth-child(3):hover {
    border-color: var(--tertiary-color);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
}

.service-card:nth-child(4):hover {
    border-color: var(--purple-accent);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.25);
    transition: all 0.4s ease;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.3);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--tertiary-color), #6eddd6);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--purple-accent), #b47dd6);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-home::before {
    border-radius: 0;
    width: 40%;
    height: 40%;
    border: none;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateY(-5px);
}

.icon-deep::before {
    width: 60%;
    height: 60%;
    border-width: 4px;
    border-style: double;
}

.icon-move::before {
    width: 45%;
    height: 45%;
    border-radius: 5px;
    border: 3px solid white;
    background: white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.icon-specialized::before {
    width: 50%;
    height: 50%;
    border: none;
    background: white;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:nth-child(1) h3::after {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.service-card:nth-child(2) h3::after {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.service-card:nth-child(3) h3::after {
    background: linear-gradient(90deg, var(--tertiary-color), #6eddd6);
}

.service-card:nth-child(4) h3::after {
    background: linear-gradient(90deg, var(--purple-accent), #b47dd6);
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.6;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    padding-left: 2.6rem;
    color: var(--text-dark);
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff5f0 0%, #f0f7ff 25%, #e8f5e9 50%, #fff5f0 75%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.feature-item:nth-child(1) {
    border-left-color: var(--primary-color);
}

.feature-item:nth-child(2) {
    border-left-color: var(--accent-color);
}

.feature-item:nth-child(3) {
    border-left-color: var(--tertiary-color);
}

.feature-item:nth-child(4) {
    border-left-color: var(--purple-accent);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:nth-child(1)::before {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.feature-item:nth-child(2)::before {
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
}

.feature-item:nth-child(3)::before {
    background: linear-gradient(180deg, var(--tertiary-color), #6eddd6);
}

.feature-item:nth-child(4)::before {
    background: linear-gradient(180deg, var(--purple-accent), #b47dd6);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(44, 90, 160, 0.15);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h4::before {
    content: '◆';
    color: var(--accent-color);
    font-size: 0.8rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scale(1.2);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 45px rgba(44, 90, 160, 0.4);
}

.stat-card:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.3);
}

.stat-card:nth-child(1):hover {
    box-shadow: 0 15px 45px rgba(44, 90, 160, 0.4);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 8px 30px rgba(0, 168, 107, 0.3);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 15px 45px rgba(0, 168, 107, 0.4);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, var(--tertiary-color), #6eddd6);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.3);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 15px 45px rgba(78, 205, 196, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   Portfolio/Work Gallery Section
   ============================================ */

.portfolio {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff5f0 25%, #e8f5e9 50%, #f0f7ff 75%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(44, 90, 160, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: var(--bg-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(44, 90, 160, 0.25);
    border-color: var(--primary-color);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.95), rgba(0, 168, 107, 0.9), rgba(78, 205, 196, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-icon {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f0f7ff 25%, #fff5f0 50%, #e8f5e9 75%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(44, 90, 160, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-card {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
    border-color: var(--accent-color);
    box-shadow: 0 15px 50px rgba(0, 168, 107, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 168, 107, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 25%, #fff5f0 50%, #f0f7ff 75%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundShift 20s ease infinite;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 168, 107, 0.2);
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: normal;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 0.75rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    position: relative;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    margin-bottom: 0;
}

.form-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(44, 90, 160, 0.1);
    border-top: none;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.label-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.label-icon i {
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.15), 0 4px 20px rgba(0, 168, 107, 0.25);
    transform: translateY(-2px);
    background: linear-gradient(to bottom, #ffffff, #f0fff4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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='%2300a86b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-light);
    box-shadow: 0 2px 8px rgba(0, 168, 107, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.info-card-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.2);
}

.info-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    text-align: center;
}

.info-card-header h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.info-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.info-items {
    padding: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.info-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.2);
    color: white;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.info-card-footer {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card-footer strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(44, 90, 160, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.map-header {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.map-header h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

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

.map-container iframe {
    width: 100%;
    border: none;
    display: block;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-rating .stars {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    /* Base Mobile Styles */
    .container {
        padding: 0 15px;
    }

    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link.cta-nav {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        height: auto;
        margin-top: 70px;
        padding: 2rem 0 3rem;
        overflow: visible;
        align-items: flex-start;
        padding-top: 2rem;
        display: flex;
    }

    .hero-background {
        background-attachment: scroll;
        position: absolute;
        height: 100%;
        min-height: 100%;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-headline {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .trust-indicators {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .rating-badge,
    .experience-badge {
        padding: 0.7rem 0.9rem;
        flex: 0 1 auto;
        min-width: 120px;
        max-width: 150px;
    }

    .experience-number {
        font-size: 1.5rem;
    }

    .stars {
        font-size: 1rem;
    }

    .rating-text,
    .experience-text {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .hero-testimonial-snippet {
        padding: 1rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    /* Services Mobile - Better Card Layout */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-top-width: 5px;
        margin: 0;
        background: white;
        border: 2px solid rgba(44, 90, 160, 0.1);
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
    }

    .service-card:nth-child(1) {
        border-top-color: var(--primary-color);
        border-color: rgba(44, 90, 160, 0.15);
    }

    .service-card:nth-child(2) {
        border-top-color: var(--accent-color);
        border-color: rgba(0, 168, 107, 0.15);
    }

    .service-card:nth-child(3) {
        border-top-color: var(--tertiary-color);
        border-color: rgba(78, 205, 196, 0.15);
    }

    .service-card:nth-child(4) {
        border-top-color: var(--purple-accent);
        border-color: rgba(155, 89, 182, 0.15);
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin-top: 1.5rem;
    }

    .service-features li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
        padding-left: 2.5rem;
        line-height: 1.6;
    }

    .service-features li::before {
        left: 0.5rem;
        width: 22px;
        height: 22px;
        font-size: 0.95rem;
    }

    /* Portfolio Mobile - Single Image Slider */
    .portfolio {
        padding: 3rem 0;
    }

    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1rem 0 1.5rem;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
        scrollbar-width: none;
        grid-template-columns: none;
    }

    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .portfolio-item {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2.5rem;
    }

    /* About Mobile */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding-left: 1.5rem;
        border-left-width: 4px;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border-left-width: 5px;
        transition: all 0.3s ease;
        background: white;
        border: 2px solid rgba(44, 90, 160, 0.1);
    }

    .feature-item:nth-child(1) {
        border-color: rgba(44, 90, 160, 0.15);
    }

    .feature-item:nth-child(2) {
        border-color: rgba(0, 168, 107, 0.15);
    }

    .feature-item:nth-child(3) {
        border-color: rgba(78, 205, 196, 0.15);
    }

    .feature-item:nth-child(4) {
        border-color: rgba(155, 89, 182, 0.15);
    }

    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    }

    .feature-item h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .feature-item h4::before {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-light);
    }

    /* Hide stats cards on mobile */
    .about-stats {
        display: none;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-slider {
        padding: 0 2rem;
        margin: 0 -15px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-btn-prev {
        left: 5px;
    }

    .slider-btn-next {
        right: 5px;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 80px;
        top: -10px;
        left: 20px;
    }

    .testimonial-rating {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 3rem 0;
    }

    .contact-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .contact-trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .trust-badge-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .trust-icon i {
        font-size: 0.65rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .form-header {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .form-footer {
        font-size: 0.8rem;
    }

    .info-card-header {
        padding: 1.5rem;
    }

    .info-card-header h3 {
        font-size: 1.3rem;
    }

    .info-items {
        padding: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.8rem;
    }

    .info-icon {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .info-content {
        text-align: center;
    }

    .info-card-footer {
        padding: 1.5rem;
        text-align: center;
    }

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

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .map-header {
        padding: 1.2rem 1.5rem;
    }

    .map-header h4 {
        font-size: 1.2rem;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0;
        line-height: 1.3;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0;
        line-height: 1.6;
    }

    .section-header::after {
        width: 60px;
    }

    /* Services Section Mobile */
    .services {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }

    .lead-text {
        font-size: 1.1rem;
        padding-left: 1rem;
        border-left-width: 3px;
    }

    .feature-item {
        padding: 1.8rem 1.3rem;
        border-radius: 15px;
    }

    .feature-item h4 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
    }

    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .about-stats {
        display: none;
    }

    /* Portfolio Section Mobile */
    .portfolio {
        padding: 4rem 0;
    }

    /* Testimonials Section Mobile */
    .testimonials {
        padding: 4rem 0;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
    }

    .contact-header-content {
        padding: 0 1rem;
    }

    .contact-header-content .section-title {
        font-size: 1.75rem;
    }

    .contact-header-content .section-subtitle {
        font-size: 0.95rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .hero-content {
        padding: 1rem 0.75rem;
    }

    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .trust-indicators {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .rating-badge,
    .experience-badge {
        padding: 0.6rem 0.8rem;
        min-width: 110px;
        max-width: 140px;
    }

    .experience-number {
        font-size: 1.3rem;
    }

    .stars {
        font-size: 0.9rem;
    }

    .rating-text,
    .experience-text {
        font-size: 0.75rem;
    }

    .hero-cta {
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-testimonial-snippet {
        padding: 0.8rem;
        margin: 0.5rem 0.5rem 1rem;
        width: calc(100% - 1rem);
    }

    .testimonial-quote {
        font-size: 0.85rem;
    }

    .testimonial-author {
        font-size: 0.75rem;
    }

    .service-card {
        width: 100%;
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

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

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2.5rem;
        line-height: 1.6;
    }

    .service-features li::before {
        left: 0.5rem;
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-header-content .section-title {
        font-size: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .info-card-header h3 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat-card {
        min-width: 180px;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* ============================================
   Accessibility & Performance
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        background-attachment: scroll;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .contact-form,
    .footer {
        display: none;
    }
}

