* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0e27;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #0a1428 0%, #1a2847 25%, #0f1b36 50%, #1e2f52 75%, #0a1428 100%),
        url('../img/bg/engine.jpg');
    background-size: 400% 400%, cover;
    background-position: 0% 50%, center;
    animation: gradient-move 15s ease infinite;
    filter: blur(3px) brightness(0.4);
    z-index: 1;
}

@keyframes gradient-move {
    0%, 100% {
        background-position: 0% 50%, center;
    }
    50% {
        background-position: 100% 50%, center;
    }
}

.loading-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.85) 0%,
        rgba(0, 100, 150, 0.3) 50%,
        rgba(10, 14, 39, 0.85) 100%
    );
    animation: gradient-shift 8s ease infinite;
}

.loading-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 212, 255, 0.15) 30deg,
            transparent 60deg,
            transparent 120deg,
            rgba(0, 150, 255, 0.12) 150deg,
            transparent 180deg,
            transparent 240deg,
            rgba(0, 200, 255, 0.1) 270deg,
            transparent 300deg,
            transparent 360deg
        ),
        radial-gradient(
            circle at center,
            rgba(0, 212, 255, 0.08) 0%,
            transparent 60%
        );
    animation: pulse-rays 4s ease-in-out infinite, rotate-rays 20s linear infinite;
}

@keyframes rotate-rays {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-rays {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Light Rays Effect */
.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: 
        linear-gradient(0deg, transparent 40%, rgba(0, 212, 255, 0.03) 45%, transparent 50%),
        linear-gradient(15deg, transparent 40%, rgba(0, 180, 255, 0.02) 45%, transparent 50%),
        linear-gradient(30deg, transparent 40%, rgba(0, 200, 255, 0.025) 45%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(0, 212, 255, 0.02) 45%, transparent 50%),
        linear-gradient(60deg, transparent 40%, rgba(0, 190, 255, 0.03) 45%, transparent 50%),
        linear-gradient(75deg, transparent 40%, rgba(0, 212, 255, 0.025) 45%, transparent 50%),
        linear-gradient(-15deg, transparent 40%, rgba(0, 180, 255, 0.02) 45%, transparent 50%),
        linear-gradient(-30deg, transparent 40%, rgba(0, 200, 255, 0.03) 45%, transparent 50%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 212, 255, 0.02) 45%, transparent 50%),
        linear-gradient(-60deg, transparent 40%, rgba(0, 190, 255, 0.025) 45%, transparent 50%),
        linear-gradient(-75deg, transparent 40%, rgba(0, 212, 255, 0.03) 45%, transparent 50%);
    animation: rays-expand 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rays-expand {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Shiny Text Effect */
.shiny-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(0, 212, 255, 1) 55%,
        rgba(255, 255, 255, 0) 70%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
    font-family: 'Rajdhani', sans-serif;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.loading-dots span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.3);
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8) translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2) translateY(-20px);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .shiny-text {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 0.15em;
    }
    
    .loading-dots span {
        width: 12px;
        height: 12px;
    }
}

