/* EduVenture India - NEET-PG 2026 Landing Page Styling */

/* Core Design System Variables */
:root {
    --bg-dark: #070D1F;
    --bg-card: #0E1735;
    --bg-card-light: #16244E;
    --primary: #004AAD;
    --primary-light: #3A86C8;
    --accent: #FFC857;
    --accent-hover: #E6B23C;
    --text-light: #F4F7FC;
    --text-gray: #A2B1D2;
    --text-dark: #0A1128;
    --success: #2EC4B6;
    --warning: #FF9F1C;
    --danger: #FF3366;

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

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 200, 87, 0.25);
    --shadow-blue: 0 0 20px rgba(58, 134, 200, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* Global Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

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

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--bg-card-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

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

.color-gold {
    color: var(--accent) !important;
}

.font-bold {
    font-weight: 700;
}

.scroll-offset {
    scroll-margin-top: 100px;
}

/* Common Section Header elements */
.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(58, 134, 200, 0.15);
    color: var(--primary-light);
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(58, 134, 200, 0.3);
}

.bg-gold-tag {
    background: rgba(255, 200, 87, 0.15) !important;
    color: var(--accent) !important;
    border-color: rgba(255, 200, 87, 0.3) !important;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Buttons style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 134, 200, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 200, 87, 0.1);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

/* Top Navigation Bar styling */
.top-bar {
    background: rgba(7, 13, 31, 0.95);
    border-bottom: var(--border-glass);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    color: var(--text-gray);
}

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

.top-contacts {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-contacts a:hover {
    color: var(--accent);
}

.bar-separator {
    opacity: 0.3;
}

.top-socials {
    display: flex;
    gap: 1rem;
}

.top-socials a:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Header Section style */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 13, 31, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--border-glass);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo-img {
    height: 99px;
    width: auto;
    object-fit: contain;
}

.header-logo-img:hover {
    transform: scale(1.03)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
}

.nav-btn:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section style */
.hero-section {
    position: relative;
    padding: 6rem 0 5rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 74, 173, 0.15) 0%, rgba(7, 13, 31, 0) 60%),
        radial-gradient(circle at 90% 80%, rgba(255, 200, 87, 0.05) 0%, rgba(7, 13, 31, 0) 50%);
    border-bottom: var(--border-glass);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.announcement-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 200, 87, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 200, 87, 0.2);
    margin-bottom: 1.5rem;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 200, 87, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 200, 87, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 200, 87, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 200, 87, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(120deg, var(--accent) 0%, #FFF5CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text-blue {
    background: linear-gradient(120deg, var(--primary-light) 0%, #BFE3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-card-wrapper {
    width: 100%;
}

/* Countdown Card styling */
.countdown-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(14, 23, 53, 0.8));
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.countdown-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.time-block {
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    padding: 1rem 0.5rem;
    border-radius: 12px;
}

.time-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

.countdown-target {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.card-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
}

.next-milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 74, 173, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 74, 173, 0.2);
}

.next-milestone i {
    font-size: 1.5rem;
    color: var(--accent);
}

.milestone-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
}

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

