
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #a59f93;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a59f93, #f4e5a1);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #a59f93;
}

.nav-links a:hover::after {
    width: 100%;
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: #a59f93;
    transition: 0.3s;
}


#home {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 4rem 2rem;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.home-content {
    position: relative;
    z-index: 1;
}

.home-subtitle {
    font-size: 0.95rem;
    color: #a59f93;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
}

.home-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
    max-width: 550px;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cta-button {
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.cta-primary {
    background: linear-gradient(135deg, #a59f93, #f4e5a1);
    color: #0a0a0a;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
    border: 2px solid #a59f93;
    color: #a59f93;
    background: transparent;
}

.cta-secondary:hover {
    background: #a59f93;
    color: #0a0a0a;
}

.home-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-decoration {
    width: 500px;
    height: 500px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.home-decoration::before,
.home-decoration::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.home-decoration::before {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-decoration::after {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


#about {
    padding: 7rem 4rem;
    background: #0f0f0f;
    position: relative;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.9rem;
    color: #a59f93;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2;
}

.section-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    line-height: 1.9;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-image-container {
    position: relative;
}

.about-image-box {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.about-image-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    padding-left: 2rem;
    border-left: 3px solid #a59f93;
    transition: all 0.3s;
}

.feature-item:hover {
    border-left-width: 5px;
    transform: translateX(10px);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 1.05rem;
}


#services {
    padding: 7rem 4rem;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
}

.service-box {
    padding: 4rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: #a59f93;
    transform: scale(1.05);
    z-index: 10;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.service-box p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 1.05rem;
}


#why-choose {
    padding: 7rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
    align-items: center;
}

.why-text {
    max-width: 700px;
}

.why-text p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 2;
    margin-bottom: 3rem;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #a59f93;
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #a59f93;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.why-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.03);
    border-left: 3px solid #a59f93;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    color: #a59f93;
}

.highlight-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.highlight-content p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1rem;
}


#contact {
    padding: 7rem 4rem;
    background: #0a0a0a;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info p {
    color: #b0b0b0;
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a59f93;
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: rgba(212, 175, 55, 0.05);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a59f93;
    background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #a59f93, #f4e5a1);
    color: #0a0a0a;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}


footer {
    background: #000000;
    color: #808080;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    font-size: 0.95rem;
    letter-spacing: 1px;
}


@media (max-width: 1200px) {
    #home {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 3rem 3rem;
    }

    .home-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .home-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .home-image {
        display: none;
    }

    .about-layout,
    .why-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    #home,
    #about,
    #services,
    #why-choose,
    #contact {
        padding: 5rem 2rem;
    }

    .home-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}
