/* ============================================
   A-One WaterArts - Premium Website Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0077cc;
    --primary-light: #00a8e8;
    --primary-dark: #005fa3;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --gold: #c9a84c;
    --gold-light: #e8cf8a;
    --dark: #0a0e17;
    --dark-2: #111827;
    --dark-3: #1a2332;
    --gray-900: #1f2937;
    --gray-800: #2d3748;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-300);
    background-color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    animation: dropBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.loader-logo.bg-removed {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.35)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.15));
}

@keyframes dropBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(0.95); }
}

.loader-text {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ---------- Custom Cursor ---------- */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-hover {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    height: 48px;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.25));
    transition: var(--transition);
}

.logo-icon img.bg-removed {
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.1));
}

.navbar.scrolled .logo-icon {
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 119, 204, 0.4);
}

.nav-phone i {
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Top Contact Bar ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--dark-2), var(--dark-3));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    z-index: 1002;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
}

.top-bar-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-400);
    transition: var(--transition);
    white-space: nowrap;
}

.top-bar-item:hover {
    color: var(--accent);
}

.top-bar-item i {
    font-size: 0.7rem;
    color: var(--accent);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--gray-400);
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
}

.top-bar-social a[title="WhatsApp"]:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.top-bar-social a[title="Instagram"]:hover {
    background: rgba(225, 48, 108, 0.15);
    color: #E1306C;
}

/* ---------- Mega Dropdown Navigation ---------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 720px;
    background: rgba(15, 20, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mega-col {
    padding: 20px 18px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col h4 i {
    font-size: 0.75rem;
}

.mega-col ul li {
    margin-bottom: 6px;
}

.mega-col ul li a {
    font-size: 0.82rem;
    color: var(--gray-400);
    padding: 5px 0;
    display: block;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.mega-col ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.mega-col ul li a::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 3px solid var(--accent);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.mega-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Mega CTA Card */
.mega-cta {
    padding: 12px !important;
    border-right: none !important;
}

.mega-cta-card {
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.15), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mega-cta-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.mega-cta-card h4 {
    font-size: 0.9rem;
    color: var(--white);
    display: block;
    margin-bottom: 0;
}

.mega-cta-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.btn-sm {
    font-size: 0.78rem;
    padding: 8px 18px;
}

/* Nav WhatsApp button */
.nav-whatsapp {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ---------- Category Showcase ---------- */
.categories-showcase {
    padding: 100px 0 80px;
    background: var(--dark-2);
    position: relative;
}

.categories-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.6);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(0,60,120,0.2) 0%, rgba(0,40,80,0.8) 60%, rgba(0,20,50,0.95) 100%);
}

.category-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 14px;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0;
}

.category-card:hover .category-icon {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-color: transparent;
}

.category-overlay h3 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    transition: var(--transition);
}

.category-overlay p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(8px);
}

.category-card:hover .category-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.category-count {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease 0.1s;
}

.category-card:hover .category-count {
    opacity: 1;
    transform: translateY(0);
}

.categories-cta {
    text-align: center;
    padding-top: 10px;
}

/* ---------- Clients / Trust Section ---------- */
.clients-section {
    padding: 50px 0;
    background: var(--dark);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.clients-header {
    text-align: center;
    margin-bottom: 30px;
}

.clients-header h3 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clients-track-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: clientsScroll 35s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.client-badge:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.client-badge i {
    font-size: 1rem;
    color: var(--accent);
    opacity: 0.7;
}

.client-badge span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Caustic Light overlay on top of video */
.pool-caustic-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    z-index: 2;
    pointer-events: none;
}

