/* =========================================
   VARIABLES & RESET (Color: #1caffc)
========================================= */
:root {
    --brand: #1caffc;
    --brand-hover: #0b99e6;
    --brand-light: #e0f6ff;
    --dark: #0f172a;
    --gray-light: #f8fafc;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
}

.font-heading { font-weight: 700; }
.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }
.bg-brand-light { background-color: var(--brand-light) !important; }
.py-6 { padding-top: 90px; padding-bottom: 90px; }
.letter-spacing-2 { letter-spacing: 2px; }

.text-brand-gradient {
    background: linear-gradient(135deg, #1caffc 0%, #63ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: none;
    transition: 0.3s;
}
.btn-brand:hover {
    background: var(--brand-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 175, 252, 0.3);
}

.btn-brand-outline {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
}
.btn-brand-outline:hover {
    background: var(--brand);
    color: #fff;
}

.shadow-brand { box-shadow: 0 10px 25px -5px rgba(28, 175, 252, 0.4); }
.hover-lift:hover { transform: translateY(-3px); transition: transform 0.3s; }

/* =========================================
   NAVBAR
========================================= */
.top-bar { background-color: #020617; }
.social-links a { color: rgba(255,255,255,0.7); transition: 0.3s; }
.social-links a:hover { color: var(--brand); }

.navbar { transition: 0.3s; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); }
.brand-icon {
    width: 35px; height: 35px; background: var(--brand); color: #fff;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-link.active { color: var(--brand) !important; }
.nav-link:hover { color: var(--brand) !important; }

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    min-height: 100vh;
    padding-top: 0;
    background-color: #0f172a;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.8) 60%, rgba(15, 23, 42, 0.6) 100%);
}

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.dot { width: 8px; height: 8px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 10px var(--brand); }

.icon-circle-glass {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 1.2rem;
}

.booking-card { position: relative; }
.glow-effect {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; background: var(--brand);
    filter: blur(80px); opacity: 0.2; z-index: -1;
}
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(28, 175, 252, 0.1);
}

/* =========================================
   CARDS & FEATURES
========================================= */
.icon-sq {
    width: 60px; height: 60px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    transition: 0.3s;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 175, 252, 0.2);
    box-shadow: 0 20px 25px -5px rgba(28, 175, 252, 0.1);
}

.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-card .icon-circle {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    transition: 0.3s;
}
.service-card:hover .icon-circle {
    background-color: var(--brand) !important;
    color: #fff !important;
    border-color: var(--brand) !important;
}

.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.product-card .product-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}
.product-card .product-img-wrap {
    overflow: hidden;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hover-brand:hover { color: var(--brand) !important; }

/* =========================================
   MISC
========================================= */
.divide-x > div { border-right: 1px solid #e5e7eb; }
.divide-x > div:last-child { border-right: none; }

.avatar { width: 40px; height: 40px; }

@media (max-width: 768px) {
    .divide-x > div { border-right: none; border-bottom: 1px solid #e5e7eb; padding-bottom: 20px; }
    .hero-section { padding: 50px 0; }
    .py-6 { padding-top: 60px; padding-bottom: 60px; }
}
