:root {
    --primary: #d98522;
    --primary-hover: #c0721c;
    --dark: #212529;
    --text-muted: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utils */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-accent {
    color: var(--primary);
}

.mt-30 {
    margin-top: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Header */
.top-bar {
    background-color: #2c3e50;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.logo-sub {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg') center/cover;
    background-color: #333;
    height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Buttons */
.btn-orange {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-orange:hover {
    background-color: var(--primary-hover);
}

.btn-orange-small {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn-orange-small:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Services */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Sections */
.section-about {
    padding: 100px 0;
}

.section-gray {
    padding: 80px 0;
    background-color: var(--light);
}

.section-white {
    padding: 80px 0;
    background-color: var(--white);
}

.section-dark {
    padding: 80px 0;
    background-color: #2c3e50;
}

.section-contact {
    padding: 100px 0;
    background-color: var(--white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.label {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.image-placeholder {
    background-color: #eee;
    border-radius: 8px;
    height: 450px;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 8px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    border-radius: 4px;
}

/* Contact Box */
.contact-box {
    background-color: var(--light);
    padding: 60px;
    border-radius: 8px;
    border-left: 8px solid var(--primary);
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-header h3 {
    color: var(--primary);
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--dark);
}

.social-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-v2 .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-v2 label {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-v2 input,
.contact-form-v2 textarea {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 100px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    header nav {
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .grid-3,
    .split-layout,
    .gallery-grid,
    .contact-main-grid,
    .footer-grid,
    .eu-flex {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .section-about,
    .section-contact,
    .section-gray,
    .section-white,
    .section-dark {
        padding: 60px 0;
    }

    .image-placeholder {
        height: 300px;
        margin-top: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .image-placeholder::before {
        top: 10px;
        left: 10px;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    .contact-box {
        padding: 20px 15px;
        border-left: 4px solid var(--primary);
    }

    .contact-main-grid {
        gap: 30px;
        width: 100%;
    }

    .contact-form-v2 {
        width: 100%;
    }

    .contact-form-v2 input,
    .contact-form-v2 textarea {
        width: 100%;
        max-width: 100%;
    }

    .top-bar {
        display: none;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }
}