.caustic-1 {
    background:
        radial-gradient(ellipse 120px 90px at 15% 25%, rgba(0, 200, 255, 0.1), transparent 70%),
        radial-gradient(ellipse 100px 130px at 45% 65%, rgba(0, 180, 255, 0.08), transparent 70%),
        radial-gradient(ellipse 140px 80px at 75% 35%, rgba(0, 220, 255, 0.1), transparent 70%),
        radial-gradient(ellipse 90px 110px at 30% 80%, rgba(0, 190, 255, 0.07), transparent 70%),
        radial-gradient(ellipse 110px 100px at 85% 70%, rgba(0, 210, 255, 0.09), transparent 70%);
    animation: causticDrift1 12s ease-in-out infinite alternate;
}

@keyframes causticDrift1 {
    0%   { transform: translate(0%, 0%) scale(1); }
    50%  { transform: translate(-5%, -3%) scale(1.02); }
    100% { transform: translate(-8%, -6%) scale(1.01); }
}

#water-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.4;
    mix-blend-mode: soft-light;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 15, 40, 0.55) 0%, rgba(0, 10, 30, 0.75) 100%),
        linear-gradient(180deg,
            rgba(0, 10, 30, 0.7) 0%,
            rgba(0, 10, 25, 0.55) 25%,
            rgba(0, 10, 25, 0.5) 50%,
            rgba(0, 10, 25, 0.55) 75%,
            rgba(0, 10, 30, 0.75) 100%
        );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 6;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary-light), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(220, 230, 240, 0.95);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 119, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 204, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
}

.scroll-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    left: -1px;
    top: -10px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -10px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

/* Hero Ripples */
.hero-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 255, 0.08);
    background: radial-gradient(circle, rgba(0, 200, 255, 0.03), transparent 70%);
    animation: ripple 6s ease-in-out infinite;
    z-index: 5;
}

.ripple-1 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 0s;
}

.ripple-2 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 2s;
}

.ripple-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Interactive Swimming Pool Section ---------- */
.pool-showcase {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--dark) 0%, #050d1a 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.pool-section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 24px;
}

.pool-section-header .section-title {
    text-align: center;
}

.pool-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Pool Outer Frame / Deck */
.pool-outer {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(135deg, #2a3a4a, #3d4f5f, #2a3a4a);
    box-shadow:
        0 0 0 3px rgba(255,255,255,0.06),
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.pool-deck {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    z-index: 5;
}

/* Pool Edge LED Lights */
.pool-edge-light {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent), 0 0 25px rgba(0, 212, 255, 0.4);
    animation: edgeLightPulse 3s ease-in-out infinite;
    z-index: 6;
}

.pool-edge-light:nth-child(odd) {
    animation-delay: 1.5s;
}

.pool-edge-light:nth-child(3n) {
    background: #4de8ff;
    box-shadow: 0 0 12px #4de8ff, 0 0 25px rgba(77, 232, 255, 0.4);
    animation-delay: 0.8s;
}

@keyframes edgeLightPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Pool Water Surface */
.pool-water {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    cursor: none;
    background: linear-gradient(180deg, 
        rgba(0, 80, 160, 0.6) 0%, 
        rgba(0, 50, 120, 0.7) 30%, 
        rgba(0, 30, 80, 0.85) 70%, 
        rgba(0, 20, 60, 0.95) 100%
    );
}

#pool-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Caustic Light Patterns (underwater light refraction) */
.pool-caustics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    background:
        radial-gradient(ellipse 100px 80px at 20% 30%, rgba(0, 200, 255, 0.5), transparent),
        radial-gradient(ellipse 120px 90px at 50% 60%, rgba(0, 180, 255, 0.4), transparent),
        radial-gradient(ellipse 80px 100px at 80% 20%, rgba(0, 220, 255, 0.45), transparent),
        radial-gradient(ellipse 90px 70px at 35% 80%, rgba(0, 190, 255, 0.35), transparent),
        radial-gradient(ellipse 110px 85px at 70% 45%, rgba(0, 210, 255, 0.4), transparent);
    animation: causticsMove 8s ease-in-out infinite alternate;
}

@keyframes causticsMove {
    0% {
        background-position: 0% 0%, 10% 10%, 5% 5%, 15% 0%, 0% 10%;
        opacity: 0.12;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        background-position: 10% 10%, 0% 0%, 15% 15%, 5% 10%, 10% 0%;
        opacity: 0.15;
    }
}

