/* ==========================================
   CSS VARIABLES & GLOBAL STYLES
   ========================================== */

:root {
    --color-primary-dark: #0f0f0f;
    --color-secondary-dark: #1a1a1a;
    --color-accent-gold: #d4af37;
    --color-text-white: #ffffff;
    --color-text-light-gray: #e0e0e0;
    --color-border-gray: #2a2a2a;
    --transition-smooth: 0.3s ease;
    --transition-medium: 0.5s ease;
    --box-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
    --box-shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.6);
    --box-shadow-hover: 0 20px 60px rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color var(--transition-smooth);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-accent-gold);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%), url('BACK.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-text-light-gray);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--color-accent-gold);
    color: var(--color-primary-dark);
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--box-shadow-soft);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background-color: #f0c856;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   SECTION TITLE
   ========================================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-white);
}

.gold-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 5rem 0;
    background-color: var(--color-secondary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow-soft);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-accent-gold);
    opacity: 0.5;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 5rem 0;
    background-color: var(--color-primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-secondary-dark);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--color-border-gray);
    box-shadow: var(--box-shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-gold);
    box-shadow: var(--box-shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    color: var(--color-text-light-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 2rem;
    color: var(--color-accent-gold);
    font-weight: 700;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery {
    padding: 5rem 0;
    background-color: var(--color-secondary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 3rem;
    color: var(--color-accent-gold);
    transition: all var(--transition-smooth);
    position: relative;
}

.gallery-image span {
    font-size: 1rem;
    color: var(--color-text-light-gray);
    margin-top: 1rem;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: 5rem 0;
    background-color: var(--color-primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border-gray);
    box-shadow: var(--box-shadow-soft);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--color-accent-gold);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-gold), #8b6f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin: 0 auto 1.5rem;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    color: var(--color-text-light-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-stars i {
    color: var(--color-accent-gold);
    font-size: 0.9rem;
}

/* ==========================================
   HOURS SECTION
   ========================================== */

.hours {
    padding: 5rem 0;
    background-color: var(--color-secondary-dark);
}

.hours-content {
    display: flex;
    justify-content: center;
}

.hours-card {
    background-color: var(--color-primary-dark);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--color-border-gray);
    box-shadow: var(--box-shadow-soft);
    max-width: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hours-day {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--color-border-gray);
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.hours-day:hover {
    border-color: var(--color-accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.hours-day h3 {
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hours-day p {
    color: var(--color-text-light-gray);
    font-size: 1.1rem;
}

/* ==========================================
   LOCATION SECTION
   ========================================== */

.location {
    padding: 5rem 0;
    background-color: var(--color-primary-dark);
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow-soft);
    margin-bottom: 3rem;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: var(--color-secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border-gray);
    text-align: center;
    transition: all var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--color-accent-gold);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--color-text-light-gray);
    font-size: 1.05rem;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--color-secondary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--color-border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--color-text-light-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-text-light-gray);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--color-accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-gray);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-gray);
    color: var(--color-text-light-gray);
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation */
[data-aos] {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

[data-aos="fade-right"] {
    animation: fadeInRight 0.6s ease-out forwards;
}

[data-aos="fade-left"] {
    animation: fadeInLeft 0.6s ease-out forwards;
}

[data-aos="zoom-in"] {
    animation: zoomIn 0.6s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 15, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hours-card {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.3rem;
    }

    .hero {
        margin-top: 50px;
    }

    .hero-title {
        font-size: 1.5rem;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .about,
    .services,
    .gallery,
    .testimonials,
    .hours,
    .location {
        padding: 3rem 0;
    }

    .service-card,
    .testimonial-card,
    .contact-item {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    .hours-card {
        padding: 1.5rem;
    }

    .hours-day {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
