:root {
    --primary: #0a2463;
    /* Deep Blue - More Premium */
    --primary-light: #3e92cc;
    --primary-gradient: linear-gradient(135deg, #0a2463 0%, #1e56a0 100%);
    --secondary: #00c853;
    /* Vibrant Green */
    --secondary-hover: #009624;
    --secondary-gradient: linear-gradient(135deg, #00c853 0%, #009624 100%);
    --text-main: #1d1d1f;
    --text-light: #6e6e73;
    --bg-body: #f5f5f7;
    --card-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    /* Subtle background pattern/gradient for glassmorphism to work over */
    background-image:
        radial-gradient(at 0% 0%, rgba(62, 146, 204, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 200, 83, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.text-highlight {
    color: var(--secondary);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pillow shape */
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-gradient);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.05em;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-light);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 86, 160, 0.85) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 10rem 0 8rem;
    /* More space */
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    /* Modern slanted edge */
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Benefits */
.benefits-section {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
    /* Overlap with hero */
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    background: rgba(62, 146, 204, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Proof / Stats */
.stats-section {
    padding: 4rem 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* How It Works */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        gap: 3rem;
    }
}

.step {
    flex: 1;
    position: relative;
    padding: 2rem;
    text-align: left;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(10, 36, 99, 0.08);
    /* Watermark style */
    position: absolute;
    top: 0;
    right: 1rem;
    line-height: 1;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.step p {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

/* Form Section */
.form-section {
    background: var(--primary);
    background: linear-gradient(135deg, #0a2463 0%, #001540 100%);
    position: relative;
}

/* Decorative circles for glassmorphism background */
.form-section::before,
.form-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.2;
    filter: blur(80px);
}

.form-section::before {
    top: 10%;
    left: 10%;
}

.form-section::after {
    bottom: 10%;
    right: 10%;
}

.form-container-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 600px;
    /* Wider form */
    margin: 0 auto;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.7rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 0;
    /* Handled by group */
    transition: var(--transition);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.5);
    outline: none;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-item.active .admin-icon-rotate {
    transform: rotate(180deg);
}

/* Footer */
.main-footer {
    background: #051233;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.honey {
    display: none;
}