/* Pool Floor Tiles */
.pool-tiles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Floating Service Cards */
.pool-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.pool-service-card {
    position: absolute;
    left: var(--float-x);
    top: var(--float-y);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 18px 14px;
    background: rgba(0, 40, 90, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 5;
    animation: poolFloat 5s ease-in-out infinite;
    animation-delay: calc(var(--float-delay, 0) * 0.6s);
}

.pool-service-card[data-float-delay="0"] { animation-delay: 0s; }
.pool-service-card[data-float-delay="1"] { animation-delay: 0.7s; }
.pool-service-card[data-float-delay="2"] { animation-delay: 1.4s; }
.pool-service-card[data-float-delay="3"] { animation-delay: 0.3s; }
.pool-service-card[data-float-delay="4"] { animation-delay: 1.0s; }
.pool-service-card[data-float-delay="5"] { animation-delay: 1.8s; }
.pool-service-card[data-float-delay="6"] { animation-delay: 0.5s; }
.pool-service-card[data-float-delay="7"] { animation-delay: 1.2s; }

@keyframes poolFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-3px) rotate(1deg);
    }
    75% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
}

.pool-service-card:hover {
    transform: translateY(-16px) scale(1.12) !important;
    background: rgba(0, 80, 160, 0.75);
    border-color: rgba(0, 220, 255, 0.6);
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.3),
        0 10px 40px rgba(0,0,0,0.3),
        inset 0 0 20px rgba(0, 200, 255, 0.08);
    z-index: 10;
}

.pool-card-glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.pool-service-card:hover .pool-card-glow {
    opacity: 1;
}

.pool-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 120, 200, 0.25));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    transition: var(--transition);
    border: 1px solid rgba(0, 200, 255, 0.15);
}

.pool-service-card:hover .pool-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.pool-card-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
}

/* Ripple circle under each card */
.pool-card-ripple {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 200, 255, 0.2), transparent);
    border-radius: 50%;
    animation: cardRipple 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardRipple {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
    50% { transform: translateX(-50%) scale(1.4); opacity: 0.15; }
}

/* Splash Effect Container */
.pool-splash-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.splash-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    animation: splashExpand 1s ease-out forwards;
    pointer-events: none;
}

@keyframes splashExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
        border-width: 1px;
        margin-left: -75px;
        margin-top: -75px;
    }
}

.splash-drop {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 220, 255, 0.7);
    border-radius: 50%;
    animation: splashDrop 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes splashDrop {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.3);
    }
}

/* Depth Labels */
.pool-depth-labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 30px 0;
    max-width: 400px;
    margin: 0 auto;
}

.depth-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.depth-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gray-700);
    vertical-align: middle;
    margin-right: 6px;
}

/* Pool Responsive */
@media (max-width: 992px) {
    .pool-water {
        height: 450px;
    }

    .pool-service-card {
        padding: 12px 14px 10px;
    }

    .pool-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pool-card-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .pool-showcase {
        padding: 60px 0 80px;
    }

    .pool-water {
        height: 400px;
    }

    .pool-outer {
        padding: 8px;
        border-radius: 18px;
    }

    .pool-water {
        border-radius: 12px;
    }

    .pool-service-card {
        padding: 10px 12px 8px;
    }

    .pool-card-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .pool-card-label {
        font-size: 0.65rem;
    }

    .pool-edge-light {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .pool-water {
        height: 360px;
    }

    .pool-service-card {
        padding: 8px 10px 6px;
        border-radius: 12px;
    }

    .pool-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .pool-card-label {
        font-size: 0.6rem;
    }
}

/* ---------- Section Headers ---------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.2) 0%, transparent 60%);
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow-lg);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--gray-400);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    position: absolute;
    top: 20%;
    right: -50px;
    width: 100px;
    height: 100px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--white);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 119, 204, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
}

.feature-text h4 {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- Services Section ---------- */
.services {
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.92) 50%, rgba(17, 24, 39, 0.95) 100%),
        url('original-assets/undrlight.jpeg') center/cover no-repeat fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(0, 212, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    margin-bottom: 24px;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 119, 204, 0.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
}

