/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
/* MODERNE GROENE KLEUREN VOOR ZONWERING */
:root {
    --primary-color: #1f4e3d;
    --secondary-color: #2d5a47;
    --accent-color: #4ade80;
    --success-color: #22c55e;
    --dark-color: #1a3d2e;
    --text-color: #1e3a2e;
    --light-color: #f0fdf4;
    --gray-color: #6b7280;
    --white: #ffffff;
    --gradient: var(--primary-color);
    --warm-taupe: #4ade80;
    --sand-beige: #dcfce7;
    --forest-green: #1f4e3d;
    --warm-gray: #6b7280;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(31, 78, 61, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--light-color);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-logo .logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 78, 61, 0.3);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > .nav-link {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown > .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 50%, #f5f2ed 100%);
    padding: 140px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    animation: backgroundMove 60s ease-in-out infinite;
}

.hero[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* Extra responsive improvements for hero */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 55vh;
    }

    .hero-content-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }

    .hero-text-centered h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95), 2px 2px 8px rgba(0, 0, 0, 0.98), 1px 1px 4px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 900;
    }

    .hero-text-centered p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95), 1px 1px 6px rgba(0, 0, 0, 0.98), 1px 1px 3px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 600;
    }

    .hero-buttons {
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }

    .btn {
        max-width: 250px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@keyframes backgroundMove {
    0%, 15% {
        background-position: center center;
    }
    30% {
        background-position: calc(center - 25px) calc(center - 30px);
    }
    45% {
        background-position: calc(center + 15px) calc(center - 25px);
    }
    60% {
        background-position: calc(center + 25px) center;
    }
    75% {
        background-position: calc(center + 20px) calc(center + 25px);
    }
    90% {
        background-position: calc(center - 15px) calc(center + 30px);
    }
    100% {
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 78, 61, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(31, 78, 61, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0.25px);
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    animation: floatContent 8s ease-in-out infinite;
}

@keyframes floatContent {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-text-centered {
    color: white;
}

.hero-text-centered h1 {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-text-centered p {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.95);
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    text-transform: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(31, 78, 61, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 78, 61, 0.35);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    text-shadow: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 78, 61, 0.15);
}

.btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 78, 61, 0.25);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 4rem;
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Design Elements */
.luxury-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.luxury-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.premium-gradient {
    background: linear-gradient(135deg, 
        var(--light-color) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        var(--cool-gray) 100%);
}

.luxury-shadow {
    box-shadow: 
        0 4px 20px rgba(37, 99, 235, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-text {
    color: var(--primary-color);
    font-weight: 700;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.services-overview {
    display: grid;
    gap: 4rem;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.services-text p {
    font-size: 1.125rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-highlights {
    display: grid;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.highlight span {
    color: var(--dark-color);
    font-weight: 500;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.services-photo:hover {
    transform: scale(1.02);
}

.image-placeholder {
    background: var(--light-color);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--gray-color);
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image-placeholder p {
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card-compact {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    text-decoration: none;
    color: var(--dark-color);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.service-card-compact i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.service-card-compact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.08);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.service-icon {
    background: var(--primary-color);
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-color);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    to { box-shadow: 0 0 30px rgba(37, 99, 235, 0.6); }
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--dark-color);
}

.about-placeholder {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 4rem;
    color: var(--white);
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.about-stats .stat-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--light-color);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
    line-height: 1.4;
}

/* Projects Section */
.projects {
    padding: 50px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.project-placeholder {
    background: var(--light-color);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.project-info p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    background: var(--gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* Modern Contact Layout */
.contact-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-left {
    padding-right: 2rem;
}

.contact-info-left h3 {
    color: var(--dark-color);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.contact-info-left > p {
    color: var(--gray-color);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.contact-item-modern > div:first-child {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.contact-item-modern > div:last-child {
    flex: 1;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-item-modern:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

    .contact-icon-modern {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
    position: relative;
    top: 0;
}
    
    @media (max-width: 768px) {
        .contact-icon-modern {
            width: 45px;
            height: 45px;
            border-radius: 10px;
        }
    }

.contact-icon-modern i {
    color: white;
    font-size: 1.2rem;
}

.contact-item-modern h4 {
    color: var(--dark-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.025em;
    margin-top: 0;
    line-height: 1.2;
}

.contact-item-modern p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    margin-top: 0;
}

.contact-item-modern a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-modern a:hover {
    color: var(--secondary-color);
}

.contact-form-right {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-color);
}

.contact-form-right h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-modern .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-modern label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-fullwidth {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Forms */
.contact-form,
.quote-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Quote Section */
.quote {
    padding: 50px 0;
    background: var(--white);
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.quote-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.form-section {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

/* Service Selection Styling */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.service-label {
    display: block;
    padding: 1.2rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-label:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.service-option input[type="radio"]:checked + .service-label {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.service-label span {
    font-size: 1rem;
    font-weight: 600;
}

/* Measurements Section */
.measurement-info {
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 0.95rem;
    border-left: 4px solid var(--primary-color);
}

.measurement-info strong {
    color: var(--primary-color);
}

/* General Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Specific measurements sections */
.specific-measurements {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.specific-measurements h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

.form-note {
    margin-top: 1rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

.dimensions-section {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.dimensions-section h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #0a1128;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-divider {
    font-size: 3rem;
    color: #334155;
    font-weight: 300;
    opacity: 0.8;
    align-self: stretch;
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
    line-height: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

.footer-bottom .beerkens-link {
    color: white;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 1rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
        border-radius: 0;
        text-align: left;
        justify-content: flex-start;
    }
    
    .dropdown > .nav-link {
        background: none;
        border: none;
        color: var(--dark-color);
        font-weight: 500;
        text-align: left;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin: 0;
        border-radius: 0;
        padding: 0;
        width: 100%;
    }
    
    .dropdown-link {
        padding: 0.75rem 3rem;
        font-size: 1rem;
        color: var(--gray-color);
        text-align: left;
    }
    
    .cta-button {
        margin: 1rem 2rem;
        display: inline-block;
        text-align: center;
        width: calc(100% - 4rem);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
        animation: none; /* Disable background animation on mobile */
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content-centered {
        max-width: 95%;
        padding: 0 20px;
        animation: none; /* Disable floating animation on mobile */
        margin-top: 0; /* Remove extra margin on mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        height: 100%;
    }
    
    .hero-text-centered h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95), 2px 2px 8px rgba(0, 0, 0, 0.98), 1px 1px 4px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 900;
    }
    
    .hero-text-centered p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95), 1px 1px 6px rgba(0, 0, 0, 0.98), 1px 1px 3px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 600;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Services Section Mobile */
    .services-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card-compact {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }
    
    .service-card-compact i {
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .service-card-compact h4 {
        font-size: 0.9rem;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-left {
        padding-right: 0;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .contact-item-modern {
        text-align: left;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        min-height: 70px;
    }
    
    .contact-item-modern > div:first-child {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.25rem;
    }
    
    .contact-item-modern > div:last-child {
        flex: 1;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .service-selection {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-label {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* General Mobile */
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-divider {
        display: none;
    }

    .footer-section {
        min-width: auto;
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile phones */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: 75vh;
        animation: none; /* Disable background animation on small mobile */
    }
    
    .hero-content-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        height: 100%;
        margin-top: 0; /* Remove margin that was pushing content down */
    }
    
    .hero-text-centered h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95), 2px 2px 8px rgba(0, 0, 0, 0.98), 1px 1px 4px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 900;
    }
    
    .hero-text-centered p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95), 1px 1px 6px rgba(0, 0, 0, 0.98), 1px 1px 3px rgba(0, 0, 0, 1);
        color: #ffffff;
        font-weight: 600;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        max-width: 250px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Services Grid for very small screens */
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card-compact {
        padding: 1.25rem 1rem;
    }
    
    /* About stats single column */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Forms */
    .contact-form,
    .quote-form {
        padding: 1rem;
        margin: 1rem 0;
    }

    .quick-contact {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.8rem;
    }

    .quick-contact-item {
        padding: 0.75rem;
    }

    .main-contact-form {
        padding: 1.5rem;
    }

    .main-contact-form h2 {
        font-size: 1.5rem;
    }

    .info-card-large {
        padding: 1.5rem;
    }

    .card-content {
        gap: 1rem;
    }

    .card-icon {
        padding: 0.75rem;
    }

    .card-icon i {
        font-size: 1.4rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-label {
        padding: 0.875rem;
        font-size: 0.85rem;
    }
    
    /* Navigation adjustments */
    .nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-link {
        padding: 0.625rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        margin: 0.75rem 1.5rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices - increase tap targets */
    .nav-link,
    .dropdown-link,
    .btn,
    .service-card-compact,
    .contact-item-modern {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card-compact {
        padding: 1.5rem;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Disable animations on touch devices for better performance */
    .hero {
        animation: none !important;
    }
    
    .hero-content-centered {
        animation: none !important;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Page Styles */
.service-hero {
    background: var(--light-color);
    padding: 140px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-hero-text h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.service-hero-text p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-icon {
    text-align: center;
    color: var(--primary-color);
    opacity: 0.8;
}

.service-hero-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image .hero-image {
    max-width: 320px;
    max-height: 220px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    transition: all 0.3s ease;
}

.service-hero-image .hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.service-hero-placeholder {
    max-width: 320px;
    max-height: 220px;
    width: 100%;
    height: 220px;
    background: var(--light-color);
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    text-align: center;
    padding: 1rem;
}

.service-hero-placeholder i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-hero-placeholder p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.service-hero-placeholder small {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.service-hero-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-content {
    display: grid;
    gap: 4rem;
}

.service-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
}

.benefit i {
    background: var(--gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
}

.service-types {
    margin-top: 4rem;
}

.service-types h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.type-icon {
    background: var(--gradient);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.type-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card ul li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.type-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-features {
    padding: 80px 0;
    background: var(--light-color);
}

.service-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    background: var(--gradient);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.service-process {
    padding: 80px 0;
    background: var(--white);
}

.service-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    background: var(--gradient);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray-color);
    line-height: 1.6;
}

.service-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 78, 61, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 78, 61, 0.4);
}

.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fabric-options {
    padding: 80px 0;
    background: var(--light-color);
}

.fabric-options h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fabric-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.fabric-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.fabric-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fabric-card ul {
    list-style: none;
    padding: 0;
}

.fabric-card ul li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.fabric-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Gallery Section */
.service-gallery {
    margin: 4rem 0;
}

.service-gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item .image-placeholder {
    aspect-ratio: 4/3;
    background: var(--light-color);
    border: 2px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-color);
    padding: 2rem;
    height: 200px;
}

.gallery-item .image-placeholder i {
    color: var(--primary-color);
    opacity: 0.6;
}

.gallery-item .image-placeholder p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .types-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page Styles */
.about-hero {
    background: var(--primary-color);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image .image-placeholder {
    aspect-ratio: 4/3;
}

.story-image .company-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.company-values {
    background: var(--light-bg);
    padding: 80px 0;
}

.company-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image .image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem !important;
}

.statistics {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.statistics h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.certifications {
    padding: 80px 0;
    background: var(--light-bg);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-cta {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Projects Page Styles */
.projects-hero {
    background: var(--primary-color);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-filters {
    padding: 40px 0;
    background: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: white;
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.projects-grid {
    padding: 80px 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image .image-placeholder {
    aspect-ratio: 4/3;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

.project-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 1rem;
}

.featured-projects {
    background: var(--light-bg);
    padding: 80px 0;
}

.featured-projects h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.featured-grid {
    display: grid;
    gap: 3rem;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    align-items: center;
}

.featured-project:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.featured-project:nth-child(even) .featured-image {
    order: 2;
}

.featured-image .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 10px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.featured-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-features {
    list-style: none;
    margin: 1.5rem 0;
}

.project-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.project-features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.project-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.project-testimonials {
    padding: 80px 0;
}

.project-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-content {
    text-align: center;
}

.testimonial i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.projects-cta {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.projects-cta-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(31, 78, 61, 0.1);
    border: 1px solid rgba(31, 78, 61, 0.1);
}

.projects-cta-card h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.projects-cta-card p {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.projects-cta-card .btn-secondary {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 78, 61, 0.15);
}

.projects-cta-card .btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 78, 61, 0.25);
}

/* Contact Page Styles */
.contact-hero {
    background: var(--primary-color);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-content {
    padding: 60px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-content input,
.contact-content textarea,
.contact-content select {
    text-align: left;
}

/* Quick Contact Bar */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(31, 78, 61, 0.08);
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(31, 78, 61, 0.1);
}

.quick-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(31, 78, 61, 0.1);
    box-shadow: 0 4px 15px rgba(31, 78, 61, 0.08);
}

.quick-contact-item:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.quick-contact-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quick-contact-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Centered Contact Layout */
.contact-form-centered {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 4rem;
    text-align: center;
}

/* Main Contact Form */
.main-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    border: 1px solid var(--cool-gray);
}

.main-contact-form h2 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.025em;
}

.main-contact-form p {
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.7;
}

/* Modern Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.modern-contact-form select {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.modern-contact-form textarea {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
    width: 100%;
}

.modern-contact-form textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.privacy-check input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

/* Contact Info Bottom Section */
.contact-info-bottom {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 160px;
}

.info-card-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.info-card-large.primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.info-card-large.primary .card-text h3,
.info-card-large.primary .card-text p,
.info-card-large.primary .card-text span,
.info-card-large.primary .card-text a,
.info-card-large.primary .card-icon i {
    color: white;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    text-align: center;
}

.card-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-card-large:not(.primary) .card-icon {
    background: var(--light-color);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: block;
}

.card-text {
    flex: 1;
    text-align: center;
}

.card-text h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    line-height: 1.2;
}

.card-text p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1rem;
}

.card-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.card-text a:hover {
    text-decoration: underline;
}

.info-card-large.primary .card-text a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.card-text span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details small {
    color: #666;
    display: block;
    margin-top: 0.25rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-container h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.form-submit {
    margin-top: 1.5rem;
    text-align: center;
}

.map-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    background: white;
    border-radius: 10px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-info {
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-faq {
    padding: 60px 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Additional service page styles */
.service-benefits-extra {
    background: var(--light-bg);
    padding: 80px 0;
}

.benefits-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Technical specs section */
.technical-specs {
    background: var(--light-bg);
    padding: 80px 0;
}

.specs-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.spec-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.spec-item ul {
    list-style-type: none;
}

.spec-item li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}

.spec-item li:last-child {
    border-bottom: none;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .story-content,
    .contact-grid,
    .featured-project {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .featured-project:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .featured-project:nth-child(even) .featured-image {
        order: 0;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .quick-contact-item {
        justify-content: center;
        text-align: center;
    }

    .contact-form-centered {
        margin-bottom: 3rem;
    }

    .main-contact-form {
        padding: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .submit-btn {
        width: 100%;
    }

    .info-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card-large {
        min-height: auto;
    }
    
    .project-stats {
        justify-content: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .projects-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .projects-cta-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .projects-cta-card h2 {
        font-size: 2rem;
    }
    
    .projects-cta-card p {
        font-size: 1rem;
    }
}

/* Modern Service Page Styles */
.modern-service-hero {
    background: var(--primary-color);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.modern-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.modern-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.modern-hero-text {
    color: white;
}

.modern-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-hero-text h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.modern-hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modern-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modern-hero-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
    text-shadow: none;
}

.modern-hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31, 78, 61, 0.4);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modern-hero-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    text-shadow: none;
    font-weight: 700;
}

.modern-hero-buttons .btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31, 78, 61, 0.2);
}

.modern-hero-image {
    position: relative;
}

.modern-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.modern-hero-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modern-hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-placeholder-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-placeholder-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modern Service Content */
.modern-service-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.service-intro-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-intro-modern h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-intro-modern p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Modern Type Cards */
.modern-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.modern-type-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.modern-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.modern-type-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modern-type-icon i {
    font-size: 2rem;
    color: white;
}

.modern-type-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modern-type-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modern-feature-list {
    list-style: none;
    padding: 0;
}

.modern-feature-list li {
    color: #475569;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Benefits Section */
.modern-benefits-section {
    padding: 4rem 0;
    background: white;
}

.modern-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.modern-benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.modern-benefit-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.modern-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.modern-benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.modern-benefit-card h4 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modern-benefit-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Modern CTA Section */
.modern-cta-section {
    background: var(--primary-color);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.modern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

.modern-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.modern-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modern-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.modern-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modern-cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modern-cta-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
    text-shadow: none;
}

.modern-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31, 78, 61, 0.4);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modern-cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    text-shadow: none;
    font-weight: 700;
}

.modern-cta-buttons .btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31, 78, 61, 0.2);
}

.modern-cta-contact {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.modern-cta-contact strong {
    color: white;
    font-weight: 700;
}

/* Responsive Design for Modern Service Pages */
@media (max-width: 768px) {
    .modern-service-hero {
        padding: 6rem 0 4rem;
    }
    
    .modern-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .modern-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .modern-hero-text p {
        font-size: 1.1rem;
    }
    
    .modern-hero-buttons {
        justify-content: center;
    }
    
    .modern-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-type-card {
        padding: 2rem;
    }
    
    .service-intro-modern h2 {
        font-size: 2rem;
    }
    
    .modern-cta-content h2 {
        font-size: 2rem;
    }
    
    .modern-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .modern-service-hero {
        padding: 5rem 0 3rem;
    }
    
    .modern-hero-text h1 {
        font-size: 2rem;
    }
    
    .modern-hero-visual {
        padding: 2rem;
        min-height: 300px;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .modern-types-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-type-card {
        padding: 1.5rem;
    }
    
    .modern-benefit-card {
        padding: 1.5rem;
    }
}

/* Modern Service Process Section */
.modern-service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.modern-service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(37, 99, 235, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>') repeat;
    opacity: 0.5;
}

.modern-process-content {
    position: relative;
    z-index: 2;
}

.modern-process-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.modern-process-header h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.modern-process-header p {
    font-size: 1.125rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.modern-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.modern-process-steps::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: 0;
}

.modern-process-step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.08);
    z-index: 1;
}

.modern-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.6;
}

.modern-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

.modern-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    position: relative;
}

.modern-step-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.05); opacity: 0.08; }
}

.modern-process-step h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.modern-process-step p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.modern-step-icon {
    background: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Responsive Design for Process Steps */
@media (max-width: 1024px) {
    .modern-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .modern-process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .modern-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-process-step {
        padding: 2rem 1.5rem;
    }
    
    .modern-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .modern-process-header h2 {
        font-size: 2rem;
    }
    
    .modern-process-header p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .modern-process-step {
        padding: 1.5rem 1rem;
    }
    
    .modern-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .modern-process-header h2 {
        font-size: 1.75rem;
    }
}

/* Service Statistics Header */
.service-stats-header {
    text-align: center !important;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-stats-header h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: var(--dark-color) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
}

.service-stats-header p {
    font-size: 1.125rem !important;
    color: var(--gray-color) !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Service Statistics Grid */
.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .service-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 
