/* ===== GLOBAL RESET & BASE STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #222;
}

/* ===== NAVIGATION BAR ===== */

.navbar {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e85900;
}

.nav-phone a {
    color: #e85900;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */

.hero {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e85900;
    font-weight: bold;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f2f2f2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.95rem;
    color: #ddd;
}

/* Buttons */

.btn-primary {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #e85900;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* ===== SERVICES SECTION ===== */

.services {
    padding: 80px 20px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 0;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    border-top: 4px solid #e85900;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(232, 89, 0, 0.4);
    background-color: #e85900;
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card h3 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.service-card:hover .btn-service {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

/* ===== WHY CHOOSE US SECTION ===== */

.why-choose {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-icon {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background-color: #e85900;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.why-card h3 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-card p {
    color: #666;
}

/* ===== GALLERY / PROJECTS SECTION ===== */

.gallery {
    padding: 80px 20px;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
    border-radius: 0;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.gallery-image-wrapper {
    background-color: #ddd;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    padding: 10px 12px 18px;
    text-align: left;
}

.gallery-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.gallery-date {
    color: #999;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 4rem;
    color: #e85900;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid #e85900;
    padding-top: 15px;
}

.author-name {
    font-weight: bold;
    color: #222;
}

.author-location {
    color: #999;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */

.contact {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-container h3 {
    margin-bottom: 20px;
    color: #222;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e85900;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e85900;
}

.form-note {
    font-size: 0.9rem;
    color: #777;
}

/* Contact details sidebar */

.contact-details {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    border-radius: 0;
    overflow: hidden;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    color: #fff;
    height: 100%;
}

.contact-overlay h3 {
    color: #e85900;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1.5;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #e85900;
}

.contact-cta {
    text-align: center;
    margin-top: 20px;
}

.cta-large {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e85900;
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-block;
    background-color: #e85900;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-contact:hover {
    background-color: #fff;
    color: #000;
}

/* ===== FOOTER ===== */

.footer {
    background-color: #222;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #e85900;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e85900;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon i {
    font-size: 1.4rem;
    display: inline-block;
}

.social-icon:hover {
    color: #e85900;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */

@media (max-width: 900px) {
    .nav-menu {
        display: none; /* could add burger later */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
    }

    .hero-overlay {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }

    .nav-phone {
        font-size: 0.9rem;
    }
}