.service-icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 16px;
    opacity: 0.1;
    z-index: 0;
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* ---------- Video Showcase Section ---------- */
.video-showcase {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 14, 23, 0.92) 0%,
        rgba(0, 20, 50, 0.85) 50%,
        rgba(10, 14, 23, 0.92) 100%
    );
}

.video-showcase .container {
    position: relative;
    z-index: 2;
}

.video-section-header {
    margin-bottom: 40px;
}

/* Video Player Wrapper */
.video-player-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.08);
    aspect-ratio: 16/9;
    background: var(--dark);
}

/* Thumbnail */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.video-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 30, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-thumb-overlay {
    background: rgba(0, 10, 30, 0.6);
}

.video-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: videoPulse 2s ease-out infinite;
}

.video-play-btn::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.15);
    animation: videoPulse 2s ease-out infinite 0.5s;
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.video-play-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-play-text {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Inline YouTube Player */
.video-inline-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-inline-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
    }

    .video-play-btn::before {
        width: 85px;
        height: 85px;
    }

    .video-play-btn::after {
        width: 105px;
        height: 105px;
    }
}

/* ---------- Products Section ---------- */
.products {
    background: var(--dark);
}

.product-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--white);
    border-color: rgba(0, 212, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 119, 204, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
}

.product-card.hidden {
    display: none;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 204, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    transform: translateY(20px);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    z-index: 1;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.product-info > p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-meta span {
    font-size: 0.8rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}


.product-meta span i {
    font-size: 0.7rem;
}

.product-link {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-link:hover {
    gap: 10px;
}

/* ---------- More Products Expandable ---------- */
.more-products-section {
    margin-top: 50px;
    text-align: center;
}

.more-products-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-300);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.more-products-toggle:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent);
}

.more-products-toggle.active {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--accent);
}

.more-products-toggle .toggle-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.more-products-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.more-products-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.more-products-list.expanded {
    max-height: 800px;
    opacity: 1;
    margin-top: 30px;
}

.more-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.more-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.more-product-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(4px);
}

.more-product-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 119, 204, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.more-product-info {
    flex: 1;
    text-align: left;
}

.more-product-info h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.more-product-info p {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.more-product-info .product-price {
    font-size: 0.78rem !important;
}

.more-product-link {
    color: var(--gray-600);
    font-size: 0.75rem;
    transition: var(--transition);
}

.more-product-item:hover .more-product-link {
    color: var(--accent);
}

@media (max-width: 768px) {
    .more-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Marquee Section ---------- */
.marquee-section {
    padding: 40px 0;
    background: var(--dark-2);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.08);
    white-space: nowrap;
    transition: var(--transition);
}

.marquee-content span:hover {
    color: rgba(0, 212, 255, 0.3);
}

.marquee-dot {
    width: 8px !important;
    height: 8px;
    min-width: 8px;
    background: rgba(0, 212, 255, 0.3) !important;
    border-radius: 50%;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Instagram Feed Section ---------- */
.instagram-section {
    background: var(--dark);
    overflow: hidden;
}

/* Instagram Profile Header */
.insta-profile {
    margin-bottom: 50px;
}

.insta-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    transition: var(--transition);
}

.insta-profile-header:hover {
    border-color: rgba(225, 48, 108, 0.3);
    background: rgba(225, 48, 108, 0.03);
}

.insta-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    padding: 3px;
    position: relative;
}

.insta-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--dark);
}

.insta-profile-info h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.insta-profile-info p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.6;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 24px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(225, 48, 108, 0.4);
}

/* Instagram Embed Cards Grid */
.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.insta-embed-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    transition: var(--transition);
}

