:root {
    --primary-color: #c48b4a;
    --dark-color: #1f1f1f;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222222;
}

.navbar-nav .nav-link {
    font-weight: 600;
}

.brand-logo {
    display: block;
    height: 32px;
    width: auto;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    background-color: #111111;
    color: #ffffff;
}

.hero-slide {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-control {
    width: auto;
    opacity: 1;
}

.hero-control-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 1.35rem;
    backdrop-filter: blur(2px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-control-icon:hover {
    background-color: rgba(255, 255, 255, 0.28);
    transform: scale(1.05);
}

.letter-spacing {
    letter-spacing: 0.16em;
}

.section-title {
    position: relative;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    margin-right: 8px;
    background-color: var(--primary-color);
    vertical-align: middle;
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(196, 139, 74, 0.12);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.project-card img {
    object-fit: cover;
    height: 220px;
}

.process-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-card {
    border-radius: 1rem;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 0.5rem;
}

.footer-main {
    background-color: #303036;
    color: #f2f2f2;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-text {
    color: #d6d6d6;
    margin: 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    color: #e6e6e6;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section .display-4 {
        font-size: 2.1rem;
    }
}
