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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5530;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5530;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c5530;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/kitchen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    gap: 3rem;
}

.content-wrapper {
    max-width: 600px;
    text-align: left;
    flex: 1;
}

.form-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.9s both;
}

.contact-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-form .form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form .form-group input[type="text"]:focus {
    outline: none;
    border-color: #333;
}

.checkbox-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.8rem !important;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #333;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0 !important;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #555;
}

.form-submit-btn {
    width: 100%;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.3);
}

.logo-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.logo-container {
    text-align: left;
    margin-bottom: 0.8rem;
    width: 100%;
}

.logo-wrapper {
    display: block;
    text-align: left;
    width: 100%;
}

.tagline-container {
    text-align: left;
    width: 100%;
}

.company-logo {
    max-width: 100%;
    height: auto;
    max-height: clamp(70px, 12vw, 160px);
    width: auto;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
    object-fit: contain;
    display: block;
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: left;
    margin: 0;
}

.construction-container {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s both;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.construction-card {
    text-align: left;
    max-width: 450px;
    width: 100%;
}

.construction-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.construction-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333333;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(51, 51, 51, 0.3);
}

.call-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.4);
}

.call-button i {
    font-size: 1rem;
}

/* Sections */
.section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(45deg, #f0f2f5, #e8ecef);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-kitchen {
    background: url('assets/kitchen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
}

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

.portfolio-overlay h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* About */
.about {
    background: #f8fafa;
}

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

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.about-image {
    height: 400px;
    background: url('assets/kitchen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5530;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.submit-btn {
    background: #2c5530;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e3b21;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.social-links a:hover {
    color: #2c5530;
}

.footer p {
    font-size: clamp(0.8rem, 2vw, 1rem);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        align-items: center;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 4%;
        min-height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .content-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .logo-container,
    .logo-wrapper,
    .tagline-container {
        text-align: center;
    }

    .company-logo {
        margin: 0 auto;
    }

    .tagline {
        text-align: center;
    }

    .logo-section {
        margin-bottom: 1.5rem;
    }

    .construction-container {
        margin-bottom: 1.5rem;
        text-align: center;
        justify-content: center;
    }

    .construction-card {
        max-width: 90%;
        text-align: center;
    }

    .construction-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .construction-subtitle {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }

    .call-button {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        margin: 0 auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 4%;
        gap: 1.5rem;
    }

    .logo-container {
        margin-bottom: 0.6rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .contact-buttons {
        gap: 0.8rem;
    }

    .call-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .construction-card {
        max-width: 95%;
    }

    .construction-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

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

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        padding-top: 5vh;
    }

    .company-logo {
        max-height: 50px;
    }

    .construction-card {
        max-width: 350px;
    }

    .construction-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

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

/* Large screens optimization */
@media (min-width: 1400px) {
    .content-wrapper {
        max-width: 700px;
    }

    .company-logo {
        max-height: 200px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .construction-card {
        max-width: 550px;
    }

    .construction-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .construction-subtitle {
        font-size: 1.4rem;
    }
} 