/* Global Styles */
:root {
    --primary-blue: #0047BA;
    /* Royal Blue */
    --deep-blue: #002A70;
    /* Deep Navy */
    --accent-cyan: #4FACFE;
    /* Electric Blue/Cyan for highlights */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --silver: #E1E1E1;
    --text-dark: #121212;
    --text-muted: #555555;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --gradient-hero: linear-gradient(135deg, #001f4d 0%, #0047BA 100%);
    --gradient-gold: linear-gradient(45deg, #FFD700, #FDB931);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 71, 186, 0.2);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('assets/images/cursor-drop.svg') 16 2, auto;
}

/* Ensure interactive elements also show the custom cursor or a pointer version */
a,
button,
input,
select,
textarea,
.btn {
    cursor: url('assets/images/cursor-drop.svg') 16 2, pointer;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    background: var(--accent-cyan);
    color: var(--deep-blue);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glow-sweep 3s infinite;
}

@keyframes glow-sweep {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.header .btn-primary {
    border-color: var(--primary-blue);
    /* Ensure button is visible on white header */
}

.header .btn-primary:hover {
    background-color: #000000;
    color: var(--white);
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    color: var(--deep-blue);
    font-size: 1.6rem;
    line-height: 1;
    margin: 0;
}

.logo span {
    color: var(--accent-cyan);
    font-weight: 300;
}

.logo span::before {
    content: "| ";
    margin-right: 5px;
    color: var(--text-dark);
    /* Or match standard color if needed */
}

/* Hero Section with Bubbles */
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
    /* Offset for header */
}

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: rise var(--duration) infinite ease-in;
    left: var(--left);
    width: var(--size);
    height: var(--size);
    opacity: 0;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        transform: translateX(var(--drift));
    }

    100% {
        bottom: 120%;
        transform: translateX(0);
        opacity: 0;
    }
}

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

.hero-text .tagline {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero h1 span {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.hero h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(#fff, #b4d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

/* Feature Cards (Floating over hero bottom) */
.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* Product Shot - Real Image */
.hero-image-container {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    max-height: 550px;
    width: auto;
    z-index: 2;
    transform: rotate(5deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    animation: float-can 6s ease-in-out infinite;
}

@keyframes float-can {
    0% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(5deg);
    }
}

/* "Water" effect around can */
.water-splash {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite ease-in-out;
}

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

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

/* Lead Magnet Bar */
.lead-magnet-bar {
    background: var(--white);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Sections */
.benefits-section {
    background-color: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Updated Icon Styling for SVGs */
.benefit-card .icon-container {
    height: 60px;
    width: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.benefit-card svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-blue);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease;
    display: block;
}

.benefit-card:hover svg {
    transform: scale(1.1);
    stroke: var(--accent-cyan);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.reg-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    /* Prevent shrinking */
    color: var(--accent-cyan);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

/* Registration / Data Collection Section */
.registration-section {
    background: #001233;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.registration-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Remove gap for seamless look */
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.reg-info {
    background: var(--gradient-hero);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* For water effect */
}

/* Subtle pattern for reg-info */
.reg-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.reg-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    z-index: 1;
}

.reg-list {
    list-style: none;
    margin-top: 30px;
    z-index: 1;
}

.reg-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--deep-blue);
    flex-shrink: 0;
}

/* Form Styling */
.reg-form-wrapper {
    padding: 60px;
    background: var(--white);
    color: var(--text-dark);
}

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

.reg-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

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

.form-full {
    grid-column: span 2;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-blue);
}

.input-group input,
.input-group select {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background: #fdfdfd;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 71, 186, 0.1);
}

.cta-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* Footer */
footer {
    background: var(--white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 900px) {
    .registration-container {
        grid-template-columns: 1fr;
    }

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

    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

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

    .lead-magnet-bar {
        display: block;
        /* Show on mobile */
        padding: 40px 20px;
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on tablet/mobile */
        gap: 40px;
    }
}

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

    .form-full {
        grid-column: span 1;
    }

    .reg-form-wrapper {
        padding: 30px;
    }

    .reg-info {
        padding: 40px 30px;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .logo span::before {
        content: none;
        margin: 0;
    }

    .logo span {
        margin-left: 2px;
        font-size: 0.9em;
    }

    /* Mobile Icon Fixes */
    .benefit-card .icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .reg-list li {
        align-items: flex-start;
        /* Better alignment for multi-line text */
    }

    .reg-icon {
        margin-top: 2px;
        /* Align with first line of text */
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}