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

:root {
    --bg-dark: #1A1A1A;
    --bg-gradient-start: #1A1A1A;
    --bg-gradient-end: #2A2418;
    --bg-light: #F5F5F5;
    --text-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light-gray: #CCCCCC;
    --text-gray: #666666;
    --accent-gold: #FFD700;
    --accent-gold-dark: #D4AF37;
    --border-gray: #333333;
    --card-white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--accent-gold);
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-white);
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-option:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
}

.lang-option:first-child {
    border-radius: 4px 4px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 4px 4px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7) 0%, rgba(42, 36, 24, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-tagline svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #1A1A1A;
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: var(--text-white);
    color: #1A1A1A;
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background-color: var(--text-light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* About Us Section */
.about {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-header {
    max-width: 800px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: left;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.stat-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.feature-card {
    background-color: var(--card-white);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 162px;
    height: 162px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Statistic Cards */
.stat-card {
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

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

.stat-card-gold {
    background: linear-gradient(135deg, #EEB511 0%, #FFD43E 100%);
    color: var(--text-dark);
}

.stat-card-dark {
    background-color: #1B1B1B;
    color: var(--text-white);
}

.stat-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.stat-card-gold .stat-title {
    color: var(--text-dark);
}

.stat-card-dark .stat-title {
    color: var(--text-white);
}

.stat-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.stat-card-gold .stat-description {
    color: var(--text-dark);
}

.stat-card-dark .stat-description {
    color: var(--text-white);
}

/* Services Section */
.services {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 452px 1fr;
    gap: 30px;
    align-items: stretch;
}

.services-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.service-card {
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-large {
    background: linear-gradient(135deg, #EEB511 0%, #FFD43E 100%);
    color: var(--text-dark);
    width: 452px;
    height: 100%;
}

.service-card-small {
    background-color: #F5F5F5;
    flex: 1;
    min-height: 158px;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.service-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.service-icon-left {
    bottom: 0;
    left: 0;
    width: 248px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
}

.service-icon-right {
    bottom: 0;
    right: 0;
    width: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.service-icon-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background-color: #F5F5F5;
    padding: 100px 0;
    position: relative;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.nav-arrow-left {
    background-color: var(--accent-gold);
}

.nav-arrow-right {
    background-color: var(--accent-gold);
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    background-color: var(--card-white);
    border-radius: 12px;
    padding: 40px;
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    transform: scale(0.95);
    opacity: 0.7;
}

.testimonial-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: #F5F5F5;
    padding: 100px 0;
    position: relative;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    position: relative;
    background-color: #1A1A1A;
    border-radius: 16px;
    padding: 60px;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
}

.contact-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: block;
}

.contact-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(42, 36, 24, 0.4) 100%);
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 20px 0;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light-gray);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-bottom-color: var(--accent-gold);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.form-textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.btn-contact {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.btn-contact:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-contact:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--card-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.modal-message {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 60px 0 40px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: var(--accent-gold);
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 12px;
        padding: 6px 16px;
    }

    .about {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .stat-card {
        padding: 30px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 30px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .stat-title {
        font-size: 20px;
    }

    .stat-description {
        font-size: 14px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-large {
        width: 100%;
        height: auto;
        min-height: 346px;
    }

    .service-icon-left {
        width: 248px;
        height: 190px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-message {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-nav {
        gap: 20px;
        flex-direction: column;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