/* Highlights Quick Bar styling */
.highlights-section {
    background: rgba(7, 13, 31, 0.6);
    padding: 2.5rem 0;
    border-bottom: var(--border-glass);
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-box:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.hl-icon {
    width: 48px;
    height: 48px;
    background: rgba(58, 134, 200, 0.15);
    border: 1px solid rgba(58, 134, 200, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
}

.highlight-box:nth-child(even) .hl-icon {
    background: rgba(255, 200, 87, 0.15);
    border-color: rgba(255, 200, 87, 0.3);
    color: var(--accent);
}

.hl-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

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

/* About Section style */
.about-section {
    padding: 7rem 0;
    border-bottom: var(--border-glass);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

.about-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-showcase-box {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-light));
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    text-align: center;
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 74, 173, 0.3) 0%, rgba(7, 13, 31, 0) 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.brand-showcase-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.showcase-sub {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.mini-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 1rem;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Timeline Milestones style */
.schedule-section {
    padding: 7rem 0;
    background: rgba(7, 13, 31, 0.3);
    border-bottom: var(--border-glass);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 3.5rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-badge {
    position: absolute;
    right: -24px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -24px;
    right: auto;
}

.timeline-card {
    width: 90%;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.timeline-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.timeline-tag.urgent {
    background: rgba(255, 51, 102, 0.15);
    color: var(--danger);
}

.timeline-tag.info {
    background: rgba(58, 134, 200, 0.15);
    color: var(--primary-light);
}

.timeline-tag.exam {
    background: rgba(255, 200, 87, 0.15);
    color: var(--accent);
}

.timeline-tag.success {
    background: rgba(46, 196, 182, 0.15);
    color: var(--success);
}

/* Custom styles for active/current timeline elements */
.timeline-item.current-event .timeline-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary-light);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(58, 134, 200, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 134, 200, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(58, 134, 200, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(58, 134, 200, 0);
    }
}

.timeline-item.current-event .timeline-card {
    border-color: rgba(58, 134, 200, 0.4);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.15);
}

.schedule-footer {
    margin-top: 4rem;
}

.info-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(58, 134, 200, 0.08);
    border: 1px dashed rgba(58, 134, 200, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.info-alert i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

/* Exam Pattern comparison layout */
.pattern-section {
    padding: 7rem 0;
    border-bottom: var(--border-glass);
}

.comparison-container {
    max-width: 950px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pattern-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.pattern-card.old {
    border-right: 3px solid rgba(255, 255, 255, 0.05);
}

.pattern-card.new {
    border: 1.5px solid rgba(255, 200, 87, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, var(--bg-card), rgba(22, 36, 78, 0.4));
}

.pattern-card.new::after {
    content: 'RECOMMENDED STRATEGY';
    position: absolute;
    top: 20px;
    right: -40px;
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.25rem 3rem;
    letter-spacing: 0.05em;
}

.card-pattern-header {
    margin-bottom: 2rem;
}

.card-pattern-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pattern-badge-lbl {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.pattern-badge-lbl.gold {
    background: rgba(255, 200, 87, 0.15);
    color: var(--accent);
}

.pattern-details {
    list-style: none;
}

.pattern-details li {
    display: flex;
    justify-content: flex-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pattern-details li:last-child {
    border-bottom: none;
}

.detail-name {
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.detail-value {
    font-size: 1.1rem;
}

.pattern-divider {
    display: flex;
    justify-content: center;
    z-index: 5;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-glass);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.pattern-same-box {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.pattern-same-box h4 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.same-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.same-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.same-item i {
    font-size: 1.25rem;
    color: var(--primary-light);
    margin-top: 0.2rem;
}

.same-item div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.same-item div span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Pacing Calculator widget style */
.pacing-widget-box {
    background: linear-gradient(135deg, rgba(14, 23, 53, 0.6), rgba(22, 36, 78, 0.3));
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.pacing-widget-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pacing-widget-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.slider-wrapper {
    margin-bottom: 2.5rem;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.pacing-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    margin-bottom: 1.5rem;
}

.pacing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 200, 87, 0.6);
    transition: var(--transition);
}

.pacing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.current-slider-value {
    text-align: center;
    font-size: 1.05rem;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.calc-card {
    background: rgba(7, 13, 31, 0.4);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 1.5rem;
}

.calc-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.calc-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0.5rem 0;
}

.calc-card-value.success {
    color: var(--success);
}

.calc-card-value.warning {
    color: var(--warning);
}

.calc-card-value.danger {
    color: var(--danger);
}

.calc-card-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Accordion and wizard changes sections */
.changes-section {
    padding: 7rem 0;
    border-bottom: var(--border-glass);
}

.changes-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    margin-top: 3rem;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: rgba(58, 134, 200, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accordion-num {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-gray);
    margin-right: 1.25rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-num {
    background: var(--primary);
    color: var(--text-light);
}

.accordion-header h3 {
    font-size: 1.1rem;
    flex-grow: 1;
    color: var(--text-light);
}

.accordion-icon {
    font-size: 1rem;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Interactive Eligibility State Selection Wizard & Checklist */
.interactive-guides-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wizard-box,
.checklist-box {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.wizard-box h3,
.checklist-box h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wizard-intro {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.wizard-field {
    margin-bottom: 1.25rem;
}

.wizard-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wizard-input {
    width: 100%;
    background: rgba(7, 13, 31, 0.5);
    border: var(--border-glass);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.wizard-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(58, 134, 200, 0.15);
}

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-field input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.checkbox-field label {
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}

.wizard-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
    border: 1px solid transparent;
}

.wizard-result.eligible {
    background: rgba(46, 196, 182, 0.15);
    border-color: rgba(46, 196, 182, 0.3);
    color: var(--text-light);
    display: block;
}

.wizard-result.warning-state {
    background: rgba(255, 159, 28, 0.15);
    border-color: rgba(255, 159, 28, 0.3);
    color: var(--text-light);
    display: block;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checklist-cb {
    margin-top: 0.25rem;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.checklist-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.checklist-cb:checked+.checklist-text {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Infographic poster gallery styling */
.gallery-section {
    padding: 7rem 0;
    background: rgba(7, 13, 31, 0.2);
    border-bottom: var(--border-glass);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.poster-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition);
}

.poster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.poster-img-container {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0f162c;
}

.poster-card:first-child .poster-img-container {
    /* For logo poster which is vertical, contain it properly */
    aspect-ratio: 4 / 3;
}

.poster-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.poster-card:hover .poster-thumb {
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.poster-overlay i {
    font-size: 1.8rem;
    color: var(--accent);
}

.poster-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.poster-info {
    padding: 1.5rem;
}

.poster-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.poster-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Modal for Image Preview */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(7, 13, 31, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-gray);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1200;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-content-wrapper {
    width: 90%;
    max-width: 700px;
    text-align: center;
    padding: 2rem;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: var(--border-glass);
}

.modal-caption {
    margin: 1.5rem auto 0 auto;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Booking counseling and form section */
.contact-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 200, 87, 0.05) 0%, rgba(7, 13, 31, 0) 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 74, 173, 0.1) 0%, rgba(7, 13, 31, 0) 60%);
}

.contact-text-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-text-area p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benefit-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-point i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.benefit-point div strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.benefit-point div {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.direct-calls-box h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.call-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.whatsapp-btn {
    border-color: rgba(46, 196, 182, 0.4);
    color: var(--success);
}

.whatsapp-btn:hover {
    background: rgba(46, 196, 182, 0.1);
}

/* Consultation Form Card styling */
.form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: rgba(7, 13, 31, 0.6);
    border: var(--border-glass);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    color: var(--text-light);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 200, 87, 0.15);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A2B1D2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea.form-input {
    resize: none;
}

.required {
    color: var(--danger);
}

.form-submit-btn {
    margin-top: 1rem;
}

/* Success form view */
.form-success-box {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
}

.form-success-box i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.form-success-box h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.form-success-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer layout */
.footer {
    background: #040816;
    border-top: var(--border-glass);
    padding: 6rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.footer-links h4,
.footer-contacts h4 {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contacts h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links ul li a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-list li i {
    font-size: 1.1rem;
    color: var(--primary-light);
    margin-top: 0.2rem;
}

.footer-bell-note {
    font-size: 0.85rem;
    color: var(--accent);
}

.footer-bottom {
    background: #02040b;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.footer-socials-bottom {
    display: flex;
    gap: 1rem;
}

.footer-socials-bottom a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-glass);
}

.footer-socials-bottom a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Floating Widgets style */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-whatsapp {
    background: #25D366;
    color: #fff;
}

.float-phone {
    background: var(--primary);
    color: #fff;
}

/* Subtle scroll/fade-in animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.appear {
    opacity: 1 !important;
    transform: none !important;
}

/* Mobile responsive breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-graphic {
        order: -1;
    }

    .changes-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .form-wrapper {
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: var(--border-glass);
        z-index: 998;
    }

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

    .nav-btn {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        justify-content: flex-start;
        padding-left: 45px;
    }

    .timeline-badge {
        left: -4px !important;
    }

    .timeline-card {
        width: 100%;
    }

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

    .pattern-divider {
        margin: 1rem 0;
    }

    .same-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pacing-widget-box {
        padding: 2rem 1.5rem;
    }

    .calculator-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .poster-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-num {
        font-size: 1.8rem;
    }

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

    .form-card {
        padding: 2rem 1.5rem;
    }

    .call-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .floating-widget {
        bottom: 20px;
        right: 20px;
    }
}