/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-blue: #0A2463;
    --secondary-blue: #1E3A8A;
    --accent-gold: #F59E0B;
    --accent-orange: #FB923C;
    --dark-bg: #0F172A;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FB923C 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 80px;
    
    /* Shadows */
    --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);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.chart-line {
    position: absolute;
    height: 2px;
    background: var(--accent-gold);
    width: 100%;
    animation: chartMove 8s ease-in-out infinite;
}

.chart-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.chart-line:nth-child(2) {
    top: 50%;
    animation-delay: 2s;
}

.chart-line:nth-child(3) {
    top: 80%;
    animation-delay: 4s;
}

@keyframes chartMove {
    0%, 100% {
        transform: translateX(-100%) scaleX(0);
    }
    50% {
        transform: translateX(0) scaleX(1);
    }
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 18px;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 20px;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    position: relative;
}

.profile-image i {
    font-size: 140px;
    color: var(--white);
    opacity: 0.9;
}

/* If you add a real image, use this instead */
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-blue);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-badge i {
    color: var(--accent-gold);
    font-size: 16px;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 5%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    font-size: 28px;
    color: var(--white);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */

.philosophy-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    padding-right: 40px;
}

.lead-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.principle-item {
    display: flex;
    gap: 20px;
}

.principle-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-icon i {
    font-size: 22px;
    color: var(--primary-blue);
}

.principle-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.principle-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.philosophy-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: var(--gradient-primary);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.visual-card i {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row.reverse {
    direction: rtl;
}

.benefit-row.reverse > * {
    direction: ltr;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.benefit-text h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefit-text > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 2px;
}

.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.image-placeholder span {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 24px;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */

.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-feature i {
    font-size: 40px;
    color: var(--accent-gold);
}

.cta-feature span {
    font-size: 16px;
    font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================
   FIXED CTA BUTTON
   ========================================== */

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 24px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 40px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-stats {
        align-items: center;
    }
    
    .stat-item {
        max-width: 400px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefit-row.reverse {
        direction: ltr;
    }
    
    .floating-badge {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .badge-1 {
        top: 5%;
        right: 0;
    }
    
    .badge-2 {
        bottom: 35%;
        left: -5%;
    }
    
    .badge-3 {
        bottom: 0;
        right: 5%;
    }
    
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .hero-wrapper {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-top: 24px;
    }
    
    .image-container {
        max-width: 260px;
        margin: 0 auto;
    }
    
    .image-frame {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .profile-image i {
        font-size: 100px;
    }
    
    .floating-badge {
        font-size: 10px;
        padding: 6px 10px;
        gap: 4px;
    }
    
    .floating-badge i {
        font-size: 12px;
    }
    
    .badge-1 {
        top: -5%;
        right: -8%;
    }
    
    .badge-2 {
        bottom: 25%;
        left: -12%;
    }
    
    .badge-3 {
        bottom: -5%;
        right: -8%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-text h3 {
        font-size: 28px;
    }
    
    .benefit-text > p {
        font-size: 16px;
    }
    
    .benefit-number {
        font-size: 56px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content > p {
        font-size: 18px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 40px;
    }
    
    .hero-wrapper {
        gap: 24px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
    }
    
    .stat-icon i {
        font-size: 17px;
    }
    
    .stat-number {
        font-size: 17px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .image-container {
        max-width: 220px;
    }
    
    .profile-image i {
        font-size: 80px;
    }
    
    .floating-badge {
        font-size: 9px;
        padding: 5px 8px;
        gap: 3px;
    }
    
    .floating-badge i {
        font-size: 10px;
    }
    
    .badge-1 {
        top: -3%;
        right: -5%;
    }
    
    .badge-2 {
        bottom: 28%;
        left: -8%;
    }
    
    .badge-3 {
        bottom: -3%;
        right: -5%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefit-text h3 {
        font-size: 24px;
    }
    
    .visual-card {
        padding: 60px 40px;
    }
    
    .visual-card i {
        font-size: 60px;
    }
    
    .visual-card h3 {
        font-size: 22px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-card,
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

