/* Premium Oniric Design System - Blue & Turquoise */
:root {
    --bg-color: #000000;
    --bg-secondary: #050505;
    --text-color: #f8f8f8;
    --text-muted: #b0b0b0;
    --accent-color: #00ced1; /* Cyan / Turquoise */
    --accent-secondary: #1e90ff; /* DodgerBlue */
    --accent-glow: rgba(0, 206, 209, 0.5);
    --oniric-blue: #001220;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Selection */
::selection {
    background: var(--accent-color);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.loader-line {
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    margin-top: 1rem;
    animation: loadLine 1.5s ease-in-out forwards;
}

@keyframes loadLine {
    to {
        width: 100%;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Testimonials Carousel & Star Rating */
.star-rating i {
    transition: color 0.2s ease, transform 0.2s ease;
}
.star-rating i:hover {
    transform: scale(1.2);
}
section, 
.bg-secondary, 
.two-col, 
.services-section, 
.portfolio-section, 
.stats-section, 
.testimonials-section, 
.contact-section,
footer {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 850px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 4rem;
    border-radius: 4px;
    border: 1px solid rgba(173, 216, 230, 0.2);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(173, 216, 230, 0.05);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.testimonial-card.exit-left {
    opacity: 0;
    transform: translateY(-30px);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 5px;
    filter: drop-shadow(0 0 8px rgba(173, 216, 230, 0.6));
}

.testimonial-card blockquote {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.4;
    font-family: var(--font-body);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.avatar-initial {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e90ff 0%, #00ced1 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    animation: pulseBlue 3s infinite;
}

@keyframes pulseBlue {
    0% { box-shadow: 0 10px 25px rgba(0, 206, 209, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(0, 206, 209, 0.8), 0 0 0 10px rgba(0, 206, 209, 0.1); }
    100% { box-shadow: 0 10px 25px rgba(0, 206, 209, 0.4); }
}

.testimonial-card:hover .avatar-initial {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-author h4 {
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* Modal Review Styles */
.modal-card {
    max-width: 500px;
    width: 90%;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-group-modal {
    margin-bottom: 1.2rem;
}

.form-group-modal label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-modal input, 
.form-group-modal textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group-modal input:focus, 
.form-group-modal textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.06);
}

.form-group-modal .star-rating {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    display: flex;
    gap: 5px;
}

#review-msg {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

#close-review-modal {
    top: 15px !important;
    right: 15px !important;
}




a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gold {
    color: var(--accent-color);
}

.gold-text {
    background: linear-gradient(to right, #00ced1, #fff, #00ced1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
/* Premium Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 5, 5, 0.9);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    vertical-align: middle;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.3));
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.navbar.scrolled .logo img {
    height: 70px;
}

@media (max-width: 768px) {
    .navbar.scrolled .logo img {
        height: 50px;
    }
}

.main-footer .logo img {
    height: 180px;
    margin-top: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.2));
}

.preloader .logo img {
    height: 120px;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary,
.btn-filled,
.btn-outline {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-primary::after,
.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-primary:hover::after,
.btn-outline:hover::after {
    height: 100%;
}

.btn-primary:hover,
.btn-outline:hover {
    color: #000;
}

.btn-filled {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.2);
}

.btn-filled:hover {
    background: transparent;
    color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.2);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 140px;
}

.hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

.hero-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

#geometric-particles {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem 8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: clamp(120px, 18vw, 260px);
    width: auto;
    margin-bottom: clamp(1.5rem, 4vw, 4rem);
    filter: drop-shadow(0 0 35px rgba(0, 206, 209, 0.5));
    animation: premiumFloat 6s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    will-change: transform, filter;
    z-index: 10;
}

@keyframes premiumFloat {
    0% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
        filter: drop-shadow(0 10px 25px rgba(0, 206, 209, 0.4));
    }
    50% {
        transform: translateY(-35px) rotateX(8deg) rotateY(-8deg) scale(1.05);
        filter: drop-shadow(0 30px 60px rgba(0, 206, 209, 0.9));
    }
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
        filter: drop-shadow(0 10px 25px rgba(0, 206, 209, 0.4));
    }
}

@media (max-width: 1024px) {
    .hero-logo {
        height: clamp(120px, 20vw, 200px);
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: clamp(100px, 22vw, 160px);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 100px;
        margin-bottom: 1rem;
    }
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 6rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 1.5vw, 15px);
    margin-bottom: clamp(1.5rem, 3vw, 3.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 0%, #00ced1 50%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 206, 209, 0.4));
    animation: auraPulse 4s ease-in-out infinite alternate, floatingText 8s ease-in-out infinite alternate;
    position: relative;
}

@media (max-width: 768px) {
    .hero h1 {
        letter-spacing: 4px;
    }
}

@keyframes auraPulse {
    0% {
        text-shadow: 0 0 10px rgba(0, 206, 209, 0.5),
                     0 0 20px rgba(0, 206, 209, 0.3),
                     0 0 30px rgba(30, 144, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 206, 209, 0.8),
                     0 0 40px rgba(0, 206, 209, 0.6),
                     0 0 60px rgba(30, 144, 255, 0.4),
                     0 0 80px rgba(255, 255, 255, 0.2);
    }
}

@keyframes floatingText {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-15px) scale(1.01); }
}

.hero h1 small {
    display: block;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    letter-spacing: 20px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.9;
    animation: auraPulseSmall 3s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    .hero h1 small {
        letter-spacing: 8px;
        font-size: 0.8rem;
    }
}

@keyframes auraPulseSmall {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 15px rgba(173, 216, 230, 1), 0 0 25px rgba(0, 206, 209, 0.5); }
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.hero-btns {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Specific Animations */
/* Animations handled by GSAP */

/* Sections */
.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 1.2rem;
    }
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto;
}

/* Premium Portfolio Carousel */
.portfolio-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.portfolio-carousel {
    display: flex;
    gap: 3rem;
    padding: 0 10vw;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-carousel:active {
    cursor: grabbing;
}

.portfolio-card {
    flex: 0 0 450px;
    height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s;
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 206, 209, 0.2), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 40px 100px rgba(0, 206, 209, 0.2);
}

.portfolio-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 4vw;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    pointer-events: auto;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
}

.portfolio-loading {
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}


.image-frame img {
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-text {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* About / Artista */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: 0;
}

.image-frame img {
    position: relative;
    width: 100%;
    z-index: 1;
    filter: grayscale(20%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

/* Services */
/* Services Redesign - Premium Experience */
.services-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    background: rgba(13, 13, 13, 0.9); /* Más opaco para evitar que las partículas distraigan */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 1.8rem;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    opacity: 1 !important; /* Forzar visibilidad */
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/logo_oniric.webp');
    background-size: 110%; /* Ligeramente más grande para efecto de corte */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    filter: brightness(0.5); /* Ajustar para que no brille demasiado */
}

/* Background unificado con logo */

.service-card:hover::before {
    opacity: 0.15; /* Más visible en hover pero aún sutil */
    transform: scale(1) rotate(5deg);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    background: rgba(10, 10, 10, 0.98); /* Casi sólido en hover para máxima legibilidad */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 206, 209, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0,0,0,1);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
}

.service-card:hover .service-number {
    color: rgba(0, 206, 209, 0.08);
    transform: translateY(-10px);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0; /* Brighter grey for better contrast */
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.service-card:hover p {
    color: #ffffff;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 206, 209, 0.1);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

@keyframes iconPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 206, 209, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 206, 209, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 206, 209, 0); }
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: rotateY(180deg);
    animation: iconPulse 2s infinite;
}

.service-card:hover .service-icon-wrapper i {
    color: #000;
    transform: rotateY(-180deg);
}


.service-card:hover p {
    color: #fff;
}

.service-card p strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.service-card:hover p strong {
    color: #fff;
    text-shadow: 0 0 15px var(--accent-glow);
}

.service-card .btn-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
}

.service-card .btn-text i {
    transition: transform 0.3s ease;
}

.service-card:hover .btn-text {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .btn-text i {
    transform: translateX(8px);
}


/* Contact */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(13, 13, 13, 0.95);
    padding: 3rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Hero H1 Enhancement */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 1);
    letter-spacing: -1px;
}

/* Contact Form Premium Inputs */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 0;
    /* Reset */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    background: transparent;
    box-shadow: 0 10px 20px -10px rgba(0, 206, 209, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    pointer-events: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Float Label Effect */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""]):valid+label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 700;
}

/* Booking System Styles */
.booking-form-container {
    width: 100%;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #333;
    z-index: 0;
}

.step-indicator {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid #333;
    transition: var(--transition);
}

.step-indicator.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

.step-indicator.completed {
    background: #222;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-step {
    display: none;
    animation: fadeInStep 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.step-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.step-actions.split {
    justify-content: space-between;
}

.summary-box {
    background: rgba(0, 206, 209, 0.05);
    border-left: 3px solid var(--accent-color);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.summary-box p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 500px) {
    .booking-wrapper {
        padding: 1.5rem 1rem;
    }
}

.info-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-details .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-details h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.flex-1 {
    flex: 1;
}

.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

/* File Upload UI */
.file-upload-container {
    margin: 2rem 0;
}

.file-input-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    border: 2px dashed #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.file-input-wrapper:hover {
    border-color: var(--accent-color);
    background: rgba(0, 206, 209, 0.03);
}

.file-input-wrapper input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-dummy {
    text-align: center;
    color: var(--text-muted);
}

.file-dummy i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.file-preview {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.preview-item {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--accent-color);
}

.mt-2 {
    margin-top: 2rem;
}

/* Footer Styling */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Mobile Responsive */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        padding: 4rem 2rem;
        border-left: none;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 4rem);
        line-height: 1.1;
    }

    .section {
        padding: 4rem 0;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-filled, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .contacts-wrapper,
    .two-col,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Active nav link */
.nav-links a.active-link:not(.btn-primary) {
    color: var(--accent-color);
    position: relative;
}

.nav-links a.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

/* ═══════════════════════════════════════════════
   PROMOTIONS PAGE STYLES
   ═══════════════════════════════════════════════ */

/* Store Hero (Reused for Promotions) */
.store-hero {
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #001220 50%, #0d0d0d 100%);
    overflow: hidden;
}

.store-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

.store-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}

