/* Variables and Base Styles */
:root {
    --primary-color: #d4b03b;
    --secondary-color: #2c3e50;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section__title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .section__title {
        font-size: 2rem;
    }
}

.section__subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section__divider {
    width: 60px;
    height: 3px;
    background-color: #d4b03b;
    margin: 0 auto 1.5rem;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__logo .logo {
    height: 60px;
    width: auto;
    margin-left: 10px;
    margin-top: 5px;
}

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 992px) {
    .nav__menu {
        display: none;
    }
}

.nav__link {
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #d4b03b;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav__toggle {
        display: flex;
    }
}

.nav__toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    padding-top: 120px;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                url('https://picsum.photos/1920/1080?image=10');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback gradient */
    background-color: #2c3e50;
}

/* Fallback for modern browsers */
@supports (background-blend-mode: overlay) {
    .hero {
        background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'),
                          linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7));
        background-blend-mode: overlay;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
        background-attachment: scroll;
    }
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width: 992px) {
    .hero__container {
        flex-direction: column;
        text-align: center;
    }
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
}

.hero__subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
    }
}

.hero__image {
    flex: 1;
    max-width: 500px;
}

.hero__img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 40px 0;
    }
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section__header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .section__header {
        margin-bottom: 30px;
    }
}

.about__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width: 992px) {
    .about__content {
        flex-direction: column;
    }
}

.about__text {
    flex: 1;
}

.about__text p {
    margin-bottom: 1.5rem;
    color: #666666;
}

.about__text p:last-of-type {
    margin-bottom: 2rem;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
}

.feature .feature__icon {
    width: 40px;
    height: 40px;
    background-color: #d4b03b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature .feature__text h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature .feature__text p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about__image {
    flex: 1;
    max-width: 500px;
}

.about__img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 40px 0;
    }
}

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

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .service-card__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 176, 59, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card .service-card__icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(32%) saturate(438%) hue-rotate(334deg) brightness(95%) contrast(86%);
}

.service-card .service-card__title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card .service-card__description {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .service-card__list {
    list-style: none;
}

.service-card .service-card__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.service-card .service-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4b03b;
    font-weight: bold;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .projects {
        padding: 40px 0;
    }
}

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

@media (max-width: 768px) {
    .projects__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card .project-card__image {
    height: 250px;
    overflow: hidden;
}

.project-card .project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card .project-card__image:hover img {
    transform: scale(1.05);
}

.project-card .project-card__content {
    padding: 1.5rem;
}

.project-card .project-card__title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.project-card .project-card__description {
    color: #666666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 0;
    }
}

.contact__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact__content {
        flex-direction: column;
    }
}

.contact__info {
    flex: 1;
    max-width: 400px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact__item .contact__icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 176, 59, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__item .contact__icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(32%) saturate(438%) hue-rotate(334deg) brightness(95%) contrast(86%);
}

.contact__item .contact__details h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact__item .contact__details p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact__form {
    flex: 1;
    max-width: 500px;
}

.form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #d4b03b;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn {
    background-color: #d4b03b;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #d4b03b;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #d4b03b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn--secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.btn--full {
    width: 100%;
}

/* Service Section */
.service {
    padding: 80px 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .service {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .service {
        padding: 40px 0;
    }
}

.service__content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .service__content {
        flex-direction: column;
    }
}

.service__info {
    flex: 2;
}

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

.service-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-feature__icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 176, 59, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature__text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-feature__text p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service__benefits {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service__benefits h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.service-benefits__list {
    list-style: none;
    margin-bottom: 2rem;

    li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        color: #666666;
        font-size: 0.95rem;

        &:before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 8px;
            height: 8px;
            background-color: #d4b03b;
            border-radius: 50%;
        }
    }
}

.service__contact {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;

    h4 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    p {
        color: #666666;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer__logo .footer__logo-img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer__logo .footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer__links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer__links ul li a:hover {
    color: #d4b03b;
}

.footer__contact h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav__toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }