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

:root {
    /* Brand Colors - Professional Blue & White Theme */
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-top: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 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);
    height: auto;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.88) 0%, rgba(0, 52, 163, 0.82) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.trust-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.trust-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-primary:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

.btn-hero-primary {
    position: relative;
    padding: 16px 35px;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5), 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: pulseGlow 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 260px;
    justify-content: center;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff7a4a 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: none;
}

.btn-hero-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    font-size: 1.4rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-hero-secondary {
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-width: 2.5px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

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

.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(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-primary);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.service-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 232, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

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

.service-feature-list {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.service-feature {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 232, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.pricing-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent-color);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.pricing-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--accent-color);
    display: inline-block;
}

.pricing-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--accent-color);
    font-size: 1.15rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-description-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.feature-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-content strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

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

/* ============================================
   Works Section
   ============================================ */
.works {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.works-gallery-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.works-gallery {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.work-item {
    position: relative;
    min-width: 100%;
    height: 550px;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding: 3rem 2.5rem 2rem;
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.work-caption {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.work-item:hover img {
    transform: scale(1.08);
}

.work-item:hover .work-overlay {
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9) 0%, rgba(0, 52, 163, 0.7) 50%, transparent 100%);
}

.works-prev,
.works-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.works-prev {
    left: -25px;
}

.works-next {
    right: -25px;
}

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

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

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

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.reviews-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    min-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    transition: var(--transition);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 8rem;
    color: rgba(0, 102, 204, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.review-stars {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
    padding-top: 1rem;
}

.review-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.slider-btn:focus {
    outline: 3px solid rgba(0, 102, 204, 0.5);
    outline-offset: 2px;
}

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

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

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

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

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact .section-header {
    position: relative;
    z-index: 1;
}

.contact .section-label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-align: center;
}

.contact-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: white;
    display: inline-block;
}

.contact-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.4);
}

.contact-main {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-cta {
    margin-top: 2rem;
}

.btn-contact {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    padding: 20px 45px;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.contact-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   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: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

.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);
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .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: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    /* Hero Section */
    .hero {
        background-attachment: scroll;
        min-height: calc(100vh - 70px);
        height: auto;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        min-height: auto;
        padding: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .btn-hero-primary {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .hero-trust-indicators {
        gap: 1.2rem;
        padding-top: 1rem;
    }
    
    .trust-value {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    .trust-icon {
        font-size: 1rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
    }
    
    .service-icon-bg {
        width: 100px;
        height: 100px;
    }
    
    .pricing-note {
        padding: 2rem 1.5rem;
    }
    
    .pricing-icon {
        font-size: 2rem;
    }
    
    .pricing-icon svg {
        width: 2rem;
        height: 2rem;
    }
    
    /* About */
    .about-description-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .about-description {
        font-size: 1.05rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .feature-content {
        text-align: center;
    }
    
    /* Works */
    .works-gallery-wrapper {
        padding: 0 50px;
    }
    
    .work-item {
        height: 350px;
    }
    
    .work-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .work-caption {
        font-size: 1.2rem;
    }
    
    .works-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .works-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Reviews */
    .reviews-slider-wrapper {
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .review-card {
        padding: 2.5rem 1.5rem;
    }
    
    .review-card::before {
        font-size: 5rem;
        top: -5px;
        left: 20px;
    }
    
    .review-stars {
        font-size: 1.5rem;
    }
    
    .review-text {
        font-size: 1.05rem;
    }
    
    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-icon svg {
        width: 2rem;
        height: 2rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .contact-link {
        font-size: 1.3rem;
    }
    
    .btn-contact {
        padding: 18px 35px;
        font-size: 1.15rem;
        width: 100%;
        max-width: 350px;
    }
    
    .contact-note {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Spacing */
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.7rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-cta {
        margin-bottom: 1.2rem;
        gap: 0.7rem;
    }
    
    .btn-hero-primary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .hero-trust-indicators {
        gap: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .trust-value {
        font-size: 1.6rem;
    }
    
    .trust-label {
        font-size: 0.7rem;
    }
    
    .trust-icon {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .service-icon-bg {
        width: 90px;
        height: 90px;
    }
    
    .pricing-note {
        padding: 1.5rem;
    }
    
    .about-description-wrapper {
        padding: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .work-item {
        height: 300px;
    }
    
    .work-overlay {
        padding: 1.5rem;
    }
    
    .work-caption {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 2rem 1.2rem;
    }
    
    .review-card::before {
        font-size: 4rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 1.8rem;
    }
    
    .contact-icon svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .contact-link {
        font-size: 1.2rem;
    }
    
    .btn-contact {
        font-size: 1.05rem;
        padding: 16px 30px;
    }
}

/* ============================================
   Touch Swipe Support for Mobile
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .reviews-slider {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .review-card {
        scroll-snap-align: start;
    }
    
    .works-gallery {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .work-item {
        scroll-snap-align: start;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-card {
        min-width: 85%;
        scroll-snap-align: start;
        margin-right: 1rem;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

