/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* GroWise Brand Colors */
:root {
    --growise-green: #7CB342;
    --growise-dark-green: #689F38;
    --growise-light-green: #8BC34A;
    --growise-accent: #4CAF50;
    --primary-color: var(--growise-green);
    --secondary-color: var(--growise-dark-green);
    --accent-color: var(--growise-light-green);
    --bronze-color: #cd7f32;
    --silver-color: #c0c0c0;
    --gold-color: #ffd700;
    --success-color: var(--growise-accent);
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, var(--growise-green) 0%, var(--growise-dark-green) 100%);
    --gradient-hero: linear-gradient(135deg, var(--growise-dark-green) 0%, var(--growise-green) 50%, var(--growise-light-green) 100%);
    --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);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Ensure proper layout for Odoo website */
#wrap {
    position: relative;
    width: 100%;
}

#wrap > .oe_structure {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hero Section */
.hero-section {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: var(--gradient-hero) !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)); }
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
}

.btn-hero {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-color);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Why Partner Section */
.why-partner-section {
    background: #ffffff !important;
    position: relative !important;
    padding: 5rem 0 !important;
    min-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.feature-card {
    background: #ffffff !important;
    padding: 2.5rem 2rem !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Packages Section */
.packages-section {
    background: #f8fafc !important;
    position: relative;
    padding: 5rem 0 !important;
    min-height: 600px !important;
    display: block !important;
    visibility: visible !important;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.package-card {
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 2rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bronze-card {
    border-image: linear-gradient(135deg, var(--bronze-color), #b8860b) 1;
}

.bronze-card:hover {
    border-image: linear-gradient(135deg, var(--bronze-color), #daa520) 1;
    box-shadow: 0 25px 50px -12px rgba(205, 127, 50, 0.3);
}

.silver-card {
    border-image: linear-gradient(135deg, var(--silver-color), #a8a8a8) 1;
    position: relative;
}

.silver-card:hover {
    border-image: linear-gradient(135deg, var(--silver-color), #d3d3d3) 1;
    box-shadow: 0 25px 50px -12px rgba(192, 192, 192, 0.3);
}

.gold-card {
    border-image: linear-gradient(135deg, var(--gold-color), #ffed4e) 1;
}

.gold-card:hover {
    border-image: linear-gradient(135deg, var(--gold-color), #fbbf24) 1;
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
    animation: popularPulse 2s infinite;
}

@keyframes popularPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.package-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    transition: var(--transition);
}

.bronze-card .package-icon {
    background: linear-gradient(135deg, var(--bronze-color), #b8860b);
}

.silver-card .package-icon {
    background: linear-gradient(135deg, var(--silver-color), #a8a8a8);
}

.gold-card .package-icon {
    background: linear-gradient(135deg, var(--gold-color), #ffed4e);
    color: var(--dark-color);
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(10deg);
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.package-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.package-body {
    padding: 0 2rem 2rem;
    flex-grow: 1;
}

.service-category {
    margin-bottom: 2rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.service-category:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.service-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.service-category h5 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    transition: var(--transition);
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-list li:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

.package-footer {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.btn-package {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-bronze {
    background: linear-gradient(135deg, var(--bronze-color), #b8860b);
    color: #ffffff;
}

.btn-bronze:hover {
    background: linear-gradient(135deg, #b8860b, var(--bronze-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-silver {
    background: linear-gradient(135deg, var(--silver-color), #a8a8a8);
    color: var(--dark-color);
}

.btn-silver:hover {
    background: linear-gradient(135deg, #a8a8a8, var(--silver-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-color);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-color), #ffed4e);
    color: var(--dark-color);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffed4e, var(--gold-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-color);
}

.btn-outline-package {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-outline-package:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Honeypot field (hidden) */
input[name="website"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Custom Quote Section */
.custom-quote-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.custom-quote-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.custom-quote-section p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.btn-custom-quote {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.btn-custom-quote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

/* Slide-over Styles */
.slide-over {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow: hidden;
}

.slide-over.active {
    right: 0;
}

.slide-over-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-over-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
}

.slide-over-header h5 {
    margin: 0;
    font-weight: 600;
}

.slide-over-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.slide-over-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Slide-over Backdrop */
.slide-over-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
}

.slide-over-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Service Categories in Customizer */
.customize-service-category {
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.customize-service-category h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.customize-service-category h6 i {
    margin-right: 0.5rem;
}

.service-checkbox-item {
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.service-checkbox-item:hover {
    background: #f8fafc;
    border-color: #e5e7eb;
}

.service-checkbox-item.selected {
    background: #eff6ff;
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
}

/* Package Service Items */
.package-service-item {
    padding: 0.75rem 1rem;
    background: #eff6ff;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dbeafe;
    transition: var(--transition);
}

.package-service-item.removed {
    background: #fef2f2;
    border-color: #fecaca;
    text-decoration: line-through;
    opacity: 0.7;
}

.remove-service-btn {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.remove-service-btn:hover {
    background: var(--danger-color);
    color: white;
}

/* Form Enhancements */
.form-control {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* SVG Icons */
.svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.svg-icon-lg {
    width: 48px;
    height: 48px;
}

.svg-icon-xl {
    width: 64px;
    height: 64px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .package-card {
        margin-bottom: 1.5rem;
    }
    
    .package-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .package-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .package-footer {
        padding: 1.5rem;
    }
    
    .service-category {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .why-partner-section,
    .packages-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-package {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .btn-custom-quote {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
}

/* ============================================
   SUCCESS PAGE STYLES
   ============================================ */

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotateZ(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotateZ(720deg);
    }
}

/* Success Page Section */
.success-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.success-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Success Card */
.success-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #7CB342, #8BC34A, #4CAF50);
}

/* Success Icon */
.success-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon-wrapper.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Fallback - ensure checkmark is visible even if animation fails */
.success-icon-wrapper.animate-in .success-checkmark-circle,
.success-icon-wrapper.animate-in .success-checkmark-check {
    stroke-dashoffset: 0 !important;
}

.success-icon-circle {
    position: relative;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
    z-index: 2;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    display: block;
}

.success-checkmark-circle {
    stroke: #ffffff;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    fill: none;
    animation: checkmarkCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.2s;
}

.success-checkmark-check {
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    fill: none;
    animation: checkmarkCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes checkmarkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmarkCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Pulse Rings */
.success-pulse-ring,
.success-pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid #7CB342;
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.success-pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    margin-bottom: 2.5rem;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reference Badge */
.reference-badge {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #7CB342;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.15);
    transition: var(--transition);
}

.reference-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.25);
}

.reference-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.reference-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reference-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reference-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Courier New', monospace;
}

/* What's Next Section */
.whats-next-section {
    margin-bottom: 3rem;
}

.whats-next-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.whats-next-title i {
    color: #7CB342;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7CB342, #4CAF50);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 auto;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 2rem;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 2rem;
    text-align: right;
}

.timeline-content:hover {
    border-color: #7CB342;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.15);
    transform: translateY(-3px);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Cards */
.info-cards-row {
    margin-bottom: 2.5rem;
}

.info-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    border-color: #7CB342;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.15);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

/* Success Actions */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-success-primary,
.btn-success-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-success-primary {
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.btn-success-primary:hover {
    background: linear-gradient(135deg, #689F38, #388E3C);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.4);
    color: #ffffff;
}

.btn-success-secondary {
    background: #ffffff;
    color: #7CB342;
    border: 2px solid #7CB342;
}

.btn-success-secondary:hover {
    background: #7CB342;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* Social Proof */
.social-proof {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-proof-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
    background: linear-gradient(135deg, #7CB342, #4CAF50);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    color: #6b7280;
    font-size: 1rem;
}

.social-proof-text strong {
    color: var(--dark-color);
    font-weight: 700;
}

/* Responsive Design for Success Page */
@media (max-width: 992px) {
    .success-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 35px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
        margin-left: 2rem;
        text-align: left;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .success-card {
        padding: 2rem 1.5rem;
    }
    
    .success-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .success-icon-circle {
        width: 120px;
        height: 120px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-title {
        font-size: 1.75rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .reference-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .reference-content {
        align-items: center;
    }
    
    .whats-next-title {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1rem 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-success-primary,
    .btn-success-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .social-proof-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .success-page-section {
        padding: 2rem 0;
    }
    
    .success-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .success-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .success-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .reference-badge {
        padding: 1rem 1.5rem;
    }
    
    .reference-number {
        font-size: 1.2rem;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 1.5rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   PREMIUM HERO SECTION STYLES
======================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* Premium Hero Section */
.premium-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Hero Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #1a3d0a 0%,
        #2d5016 15%,
        #4a7c59 35%,
        #689F38 60%,
        #7CB342 85%,
        #8BC34A 100%
    );
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(10deg) brightness(1.1); }
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    animation: patternFloat 12s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-element.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.floating-element.element-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation: float2 8s ease-in-out infinite;
}

.floating-element.element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation: float3 7s ease-in-out infinite;
}

.floating-element.element-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

.floating-element.element-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 5%;
    animation: float5 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(20px) translateX(-10px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-40px) translateX(-30px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(15px) rotate(90deg); }
    75% { transform: translateY(25px) translateX(-20px) rotate(270deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(30px) translateX(25px) rotate(180deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-15px) translateX(-10px) rotate(120deg); }
    66% { transform: translateY(10px) translateX(15px) rotate(240deg); }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

/* Premium Logo Section */
.hero-logo-section {
    margin-bottom: 3rem;
}

.premium-logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.logo-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: logoRotate 20s linear infinite;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-text {
    text-align: center;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Premium Hero Title */
.premium-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.title-line-1 {
    font-size: 0.8em;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.2em;
}

.title-line-2 {
    font-size: 1em;
    margin-bottom: 0.2em;
}

.title-line-3 {
    font-size: 0.9em;
    font-weight: 700;
}

.text-premium-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Premium Hero Subtitle */
.premium-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle-highlight {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Premium Stats Section */
.premium-stats-section {
    margin-bottom: 3rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #1a3d0a;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium CTA Section */
.premium-cta-section {
    text-align: center;
}

.premium-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-bg-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #f59e0b 50%, #ea580c 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.premium-cta-btn:hover .btn-bg-effect {
    left: 0;
}

.premium-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.premium-cta-btn:hover .btn-content {
    color: #1a3d0a;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-icon {
    transform: scale(1.2) rotate(15deg);
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Premium Scroll Indicator */
.premium-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-scroll-indicator:hover {
    color: #ffffff;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.scroll-arrow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.scroll-arrow {
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* Animation Classes */
.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out forwards;
    opacity: 0;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-logo-section {
        margin-bottom: 2rem;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-svg {
        width: 50px;
        height: 50px;
    }
    
    .logo-main {
        font-size: 2rem;
    }
    
    .premium-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .premium-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-card {
        min-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .premium-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 1rem 0;
    }
    
    .premium-logo-wrapper {
        padding: 1rem;
    }
    
    .stat-card {
        min-width: 250px;
    }
    
    .premium-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}