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

:root {
    /* Brand Colors from Logo */
    --primary-dark: #112d4e;
    --warm-brown: #945f50;
    --light-peach: #fcc5b3;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --accent-orange: #e67e22;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.home-icon-link {
    display: flex;
    align-items: center;
    padding: 8px 16px !important;
    height: 100%;
}

.home-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-icon-link:hover .home-icon {
    transform: scale(1.15);
    opacity: 0.8;
}

.home-icon-link::after {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-phone {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgb(255, 230, 208);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(255, 230, 208, 0.3);
}

.phone-link:hover {
    background: rgb(245, 220, 198);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 230, 208, 0.4);
}

.phone-link i {
    font-size: 0.9rem;
}

.mobile-phone {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--warm-brown);
    background-color: rgba(148, 95, 80, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--warm-brown), var(--accent-orange));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--warm-brown) 100%);
    color: var(--white);
    padding: 140px 0 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.3) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-peach);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--warm-brown);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(148, 95, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: min(500px, 40vw);
    height: min(500px, 40vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Construction Icons Animation */
.construction-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.construction-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(252, 197, 179, 0.3);
    animation: float 6s ease-in-out infinite;
}

.construction-icon i {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.construction-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.construction-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.construction-icon-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.construction-icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Main Logo Container */
.hero-logo-main {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: min(40px, 8vw) min(30px, 6vw);
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(252, 197, 179, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: logoGlow 4s ease-in-out infinite;
    width: 100%;
    max-width: min(350px, 30vw);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(252, 197, 179, 0.2);
    }
    50% {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(252, 197, 179, 0.4);
    }
}

.hero-logo {
    height: min(100px, 15vw);
    width: auto;
    max-width: min(280px, 25vw);
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

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

.logo-badge {
    background: linear-gradient(135deg, var(--warm-brown), var(--accent-orange));
    color: var(--white);
    padding: min(8px, 1.5vw) min(20px, 4vw);
    border-radius: 20px;
    font-size: min(0.9rem, 2.5vw);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(148, 95, 80, 0.3);
    display: inline-block;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: rgba(17, 45, 78, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: min(20px, 4vw);
    border: 1px solid rgba(252, 197, 179, 0.2);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: min(1.5rem, 4vw);
    font-weight: 700;
    color: var(--light-peach);
    margin-bottom: 5px;
}

.stat-label {
    font-size: min(0.8rem, 2.2vw);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legacy placeholder styles for compatibility */
.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--warm-brown));
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Floating Cards Container */
.floating-cards-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--warm-brown) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 180px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.floating-card p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Card positioning */
.card-1 {
    top: 20px;
    left: 20px;
    animation: float1 8s ease-in-out infinite;
}

.card-2 {
    top: 20px;
    right: 20px;
    animation: float2 10s ease-in-out infinite;
}

.card-3 {
    bottom: 20px;
    left: 20px;
    animation: float3 12s ease-in-out infinite;
}

.card-4 {
    bottom: 20px;
    right: 20px;
    animation: float4 9s ease-in-out infinite;
}

.card-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float5 11s ease-in-out infinite;
}


/* Floating animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(2deg);
    }
    50% {
        transform: translate(-10px, -25px) rotate(-1deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(1deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-25px, 20px) rotate(-2deg);
    }
    50% {
        transform: translate(15px, 30px) rotate(1deg);
    }
    75% {
        transform: translate(25px, 15px) rotate(-1deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 20px) rotate(1deg);
    }
    50% {
        transform: translate(-20px, 15px) rotate(-2deg);
    }
    75% {
        transform: translate(-30px, -10px) rotate(1deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-15px, -20px) rotate(-1deg);
    }
    50% {
        transform: translate(20px, -30px) rotate(2deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(-1deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-30%, -40%) rotate(3deg);
    }
    50% {
        transform: translate(-70%, -60%) rotate(-2deg);
    }
    75% {
        transform: translate(-40%, -70%) rotate(1deg);
    }
}


/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--warm-brown);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--warm-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

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

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--background-light);
}

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

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.project-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.view-gallery-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-brown);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.project-link:hover .view-gallery-btn {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.view-gallery-btn i {
    transition: transform 0.3s ease;
}

.project-link:hover .view-gallery-btn i {
    transform: translateX(3px);
}

.project-image {
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-single-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-link:hover .project-single-image {
    transform: scale(1.05);
}

.project-gallery {
    width: 100%;
    height: 100%;
}

.project-before-after {
    display: flex;
    height: 100%;
    position: relative;
}

.before-image,
.after-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before-image:hover img,
.after-image:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-placeholder {
    text-align: center;
    color: var(--white);
}

.project-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--text-light);
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Cabinet Design & Sales Page Styles */
.cabinetry-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--warm-brown) 100%);
    color: var(--white);
    text-align: center;
}

.cabinetry-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cabinetry-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cabinetry-content {
    padding: 80px 0;
    background: white;
}

.cabinetry-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.cabinetry-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.cabinetry-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-cta {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.consultation-cta h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.consultation-cta p {
    color: var(--text-light);
    font-style: italic;
}

.consultation-link {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--warm-brown) 100%);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultation-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cabinet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.cabinet-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.cabinet-type:hover {
    transform: translateY(-5px);
}

.cabinet-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--warm-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cabinet-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cabinet-type h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cabinet-type p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cabinetry-cta {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.cabinetry-cta h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cabinetry-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--warm-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-brown);
}

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

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(252, 197, 179, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--light-peach);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 70px;
    }

    /* Company name moved to hero section */

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-phone {
        display: none;
    }

    .mobile-phone {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .phone-link-mobile {
        background: rgb(255, 230, 208) !important;
        color: var(--primary-dark) !important;
        font-weight: 600 !important;
        padding: 12px 20px !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        box-shadow: 0 2px 8px rgba(255, 230, 208, 0.3) !important;
    }

    .phone-link-mobile:hover {
        background: rgb(245, 220, 198) !important;
        color: var(--primary-dark) !important;
        box-shadow: 0 4px 12px rgba(255, 230, 208, 0.4) !important;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 12px 20px;
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .hamburger {
        order: 2;
        margin-left: auto;
    }

    .nav-logo {
        height: 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }

    .hero-logo {
        height: 180px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .floating-cards-container {
        height: 400px;
        margin-top: 2rem;
    }

    .floating-card {
        width: 140px;
        height: 100px;
        padding: 20px 15px;
    }

    .floating-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .floating-card p {
        font-size: 0.9rem;
    }

    .card-1, .card-2, .card-3, .card-4, .card-5 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 10px;
        transform: none;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-placeholder {
        padding: 40px 20px;
    }

    .hero-visual-container {
        height: min(400px, 60vw);
        max-width: min(400px, 60vw);
    }

    .hero-logo-main {
        padding: min(30px, 6vw) min(20px, 4vw);
        max-width: min(300px, 50vw);
    }

    .hero-logo {
        height: min(80px, 12vw);
        max-width: min(250px, 40vw);
    }

    .construction-icon {
        width: 50px;
        height: 50px;
    }

    .construction-icon i {
        font-size: 1.2rem;
    }

    .hero-stats {
        padding: min(15px, 3vw);
    }

    .stat-number {
        font-size: min(1.2rem, 3.5vw);
    }

    .stat-label {
        font-size: min(0.7rem, 2vw);
    }


    .footer-logo {
        height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 35px;
    }

    .hero-logo {
        height: 135px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