/* Custom Scrollbar - Hidden/Minimal */
.services::-webkit-scrollbar,
.information::-webkit-scrollbar,
.reviews::-webkit-scrollbar,
.contact::-webkit-scrollbar,
.location::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.services,
.information,
.reviews,
.contact,
.location {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Logo Container - 3D Tilt Effect */
.logo-container {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 1s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    --pointer-x: 50%;
    --pointer-y: 50%;
    --rotate-x: 0deg;
    --rotate-y: 0deg;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(
        circle at var(--pointer-x) var(--pointer-y),
        rgba(0, 212, 255, 0.4) 0%,
        rgba(147, 51, 234, 0.2) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.logo-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(147, 51, 234, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.logo-container.tilt-active {
    transform: rotateX(var(--rotate-y)) rotateY(var(--rotate-x)) translateZ(20px);
    background: rgba(30, 40, 60, 0.7);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: none;
}

.logo-container.tilt-active::before {
    opacity: 0.6;
}

.logo-container.tilt-active::after {
    opacity: 1;
}

.logo-container:active {
    transform: rotateX(var(--rotate-y)) rotateY(var(--rotate-x)) translateZ(10px) scale(0.98);
}

.main-logo {
    height: 90px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: filter 0.4s ease, transform 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
}

.logo-container.tilt-active .main-logo {
    filter: 
        drop-shadow(0 12px 30px rgba(0, 212, 255, 0.5))
        drop-shadow(0 0 25px rgba(0, 212, 255, 0.3))
        brightness(1.15)
        contrast(1.1);
    transform: translateZ(15px);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link.active {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.hero.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Base Image Layer with Blur */
.hero-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/talleres-manes-entrada.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px) brightness(0.7);
    -webkit-backdrop-filter: blur(3px) brightness(0.7);
    background: rgba(5, 15, 35, 0.5);
}

/* Revealed Image Layer */
.hero-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tallers-manes-mod.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: circle(0px at 50% 50%);
    transition: none;
    z-index: 2;
    -webkit-mask-image: radial-gradient(circle 150px at 50% 50%, black 60%, transparent 100%);
    mask-image: radial-gradient(circle 150px at 50% 50%, black 60%, transparent 100%);
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero:hover .spotlight::before {
    opacity: 1;
}

/* Content Overlay */
.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
    }
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.9;
}

.tagline span {
    color: #00d4ff;
    font-weight: 600;
}

.cta-button {
    pointer-events: all;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Features Grid */
.features {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 4;
    pointer-events: none;
}

.feature-item {
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animated Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-50px) translateX(-50px);
    }
    75% {
        transform: translateY(-150px) translateX(25px);
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(10, 14, 39, 0.85), rgba(13, 20, 48, 0.85)), url('../img/bg/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    padding-top: 150px;
    animation: fadeIn 0.5s ease-in-out;
}

.services.active {
    display: block;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a2642 0%, #0f1729 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(0, 212, 255, 0.03) 0px,
            transparent 2px,
            transparent 40px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(0, 212, 255, 0.03) 0px,
            transparent 2px,
            transparent 40px
        );
    pointer-events: none;
}

.service-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    transition: transform 0.4s ease, filter 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-image img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.9));
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    z-index: 3;
}

.service-badge.free {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.service-card > * {
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-image {
    padding: 0;
}

.service-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2rem;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, transparent 100%);
}

.service-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Information Section */
.information {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(13, 20, 48, 0.85), rgba(10, 14, 39, 0.85)), url('../img/bg/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    align-items: center;
    padding-top: 150px;
    animation: fadeIn 0.5s ease-in-out;
}

.information.active {
    display: flex;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 25rem;
}

.info-card {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.info-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(10, 14, 39, 0.85), rgba(13, 20, 48, 0.85)), url('../img/bg/bg3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    align-items: center;
    padding-top: 150px;
    animation: fadeIn 0.5s ease-in-out;
}

.reviews.active {
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.review-stars {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.review-author h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.review-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.google-rating {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.score {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00d4ff;
    line-height: 1;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.google-rating p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.google-link {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.google-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(10, 14, 39, 0.85), rgba(13, 20, 48, 0.85)), url('../img/bg/bg4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    padding-top: 150px;
    animation: fadeIn 0.5s ease-in-out;
}

.contact.active {
    display: block;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.contact-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
    background: rgba(10, 20, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    margin-top: 1rem;
}

/* Location Section */
.location {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(13, 20, 48, 0.85), rgba(10, 14, 39, 0.85)), url('../img/bg/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    align-items: center;
    padding-top: 150px;
    animation: fadeIn 0.5s ease-in-out;
}

.location.active {
    display: flex;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 15rem;
}

.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    line-height: 0;
}

.map-placeholder iframe {
    display: block;
}

.location-info {
    background: rgba(15, 25, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-info ul {
    list-style: none;
}

.location-info ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.location-info ul li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: rgba(5, 10, 20, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
        top: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.4rem 0.8rem;
    }

    .main-logo {
        height: 45px;
    }

    .navbar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        gap: 0.3rem;
        padding: 0.8rem 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        justify-content: space-evenly;
        overflow-x: auto;
        overflow-y: hidden;
        border-bottom: none;
        border: none;
        margin: 0;
    }

    .nav-link {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .features {
        flex-direction: column;
        gap: 1.5rem;
        bottom: 2rem;
    }

    .tagline {
        margin-bottom: 2rem;
    }

    .services {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card > * {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .service-title::after {
        left: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .service-image img {
        width: 90px;
        height: 90px;
    }

    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .info-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 6rem;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services,
    .information,
    .reviews,
    .contact,
    .location {
        padding-top: 6.5rem;
        padding-bottom: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact .section-title {
        margin-top: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .google-rating {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .rating-score {
        flex-direction: column;
        text-align: center;
    }

    .google-link {
        width: 100%;
        text-align: center;
    }

    .contact-item {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        padding: 2rem;
    }

    .location-info {
        padding: 2rem;
    }
}

/* FAQ Section */
.faq {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.faq.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Updates */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-section,
.booking-form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.booking-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.contact-item a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00ffff;
    text-decoration: underline;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

/* Footer Updates */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
