/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #0d0d18;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-svg {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.logo-sub {
    font-size: 0.72rem;
    color: rgba(201, 168, 76, 0.65);
    line-height: 1.3;
    letter-spacing: 4px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 1.5px;
    font-size: 0.88rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #c9a84c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #c9a84c;
}

.cta-button {
    background: transparent;
    color: #c9a84c;
    padding: 10px 22px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1.5px solid #c9a84c;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #c9a84c;
    color: #0d0d18;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, #0d0d18 0%, #16162a 55%, #1a1730 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cpath d='M35 4 L66 35 L35 66 L4 35 Z' fill='none' stroke='rgba(201%2C168%2C76%2C0.07)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 70px 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 18, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    color: #c9a84c;
    padding: 6px 22px;
    border-radius: 2px;
    font-size: 0.78rem;
    margin-bottom: 28px;
    letter-spacing: 5px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-family: 'Georgia', serif;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 48px;
    opacity: 0.82;
    line-height: 1.95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    letter-spacing: 1.5px;
    font-size: 0.83rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background: #c9a84c;
    color: #0d0d18;
    border-color: #c9a84c;
}

.btn-primary:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Section Styles */
.section-label {
    display: inline-block;
    background: transparent;
    color: #c9a84c;
    padding: 4px 0;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-bottom: 2px solid #c9a84c;
    font-family: 'Arial', sans-serif;
}

.section-title {
    font-size: 2.55rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 55px;
    line-height: 1.75;
    font-family: 'Arial', sans-serif;
}

.section-description {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}

/* Services Section */
.services {
    padding: 115px 0;
    background: #ffffff;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.services-image {
    position: relative;
}

.services-image::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 70px;
    height: 70px;
    border-top: 2.5px solid #c9a84c;
    border-left: 2.5px solid #c9a84c;
    z-index: 1;
}

.services-image::after {
    content: '';
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 70px;
    height: 70px;
    border-bottom: 2.5px solid #c9a84c;
    border-right: 2.5px solid #c9a84c;
}

.section-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    position: relative;
    z-index: 2;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
    font-family: 'Arial', sans-serif;
}

.check-icon {
    background: #c9a84c;
    color: #0d0d18;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Achievement Section */
.achievement {
    padding: 115px 0;
    background: #f5f0e8;
    position: relative;
}

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 50%, transparent 100%);
}

.achievement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 50%, transparent 100%);
}

.achievement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.achievement .section-title {
    color: #1a1a1a;
    font-size: 2.2rem;
}

.achievement .section-description {
    color: #555;
}

/* Who We Are Section */
.who-we-are {
    padding: 115px 0;
    background: #0d0d18;
}

.who-we-are .section-label {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

.who-we-are .section-title {
    color: #ffffff;
}

.who-we-are .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #16162a;
    padding: 42px 36px;
    border-radius: 3px;
    border-left: 3px solid #c9a84c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(201, 168, 76, 0.04);
    border-radius: 0 3px 0 80px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.35;
    font-family: 'Georgia', serif;
}

.feature-description {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.93rem;
    font-family: 'Arial', sans-serif;
}

.feature-arrow {
    color: #c9a84c;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Partners Section */
.partners {
    padding: 115px 0;
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.partner-card {
    background: #faf6ee;
    padding: 42px 36px;
    border-radius: 3px;
    border-top: 3px solid #c9a84c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.partner-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.partner-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-family: 'Georgia', serif;
}

.partner-description {
    color: #666;
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.93rem;
    font-family: 'Arial', sans-serif;
}

.partner-arrow {
    color: #c9a84c;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Brands Section */
.brands {
    padding: 75px 0;
    background: #f5f0e8;
    text-align: center;
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.brand-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    opacity: 0.35;
    transition: opacity 0.3s ease;
    letter-spacing: 4px;
    font-family: 'Arial', sans-serif;
}

.brand-logo:hover {
    opacity: 0.75;
    color: #c9a84c;
}

.brands-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4c5a5;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #c9a84c;
}

/* Team Section */
.team {
    padding: 115px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-card {
    background: #faf6ee;
    padding: 48px 38px;
    border-radius: 3px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 360px;
    width: 100%;
    border-bottom: 3px solid #c9a84c;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    margin-bottom: 25px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #16162a 0%, #0d0d18 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2.5px solid #c9a84c;
}

.avatar-icon {
    font-size: 2.5rem;
    color: white;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.team-title {
    color: #c9a84c;
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.team-contact {
    text-align: left;
}

.team-email,
.team-phone {
    color: #666;
    margin-bottom: 6px;
    font-size: 0.88rem;
    font-family: 'Arial', sans-serif;
}

/* Contact Section */
.contact {
    padding: 115px 0;
    background: #0d0d18;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: start;
}

.contact .section-label {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-description {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Arial', sans-serif;
}

.contact-details {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.25rem;
    margin-right: 16px;
    width: 30px;
}

.contact-form {
    background: #16162a;
    padding: 48px;
    border-radius: 3px;
    border-top: 3px solid #c9a84c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 135px;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    border: none;
}

/* Footer */
.footer {
    background: #07070e;
    color: white;
    padding: 72px 0 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-title {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #c9a84c;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.footer-details {
    margin-bottom: 38px;
}

.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-family: 'Arial', sans-serif;
}

.footer-icon {
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    margin-bottom: 38px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.88rem;
    font-family: 'Arial', sans-serif;
}

.footer-links a:hover {
    color: #c9a84c;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.18);
}

.social-link:hover {
    background: #c9a84c;
    border-color: #c9a84c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 18px;
        padding: 18px 0;
    }

    .navigation {
        gap: 22px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-content,
    .achievement-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .services-image::before,
    .services-image::after {
        display: none;
    }

    .features-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .brands-content {
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .partner-card,
    .team-card {
        padding: 30px 22px;
    }

    .contact-form {
        padding: 30px 22px;
    }
}