.store-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color) 5%, transparent 60%);
    z-index: 1;
}

.store-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

.store-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.store-hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ─── Promotions List ──────────────────────── */
.promos-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.promo-wide-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-wide-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.promo-wide-card.reverse .promo-image {
    order: 2;
}

.promo-wide-card.reverse .promo-info {
    order: 1;
}

.promo-wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 206, 209, 0.1);
}

.promo-image {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.promo-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.promo-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.promo-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-price-info {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.promo-code {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-code span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.promo-code strong {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.promo-validity, .promo-includes {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-validity i, .promo-includes i {
    color: var(--accent-color);
}

/* ─── Promotions Responsive ────────────────── */
@media (max-width: 992px) {
    .promo-wide-card, .promo-wide-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .promo-wide-card.reverse .promo-image {
        order: 1;
    }
    
    .promo-wide-card.reverse .promo-info {
        order: 2;
    }
    
    .promo-info {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .promo-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .promo-header h3 {
        font-size: 1.5rem;
    }
}

/* ─── End of Promotions Styles ──────────────── */


.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── Store Responsive ─────────────────────── */
@media (max-width: 768px) {
    .store-hero-content h1 {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .features-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .filter-bar {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .cart-float-btn {
        bottom: 100px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .features-bar {
        grid-template-columns: 1fr;
    }

    .product-image-wrapper {
        height: 240px;
    }
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-caption {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.lightbox-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════════ */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(13, 13, 13, 0.98));
    border-top: 1px solid rgba(0, 206, 209, 0.15);
    border-bottom: 1px solid rgba(0, 206, 209, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-number::after {
    content: '+';
    color: var(--accent-color);
    font-size: 1.8rem;
}

.stat-icon {
    margin-bottom: 0.5rem;
}

.stat-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-track {
    overflow: hidden;
    width: 100%;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-card.exit-left {
    opacity: 0;
    transform: translateX(-60px);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #ff6b00;
    font-size: 1rem;
    margin: 0 2px;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}


.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.testimonial-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 206, 209, 0.5);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(0, 206, 209, 0.5);
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 206, 209, 0.2);
}

.faq-item.open {
    border-color: rgba(0, 206, 209, 0.3);
    background: rgba(0, 206, 209, 0.04);
}

.faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.faq-question span i {
    color: var(--accent-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.6rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE - New Sections
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════
   FOOTER REDESIGN
   ═══════════════════════════════════════════════ */
.main-footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 0 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.brand-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-col .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.brand-col p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-footer a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.links-col a {
    color: var(--text-muted);
    transition: var(--transition);
}

.links-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* Map specific styling */
.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.map-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-img-link:hover .map-image {
    transform: scale(1.05);
}

.map-img-link:hover .map-overlay {
    opacity: 1;
}

.btn-map {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    background: var(--accent-color);
    color: #000;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-map:hover {
    background: #fff;
    color: #000;
}

.btn-map i {
    margin-right: 5px;
}



/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .brand-col, .contact-info li, .links-col ul {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .contact-info li {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════
   PORTFOLIO PREVIEW SETTINGS (HOME)
   ═══════════════════════════════════════════════ */
.portfolio-grid-animated {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .portfolio-grid-animated {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid-animated {
        grid-template-columns: 1fr;
    }
}



/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)), url('img/galeria/1 (1).PNG') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form .input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.subscribe-form .input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.2);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form .btn-filled {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.subscribe-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    height: 20px;
    transition: var(--transition);
}

.subscribe-msg.success { color: #2ecc71; }
.subscribe-msg.error { color: #e74c3c; }

@media (max-width: 768px) {
    .subscribe-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
    }
    .subscribe-form input {
        background: rgba(255, 255, 255, 0.05);
        padding: 15px 20px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }
}

/* ═══════════════════════════════════════════════
   ARTISTS MODAL STYLES
   ═══════════════════════════════════════════════ */
.wide-modal { 
    max-width: 1100px !important; 
    width: 95% !important;
    background: linear-gradient(to bottom, #111, #050505) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 206, 209, 0.1) !important;
}

.artists-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2.5rem; 
    margin-top: 2.5rem; 
    max-height: 75vh; 
    overflow-y: auto; 
    padding: 1.5rem; 
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(255,255,255,0.05);
}

.artists-grid::-webkit-scrollbar {
    width: 6px;
}
.artists-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
.artists-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.artist-profile-card { 
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 16px; 
    padding: 3rem 2rem; 
    text-align: center; 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.artist-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: 1;
    pointer-events: none;
}

.artist-profile-card:hover::before {
    left: 200%;
}

.artist-profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), transparent 50%, #fff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.artist-profile-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%); 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 206, 209, 0.15); 
}

.artist-profile-card:hover::after {
    opacity: 1;
}

.artist-profile-avatar { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #222 0%, #000 100%); 
    margin-bottom: 2rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 3.5rem; 
    color: #fff; 
    font-family: var(--font-heading); 
    border: 3px solid transparent; 
    overflow: hidden; 
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.artist-profile-card:hover .artist-profile-avatar {
    transform: scale(1.1) rotate(5deg);
}

.artist-profile-avatar img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.artist-profile-card:hover .artist-profile-avatar img {
    transform: scale(1.1);
}

.artist-profile-info {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-profile-info h4 { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    color: #fff; 
    margin-bottom: 0.5rem; 
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.artist-profile-info .specialty { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.artist-profile-info p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.7;
    margin-bottom: 2rem;
}

.artist-social-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.artist-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.artist-social-icons a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.3);
    border-color: var(--accent-color);
}

.artist-profile-card .btn-outline {
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media (max-width: 600px) { 
    .artists-grid { 
        grid-template-columns: 1fr; 
    } 
    .artist-profile-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Instructions Steps List */
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1.2rem; align-items: flex-start; transition: var(--transition); padding: 10px; border-radius: 12px; }
.step-item:hover { background: rgba(255,255,255,0.03); transform: translateX(5px); }
.step-num { background: var(--accent-color); color: #000; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; box-shadow: 0 0 10px var(--accent-glow); transition: var(--transition); }
.step-item:hover .step-num { transform: scale(1.1); box-shadow: 0 0 15px var(--accent-color); }
.step-num.special { background: #9b59b6; color: #fff; box-shadow: 0 0 10px rgba(155, 89, 182, 0.4); }
.step-item:hover .step-num.special { box-shadow: 0 0 15px #9b59b6; }
.step-content p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: var(--text-color); }
.step-content p strong { color: var(--accent-color); }
.step-num.special + .step-content p strong { color: #9b59b6; }

/* VIP Premium Animations */
@keyframes pulse-vip {
    0% { box-shadow: 0 0 15px rgba(0, 206, 209, 0.3), inset 0 0 15px rgba(0, 206, 209, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 206, 209, 0.6), inset 0 0 25px rgba(0, 206, 209, 0.2); }
    100% { box-shadow: 0 0 15px rgba(0, 206, 209, 0.3), inset 0 0 15px rgba(0, 206, 209, 0.1); }
}

#vip-result-msg {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* VIP Section Enhanced Styles */
.vip-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vip-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.vip-feature-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 30px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.vip-feature-text {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.vip-feature-text strong {
    color: #fff;
    min-width: 140px;
    font-weight: 700;
}

.vip-feature-text span {
    color: var(--text-muted);
}

.vip-glow-btn {
    background: var(--accent-color) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 0 20px var(--accent-glow) !important;
    position: relative;
    border-radius: 4px !important;
}

.vip-glow-btn:hover {
    box-shadow: 0 0 35px var(--accent-color) !important;
    transform: translateY(-3px);
}

/* VIP Section Enhanced Visual */
.vip-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 206, 209, 0.1);
}

.vip-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.vip-image-container:hover .vip-main-image {
    transform: scale(1.05);
}

.vip-symbol-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.vip-symbol-small {
    width: 60%;
    max-width: 250px;
    filter: drop-shadow(0 0 30px rgba(0, 206, 209, 0.6));
    animation: symbolFloat 6s ease-in-out infinite;
}

@keyframes symbolFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@media (max-width: 768px) {
    .vip-feature-text {
        flex-direction: column;
        gap: 0.2rem;
    }
    .vip-feature-text strong {
        min-width: auto;
    }
    .vip-symbol-frame {
        padding: 1.5rem;
    }
}

/* -----------------------------------------------
   PREMIUM FAQ SECTION OVERRIDES
   ----------------------------------------------- */
.faq-premium-section { position: relative; padding: 10rem 0; overflow: hidden; }
.faq-premium-section::before { content: ''; position: absolute; top: 20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 206, 209, 0.05) 0%, transparent 70%); z-index: -1; filter: blur(80px); }
.faq-layout { display: grid; grid-template-columns: 350px 1fr; gap: 4rem; align-items: flex-start; }
.faq-info-col h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1; margin-bottom: 1.5rem; }
.faq-description { font-size: 1.1rem; color: var(--text-muted); max-width: 450px; margin-bottom: 3rem; line-height: 1.8; }
.faq-cta-box { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 20px; backdrop-filter: blur(10px); }
.faq-cta-box p { font-size: 0.9rem; color: #fff; margin-bottom: 1rem; font-weight: 500; }
.faq-items-col { width: 100%; }
.faq-grid-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; width: 100%; }
@media (max-width: 1400px) { .faq-grid-wrapper { grid-template-columns: 1fr; } }
.faq-container { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { background: rgba(13, 13, 13, 0.4); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 16px; transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; backdrop-filter: blur(10px); }
.faq-item:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(0, 206, 209, 0.3); transform: translateX(10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); }
.faq-item.open { background: rgba(0, 206, 209, 0.03); border-color: rgba(0, 206, 209, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 206, 209, 0.1); }
.faq-question { width: 100%; padding: 1.8rem 2rem; background: none; border: none; color: #fff; font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; transition: color 0.3s ease; }
.faq-question span { display: flex; align-items: center; gap: 1.2rem; }
.faq-question i:first-child { width: 40px; height: 40px; background: rgba(0, 206, 209, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-color); font-size: 0.9rem; transition: all 0.3s ease; }
.faq-item:hover .faq-question i:first-child { background: var(--accent-color); color: #000; transform: rotate(-10deg); }
.faq-toggle-icon { font-size: 0.8rem; color: var(--text-muted); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s; }
.faq-item.open .faq-toggle-icon { transform: rotate(180deg); color: var(--accent-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1), padding 0.6s ease; padding: 0 2rem; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 2rem 2rem; }
.faq-answer p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; padding-left: 3.7rem; border-left: 1px solid rgba(0, 206, 209, 0.2); }
@media (max-width: 1024px) { .faq-layout { grid-template-columns: 1fr; gap: 4rem; } .faq-info-col { text-align: center; } .faq-info-col .line { margin: 1.5rem auto !important; } .faq-description { margin-left: auto; margin-right: auto; } }
@media (max-width: 768px) { .faq-premium-section { padding: 6rem 0; } .faq-question { padding: 1.5rem; font-size: 1rem; } .faq-answer p { padding-left: 0; border-left: none; } }

.faq-wa-btn { background: #25d366; border-color: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; width: fit-content; padding: 1.2rem 2.5rem; border-radius: 50px; font-weight: 600; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); transition: all 0.4s ease; }
.faq-wa-btn:hover { background: #20b858; border-color: #20b858; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); color: #fff; }

/* Events Section Premium */
.events-section {
    position: relative;
    padding: 10rem 0;
    background: #0b0b0b;
    overflow: hidden;
}

.events-content {
    position: relative;
    z-index: 2;
}

.events-experience-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.events-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.events-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.events-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 206, 209, 0.1);
}

.event-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    position: relative;
    text-align: center;
}

.event-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.event-card:hover .event-card-icon {
    transform: translateY(-5px) rotate(10deg);
    background: #fff;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

@media (max-width: 992px) {
    .events-experience-block {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .events-features {
        justify-items: center;
    }
}


/* -----------------------------------------------
   MAIN FOOTER PREMIUM STYLES
   ----------------------------------------------- */
.main-footer {
    background: radial-gradient(circle at top right, rgba(0, 206, 209, 0.02), transparent 40%), 
                radial-gradient(circle at bottom left, rgba(0, 206, 209, 0.01), transparent 40%), 
                #050505;
    padding: 8rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 25px;
    height: 1.5px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

.brand-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px) scale(1.1) rotate(8deg);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
    border-color: var(--accent-color);
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.links-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.links-col ul li a::before {
    content: '—';
    position: absolute;
    left: -15px;
    opacity: 0;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.links-col ul li a:hover::before {
    opacity: 1;
    left: -12px;
}

.map-mini-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.map-mini-container:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 206, 209, 0.2);
    transform: translateY(-5px);
}

.map-mini-container iframe {
    width: 100%;
    height: 150px;
    border: 0;
    border-radius: 12px;
    filter: grayscale(1) invert(90%) hue-rotate(180deg) contrast(85%) opacity(0.7);
    transition: all 0.6s ease;
}

.map-mini-container:hover iframe {
    filter: grayscale(0) invert(0%) hue-rotate(0deg) contrast(100%) opacity(1);
}

.contact-info-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.contact-info-mini li:hover {
    color: #fff;
}

.contact-info-mini li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
    position: relative;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Subtle glow at the top of the bar */
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.6;
}

.dev-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 2px;
}

.dev-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.dev-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-color);
}

.dev-link:hover::after {
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .contact-info li {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Footer Map Specifics */
.map-mini-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 10px;
    transition: all 0.4s ease;
}

.map-mini-container:hover {
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.map-mini-container iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(85%);
    border-radius: 10px;
}

.contact-info-mini li {
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.contact-info-mini li:hover {
    color: #fff !important;
}
