:root {
    --primary-color: #00f2ff;
    --secondary-color: #0078ff;
    --accent-color: #ff00ff;
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(10, 10, 20, 0.7);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --shadow-blue: 0 0 20px rgba(0, 242, 255, 0.3);
    --border-glow: 1px solid rgba(0, 242, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

/* Lenis Smooth Scroll */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Mouse Follow Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim-delay {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

span.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 50px;
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

header.scrolled {
    background: rgba(5, 5, 10, 0.8);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    top: 10px;
    width: 95%;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: 0;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

.nav-btn {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: var(--border-glow);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.btn-call:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
    transform: scale(1.05);
}

.btn-map {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 120, 255, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.7), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.hero-visuals {
    position: relative;
    height: 400px;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--border-glow);
    padding: 20px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-1 {
    top: 0;
    right: 20px;
    width: 200px;
}

.card-2 {
    bottom: 20px;
    left: 20px;
    width: 220px;
    z-index: 2;
}

.card-3 {
    top: 40%;
    right: -20px;
    font-size: 2rem;
}

.floating-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

/* Services */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Location */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
}

/* Map */
.map-wrapper {
    flex: 1;
    /* ... */
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    height: 250px;
}

.gallery-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
    border-color: var(--primary-color);
    z-index: 2;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Image Card Styling */
.image-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.image-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover img {
    transform: scale(1.1);
}

.overlay i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Video Card Styling */
.video-card {
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 120, 255, 0.2);
}

.video-card:hover {
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.5);
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

/* Location */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    /* push content apart if needed, or consistent gap */
    justify-content: space-between;
}

/* Map */
/* Map */
.map-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    /* Rounded corners for wrapper */
    overflow: hidden;
    /* Ensures iframe respects the border radius */
    border: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
    /* Explicitly on iframe too just in case */
    display: block;
}

/* Info Side - Shifted Right */
.location-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Aligns children to right */
    text-align: right;
    /* Aligns text inside blocks */
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Pushes flex content (icon+text) to right */
    gap: 15px;
    font-size: 1.1rem;
    width: 100%;
    /* Ensure it spans to allow alignment */
}

.info-item i {
    color: var(--primary-color);
    /* order: 1; If we want icon on right, uncomment. But 'shift right' usually means position. */
}

form {
    width: 100%;
    /* Ensure form takes full width of the flex item or adjusted */
    max-width: 400px;
    /* Optional constraint for better look */
    text-align: right;
    /* Ensure headers inside form align right */
}

/* Reviews */
.reviews-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.review-card {
    min-width: 300px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: black;
    padding: 60px 20px 20px;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-text {
    flex: 1;
    min-width: 250px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile Menu todo */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-visuals {
        display: none;
    }

    /* Hide heavy visuals on mobile or adjust */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}