.insta-embed-card:hover {
    border-color: rgba(225, 48, 108, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.insta-embed-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.insta-embed-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: linear-gradient(135deg, rgba(240,148,51,0.08), rgba(225,48,108,0.08), rgba(188,24,136,0.08));
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.placeholder-content span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.placeholder-content p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Instagram Full Feed Embed */
.insta-full-feed {
    margin-bottom: 40px;
}

.insta-feed-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.insta-feed-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Instagram Feed Embed */
.insta-feed-embed {
    margin: 40px 0 30px;
}

.insta-feed-frame {
    max-width: 540px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.insta-feed-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    background: #fff;
    border-radius: var(--radius-lg);
}

.insta-feed-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 14px;
}

.insta-feed-note i {
    margin-right: 4px;
}

@media (max-width: 768px) {
    .insta-feed-frame iframe {
        height: 480px;
    }
}

/* Instagram CTA */
.insta-cta {
    text-align: center;
    padding-top: 20px;
}

.btn-instagram-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.btn-instagram-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(225, 48, 108, 0.5);
}

.btn-instagram-large i:first-child {
    font-size: 1.3rem;
}

.btn-instagram-large i:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

.insta-cta-text {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-top: 16px;
}

.insta-cta-text strong {
    color: var(--white);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
}

/* ---------- Why Us Section ---------- */
.why-us {
    background: var(--dark-2);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantage-list {
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.advantage-item:hover {
    padding-left: 10px;
}

.advantage-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 212, 255, 0.2);
    line-height: 1;
    min-width: 50px;
    transition: var(--transition);
}

.advantage-item:hover .advantage-number {
    color: var(--accent);
}

.advantage-content h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.advantage-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.floating-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    animation: float 5s ease-in-out infinite;
}

.float-stat:nth-child(2) {
    animation-delay: 1.5s;
}

.float-stat i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background: var(--dark);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gray-300);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 60, 130, 0.88), rgba(0, 100, 180, 0.85), rgba(0, 140, 200, 0.82)),
        url('original-assets/swim1.jpeg') center/cover no-repeat;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.05;
    border-radius: 40%;
}

.wave-1 {
    top: -60%;
    left: -50%;
    background: var(--white);
    animation: wave 15s linear infinite;
}

.wave-2 {
    top: -55%;
    left: -45%;
    background: var(--white);
    animation: wave 12s linear infinite reverse;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(0, 212, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 119, 204, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.contact-note {
    font-size: 0.8rem !important;
    color: var(--gray-600) !important;
    margin-top: 4px;
}

.contact-social {
    margin-top: 24px;
}

.contact-social h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 0.95rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--dark);
    padding: 2px 8px;
    border-radius: 4px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

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

/* ---------- Map ---------- */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    filter: grayscale(0.8) brightness(0.7) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    padding-top: 80px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    height: 60px;
}

.footer-brand .logo-icon img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.footer-brand .logo-icon img.bg-removed {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.35)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.12));
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ---------- WhatsApp Float ---------- */
.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;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-accent);
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-visual {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar-left span,
    .top-bar-right > .top-bar-item span {
        display: none;
    }

    .top-bar-container {
        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .mega-menu {
        display: none !important;
    }

    .dropdown-arrow {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255,255,255,0.05);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 10px;
        border-radius: 50%;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 200px;
    }

    .categories-showcase {
        padding: 60px 0;
    }

    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .insta-profile-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .insta-feed-wrapper iframe {
        height: 450px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-accent {
        display: none;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .back-to-top {
        bottom: 85px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .product-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .insta-feed-grid {
        grid-template-columns: 1fr;
    }

    .insta-embed-card {
        aspect-ratio: 4/5;
    }

    .btn-instagram-large {
        font-size: 0.9rem;
        padding: 14px 28px;
    }

    .insta-feed-wrapper iframe {
        height: 380px;
    }
}

/* ---------- Selection Color ---------- */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: var(--white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}
