/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fcff;
    --bg-card: rgba(0, 119, 182, 0.03);
    --bg-card-hover: rgba(0, 119, 182, 0.08);
    --blue: #0077B6;
    --blue-light: #00D9FF;
    --blue-dark: #023E7D;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: rgba(0, 119, 182, 0.12);
    --border-blue: rgba(0, 119, 182, 0.3);
    --gradient-blue: linear-gradient(135deg, #00D9FF, #0077B6, #023E7D);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    --shadow: 0 20px 60px rgba(0, 119, 182, 0.08);
    --shadow-blue: 0 10px 40px rgba(0, 119, 182, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.gold {
    color: var(--blue);
}

.blue {
    color: var(--blue);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 24px;
    color: var(--blue);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--blue);
}

.btn-nav {
    background: var(--gradient-blue) !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-blue);
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 217, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 119, 182, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 217, 255, 0.06) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid var(--border-blue);
    border-radius: 50px;
    font-size: 13px;
    color: var(--blue-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 320px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 50%);
    animation: cardGlow 6s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.hero-card-icon {
    font-size: 48px;
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
}

.hero-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.hero-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-muted);
}

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

/* ===== SECTION COMMON ===== */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid var(--border-blue);
    border-radius: 50px;
    font-size: 12px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 36px 28px;
    text-align: center;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 119, 182, 0.1);
    color: var(--blue);
    font-size: 22px;
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== PRODUCT RANGE ===== */
.product-range {
    background: var(--bg-primary);
}

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

.range-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.range-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00D9FF, #0077B6);
    opacity: 0;
    transition: var(--transition);
}

.range-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
}

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

.range-icon-wrap {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.15);
    color: var(--blue);
    font-size: 26px;
    transition: var(--transition);
}

.range-card:hover .range-icon-wrap {
    background: rgba(0, 119, 182, 0.15);
    transform: scale(1.05);
}

.range-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.range-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.range-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

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

@media (max-width: 968px) {
    .range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .range-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRODUCTS / PLAN BLOCKS (JetFinx Style) ===== */
.products {
    background: var(--bg-secondary);
}

.product-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    margin-bottom: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.product-block:hover {
    border-color: var(--border-blue);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-blue);
}

.product-block-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.product-block-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.15);
    color: var(--blue);
    font-size: 26px;
    transition: var(--transition);
}

.product-block:hover .product-block-icon {
    background: rgba(0, 119, 182, 0.15);
    transform: scale(1.05);
}

.product-block-info h3 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-block-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.product-block-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-block-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-block-points .point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.product-block-points .point i {
    color: var(--blue);
    font-size: 14px;
}

.product-block-right .btn {
    align-self: flex-start;
}

@media (max-width: 968px) {
    .product-block {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .product-block {
        padding: 24px;
    }

    .product-block-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-block-points {
        grid-template-columns: 1fr;
    }

    .product-block-right .btn {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 119, 182, 0.2);
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step {
    position: relative;
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid var(--border-blue);
    color: var(--blue);
    font-size: 26px;
}

.step-line {
    position: absolute;
    top: 36px;
    left: calc(50% + 50px);
    width: calc(100% - 60px);
    height: 1px;
    background: var(--border-blue);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
}

.stars {
    color: var(--blue);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 119, 182, 0.15);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.faq-question i {
    color: var(--blue);
    transition: var(--transition);
    font-size: 14px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-secondary);
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item i {
    color: var(--blue);
    width: 20px;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

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

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

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

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

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

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

/* ===== OCEAN/WATER THEME BACKGROUNDS ===== */

/* Update color variables for ocean theme */
:root {
    /* Keep existing gold accent but add ocean colors */
    --ocean-primary: #00D9FF;
    --ocean-secondary: #90E0EF;
    --ocean-dark: #0077B6;
    --ocean-light: #CAF0F8;
}

/* Hero section with ocean wave background */
.hero {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(240, 250, 255, 0.85) 100%),
        url('/static/images/bg-ocean-wave.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* About section with abstract waves */
.about {
    background-image:
        linear-gradient(180deg, rgba(248, 252, 255, 0.90) 0%, rgba(255, 255, 255, 0.92) 100%),
        url('/static/images/bg-waves-abstract.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Product sections with sky background */
.products,
.product-range {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 252, 255, 0.92) 100%),
        url('/static/images/bg-sky.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Mobile financing section - keep as is or add subtle wave */
.mobile-financing {
    position: relative;
    overflow: hidden;
}

.mobile-financing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/bg-waves-abstract.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.mobile-financing > .container {
    position: relative;
    z-index: 1;
}

/* Features section with mountains */
.features,
.how-it-works {
    background-image:
        linear-gradient(180deg, rgba(248, 252, 255, 0.92) 0%, rgba(255, 255, 255, 0.90) 100%),
        url('/static/images/bg-mountains.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FAQ and Contact sections with subtle wave */
.faq,
.contact {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(248, 252, 255, 0.95) 100%),
        url('/static/images/bg-waves-abstract.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Add ocean-inspired accents */
.hero-badge,
.section-tag {
    background: rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.3);
    color: var(--ocean-secondary);
}

/* Update hover effects with ocean colors */
.glass-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
}

/* Ocean-inspired button hover */
.btn-primary {
    background: linear-gradient(135deg, #00D9FF, #0077B6);
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.25);
}

/* Privacy Policy Page Styling */
body.privacy-page {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 252, 255, 0.88) 50%, rgba(255, 255, 255, 0.92) 100%),
        url('/static/images/bg-ocean-wave.png'),
        url('/static/images/bg-sky.png');
    background-size: cover, cover, cover;
    background-position: center, center top, center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Ensure backgrounds work on mobile */
@media (max-width: 768px) {
    .hero,
    .about,
    .products,
    .product-range,
    .features,
    .how-it-works,
    .faq,
    .contact {
        background-attachment: scroll;
    }

    body.privacy-page {
        background-attachment: scroll;
    }
}
