/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.gold-text {
    color: #D4AF37;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.section-subtitle {
    color: #B0B0B0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #D4AF37;
    color: #0A0A0A;
}

.btn-primary:hover {
    background: #E8C84A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: #D4AF37;
    color: #0A0A0A;
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

.logo span {
    color: #D4AF37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #D4AF37;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: #0A0A0A;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    padding: 20px 0;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #D4AF37;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    word-wrap: break-word;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.hero-title .gold-text {
    position: relative;
}

.hero-title .gold-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D4AF37;
    border-radius: 2px;
}

.hero-subtitle {
    color: #B0B0B0;
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 30px;
    line-height: 1.8;
    word-wrap: break-word;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #D4AF37;
}

.stat-label {
    font-size: 0.8rem;
    color: #B0B0B0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #D4AF37;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
    max-width: 100%;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #0A0A0A;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08);
    background: rgba(212, 175, 55, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #D4AF37;
    word-wrap: break-word;
}

.service-card p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.services-cta {
    text-align: center;
    margin-top: 10px;
}

/* ===== STATS BANNER ===== */
.stats-banner {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.stats-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.stat-box .stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #D4AF37;
    display: block;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: #0A0A0A;
    width: 100%;
    overflow-x: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-content .section-title {
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    word-wrap: break-word;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list i {
    font-size: 1.2rem;
    color: #D4AF37;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
    overflow-x: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 10px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.testimonial-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #D4AF37;
}

.testimonial-card p {
    color: #D0D0D0;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.testimonial-card h4 {
    color: #D4AF37;
    font-weight: 700;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    word-wrap: break-word;
}

.cta-container p {
    color: #B0B0B0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    color: #0A0A0A;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 0;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    text-align: center;
    width: 100%;
}

.footer p {
    color: #888;
    font-size: 0.9rem;
    word-wrap: break-word;
    padding: 0 20px;
}

.footer strong {
    color: #D4AF37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-image img {
        width: 320px;
        height: 320px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        transform: scaleY(1);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

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

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        white-space: normal;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
    }

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

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 5px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .stat-box .stat-number {
        font-size: 2.5rem;
    }

    .stat-box .stat-label {
        font-size: 0.85rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
        gap: 30px;
    }

    .about-list li {
        justify-content: center;
        font-size: 0.95rem;
    }

    .about-image img {
        height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .cta-container h2 {
        font-size: 2.2rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        white-space: normal;
    }

    .btn {
        white-space: normal;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

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

    .hero-image img {
        width: 220px;
        height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .stat-box .stat-label {
        font-size: 0.75rem;
    }

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

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .container {
        padding: 0 12px;
    }
}