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

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

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

.wide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    padding: 2.5rem 7rem;
    width: 100%;
}

.logo {
    font-size: 2.4rem;
    font-weight: bold;
    color: #ff7949;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo::before {
    /* THIS IS WHERE YOU WILL PUT THE LOGO */
}

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

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

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

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

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}


/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.section-content {
    margin-top: 10vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.text-content {
    max-width: 100%;
    word-wrap: break-word;
    text-align: center;
}

.text-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.text-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: clamp(12px, 3vw, 18px) clamp(20px, 5vw, 35px);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.visual-element {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.visual-element:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.6);
}

.icon {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url(images/contractor-relations.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 120px;
}

#hero .section-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

#hero h1 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

#hero p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* About Section */
#about {
    background-size: cover;
    background-position: center;
}

/* Portfolio Section */
#portfolio {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/working-together.jpg);
    background-size: cover; 
    background-position: center 20%; 
    background-repeat: no-repeat;
}

.portfolio-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.service-item {
    font-size: 1.8rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.portfolio-item h3 {
    color: white;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio-item p {
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
}

/* Services Section */
#services {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('https://images.unsplash.com/photo-1572774108725-bd56be2c2876?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

#services h2,
#services p {
    color: #333;
    text-shadow: none;
}

#services .main-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.main-title-2 {
    text-align: center;
    color: white;
    padding-bottom: 2rem;
}

#services ul {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    list-style: none;
    color: #333;
    margin-left: 0;
}

#services li {
    color: #333;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    word-wrap: break-word;
}

#services li::before {
    content: "🔧";
    position: absolute;
    left: 0;
    top: 0;
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(rgba(255, 107, 53, 0.9), rgba(102, 102, 102, 0.9)), 
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.step-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.step-item h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: white;
}

.step-item p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: white;
}

/* Contact Section */
#contact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url(images/contact-background.png);
    background-size: cover;
    background-position: center;
}

.language-button:hover {
    cursor: pointer;
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 4rem);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.contact-form h2 {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-group {
    margin-bottom: 2rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.submit-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

/* Footer */
.footer {
    background-color: #333;
    display: flex;
    min-height: 25vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 0;
}

.footer-logo {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.footer-logo::before {
    content: "🔨";
    font-size: 1.2em;
    margin-right: 15px;
}

.footer p {
    color: #ccc;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav {
        position: relative;
    }

    .header {
        position: relative;
        padding: 1rem 0;
    }

    .section {
        padding: 50px 0;
        min-height: auto;
    }

    #hero {
        padding-top: 50px;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .portfolio-stack {
        gap: 1rem;
    }

    .portfolio-item {
        padding: 1.5rem;
    }

    .visual-element {
        padding: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container, .wide-container {
        padding: 0 15px;
    }

    .section {
        padding: 30px 0;
    }

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

    .nav {
        position: relative;
        background-color: linear-gradient(45deg, #ff6b35, #f7931e);
    }

    .logo {
        font-size: 1.2rem;
    }

    .portfolio-item {
        padding: 1rem;
    }

    .visual-element {
        padding: 1rem;
    }

    .step-item {
        padding: 1rem;
    }
}

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

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

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

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}