/* ===================================
   E-Ticketing Landing Page Styles
   Modern, Professional Design
   =================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-blue: #1e3a8a;
    --primary-dark: #1e293b;
    --primary-teal: #0891b2;
    --accent-teal: #06b6d4;
    --accent-cyan: #22d3ee;
    --dark-blue: #0f172a;
    --light-blue: #e0f2fe;
    --success-green: #059669;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-teal: 0 0 30px rgba(8, 145, 178, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(30, 58, 138, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    transition: all var(--transition-normal);
    padding: 1.25rem 0;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-dark) !important;
}

.navbar-brand .logo-img {
    width: 38px;
    height: 38px;
    transition: transform var(--transition-normal);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.08);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-teal) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231f2937' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    background-color: #0e7490;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
}

/* Background decorative circles */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: rgba(8, 145, 178, 0.3);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(20, 184, 166, 0.25);
    border-radius: 50%;
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.hero-shape-1 {
    width: 16px;
    height: 16px;
    background: #22d3ee;
    top: 20%;
    left: 10%;
}

.hero-shape-2 {
    width: 10px;
    height: 10px;
    background: #67e8f9;
    top: 35%;
    right: 15%;
}

.hero-shape-3 {
    width: 8px;
    height: 8px;
    background: #99f6e4;
    bottom: 30%;
    left: 20%;
}

/* Subtle grid pattern */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #22d3ee;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title-highlight {
    color: #22d3ee;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;

    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 580px;
}

/* Login Cards */
.login-buttons-wrapper {
    margin: 2rem 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-teal);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.login-card:hover::before {
    transform: scaleX(1);
}

.login-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-teal);
}

.login-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.login-card:hover .login-icon {
    transform: scale(1.08);
}

.login-icon.client {
    background: #0891b2;
    color: var(--white);
}

.login-icon.staff {
    background: #1e3a8a;
    color: var(--white);
}

.login-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 160px;
}

.login-btn.btn-client {
    background: #0891b2;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
}

.login-btn.btn-staff {
    background: #1e3a8a;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--white);
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all var(--transition-normal);
}

.feature-highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.feature-highlight-item i {
    font-size: 1.125rem;
    color: #22d3ee;
}

.feature-highlight-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.feature-highlight-item p {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.scroll-indicator a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(3px);
}
    opacity: 1;
}

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

/* ===================================
   Wave Divider
   =================================== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--gray-50);
}

.wave-divider.wave-white .shape-fill {
    fill: var(--white);
}

.wave-divider.wave-dark .shape-fill {
    fill: var(--dark-blue);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 100px 0 80px;
    background: var(--gray-50);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    margin: 1.25rem auto;
    border-radius: 2px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-teal);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon.icon-primary {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
}

.feature-icon.icon-success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-green);
}

.feature-icon.icon-info {
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-teal);
}

.feature-icon.icon-warning {
    background: rgba(244, 98, 58, 0.1);
    color: #ea580c;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0891b2;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.process-step:hover .step-number {
    transform: scale(1.12);
    box-shadow: var(--shadow-xl), var(--shadow-glow-teal);
}

.step-icon {
    font-size: 2.25rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.process-step:hover .step-icon {
    transform: translateY(-4px);
}

.process-step h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   Benefits/Stats Section
   =================================== */
.benefits-section {
    padding: 100px 0;
    background-color: #0f172a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 138, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(8, 145, 178, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-section .section-title,
.benefits-section .section-subtitle {
    color: var(--white);
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card i {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-teal);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-accordion .card {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--white);
}

.faq-accordion .card:hover {
    box-shadow: var(--shadow-md);
}

.faq-accordion .card-header {
    background: var(--white);
    border: none;
    padding: 0;
}

.faq-accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-accordion .btn-link:hover {
    color: var(--primary-teal);
    background: var(--gray-50);
}

.faq-accordion .btn-link .fas {
    transition: transform var(--transition-normal);
}

.faq-accordion .btn-link[aria-expanded="true"] .fas,
.faq-accordion .btn-link:not(.collapsed) .fas {
    transform: rotate(180deg);
}

/*.faq-accordion .btn-link::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform var(--transition-normal);
    font-size: 0.85rem;
    color: var(--text-light);
}*/

.faq-accordion .btn-link:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--primary-teal);
}

.faq-accordion .btn-link:not(.collapsed) {
    color: var(--primary-teal);
}

.faq-accordion .card-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    background: var(--white);
    font-size: 0.95rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-teal);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    background: var(--white);
    border-color: rgba(8, 145, 178, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 2.75rem;
    color: var(--primary-teal);
    margin-bottom: 1.25rem;
    display: block;
}

.contact-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card .text-muted {
    color: var(--text-medium) !important;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 0 1.5rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer h6 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer .logo-footer img {
    width: 36px;
    height: 36px;
}

.footer .logo-footer h5 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.footer p {
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    display: inline-block;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.footer-bottom .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .feature-highlights {
        gap: 1rem;
    }

    .feature-highlight-item {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .feature-highlight-item i {
        font-size: 1rem;
    }

    .feature-highlight-item h4 {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 70px;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .feature-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-highlight-item {
        padding: 0.5rem 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .login-card {
        margin-bottom: 1.25rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-card {
        margin-bottom: 1.25rem;
    }
}

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

    .section-title {
        font-size: 1.625rem;
    }

    .login-card h3 {
        font-size: 1.15rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-gradient {
    color: var(--primary-teal);
}

.bg-gradient-primary {
    background-color: var(--primary-blue);
}

.shadow-hover {
    transition: box-shadow var(--transition-normal);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-xl);
}

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
