﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== ENHANCED ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

    .animated-bg::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 30%), radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.03) 0%, transparent 30%);
        animation: rotate 50s linear infinite;
    }

    .animated-bg::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(45deg, transparent 0px, transparent 30px, rgba(255, 215, 0, 0.015) 30px, rgba(255, 215, 0, 0.015) 60px);
        animation: move 80s linear infinite;
    }

/* Floating Elements */
.floating-element {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
    animation: float 25s infinite alternate;
}

.floating-1 {
    top: -150px;
    right: -150px;
    animation: float 20s infinite;
}

.floating-2 {
    bottom: -150px;
    left: -150px;
    animation: float 25s infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.5);
    }
}

@keyframes move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 200%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, 40px) rotate(120deg);
    }

    66% {
        transform: translate(-40px, 30px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ===== UTILS ===== */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-black);
    border: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn-gold:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        color: #000;
    }

    .btn-gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-gold:hover::before {
        left: 100%;
    }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ===== HERO SECTION – image fixed ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title span {
        color: var(--gold);
        text-shadow: 0 0 15px rgba(255,215,0,0.5);
        display: inline-block;
        animation: softPulse 3s infinite;
    }

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* image container – stays still */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        width: 500px;
        filter: drop-shadow(0 0 40px rgba(255,215,0,0.3));
        animation: none;
        transition: none;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softPulse {
    0% {
        text-shadow: 0 0 15px rgba(255,215,0,0.5);
    }

    50% {
        text-shadow: 0 0 30px rgba(255,215,0,0.9);
    }

    100% {
        text-shadow: 0 0 15px rgba(255,215,0,0.5);
    }
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 60px 0 20px;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.feature-box {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 32px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.7);
    position: relative;
    overflow: hidden;
}

    .feature-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .feature-box:hover::before {
        opacity: 1;
    }

    .feature-box:hover {
        border-color: var(--gold);
        transform: scale(1.02) translateY(-6px);
        background: rgba(255,215,0,0.07);
        box-shadow: 0 25px 40px -8px rgba(255,215,0,0.3);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.service-card {
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 25px -10px black;
    position: relative;
}

    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .service-card:hover::after {
        transform: translateX(100%);
    }

    .service-card:hover {
        border-color: var(--gold);
        transform: translateY(-10px);
        box-shadow: 0 30px 40px -10px rgba(255,215,0,0.4);
    }

    .service-card img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

.card-body {
    padding: 25px 20px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .card-body h5 {
        color: var(--gold);
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .card-body .desc {
        color: #bbb;
        margin-bottom: 15px;
        line-height: 1.5;
        flex: 1;
    }

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0 10px;
}

.btn-gold.small {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

/* ===== GALLERY SLIDER – smaller & clean ===== */
.gallery-section {
    padding: 40px 0 60px;
}

.slider-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    border: 2px solid rgba(255,215,0,0.3);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

    .slider-slide img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
    }

@media (max-width: 500px) {
    .slider-slide img {
        height: 260px;
    }
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #000, transparent);
    color: var(--gold);
    padding: 30px 20px 20px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    transform: translateY(0);
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

    .slider-btn:hover {
        background: var(--gold);
        color: black;
        transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
}

    .slider-dot.active {
        background: var(--gold);
        transform: scale(1.4);
        box-shadow: 0 0 15px gold;
    }

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(145deg, rgba(255,215,0,0.1) 0%, rgba(10,10,10,0.95) 90%);
    padding: 70px 0;
    margin: 30px 0;
    position: relative;
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
}

@media (min-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 25px rgba(255,215,0,0.7);
    line-height: 1.2;
    animation: countPulse 2s infinite;
}

@keyframes countPulse {
    0%, 100% {
        text-shadow: 0 0 25px rgba(255,215,0,0.7);
    }

    50% {
        text-shadow: 0 0 40px rgba(255,215,0,1);
    }
}

.stat-label {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #eee;
    text-transform: uppercase;
}

/* ===== WHY CHOOSE US – more attractive cards ===== */
.why-section {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.reason-card {
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 40px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 15px 25px -5px #000;
    position: relative;
    overflow: hidden;
}

    .reason-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .reason-card:hover::before {
        opacity: 1;
    }

    .reason-card:hover {
        border-color: var(--gold);
        transform: scale(1.02) translateY(-8px);
        background: rgba(255,215,0,0.1);
    }

.reason-icon {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(360deg);
}

.reason-card h4 {
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.reason-card p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.choose-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

    .cta-title span {
        color: var(--gold);
        text-shadow: 0 0 20px gold;
    }

.cta-sub {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 35px;
}

/* ===== RESPONSIVE FINE-TUNING ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .floating-element {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 90%;
    }

    .btn-gold {
        padding: 12px 25px;
    }

    .floating-element {
        width: 200px;
        height: 200px;
    }
}

/* small scroll comfort */
html {
    scroll-behavior: smooth;
}

/* Additional Animations */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
