* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 1.2rem;
    color: #D4AF37;
    transition: all 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-links a:hover i {
    transform: scale(1.1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-contact-btn {
    padding: 0.8rem 1.5rem;
    background: #D4AF37;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-contact-btn i {
    font-size: 1.1rem;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background: #D4AF37;
    transition: all 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #D4AF37;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        border-radius: 10px;
        background: rgba(212, 175, 55, 0.05);
        transition: all 0.3s;
    }

    .nav-links a i {
        font-size: 1.8rem;
    }

    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(10px);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.2rem;
        background: #D4AF37;
        color: #000000;
    }

    .nav-contact-btn i {
        font-size: 1.4rem;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .nav-links a i {
        font-size: 1.5rem;
    }

    .nav-contact-btn {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .nav-contact-btn i {
        font-size: 1.3rem;
    }
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.slide-left {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-left {
    transform: translateY(0);
    opacity: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    color: #ffffff;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.hero-title .highlight {
    color: #D4AF37;
    font-size: 6rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.primary-btn {
    position: relative;
    padding: 1rem 3rem;
    background: #D4AF37;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.primary-btn .btn-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.primary-btn:hover .btn-line {
    transform: scaleX(1);
    transform-origin: left;
}

.secondary-btn {
    padding: 1rem 3rem;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.secondary-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.prev-slide, .next-slide {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
}

.circle-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -300px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-title .highlight {
        font-size: 5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .slider-controls {
        bottom: 1rem;
    }

    .prev-slide, .next-slide {
        width: 40px;
        height: 40px;
    }
}

section {
    padding: 5rem 2rem;
    position: relative;
    background: #000000;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    color: #ffd700;
}

.service-card:hover .icon::after {
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.service-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-text h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text a, .contact-text p {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #D4AF37;
}

.contact-form {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-text h3 {
        font-size: 1.1rem;
    }

    .contact-text a, .contact-text p {
        font-size: 1rem;
    }

    .map-container {
        height: 350px;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(0, 0, 0, 0.7);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    background: #D4AF37;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
} 