/*
=================================
HOME PAGE STYLES - Dr. C. Ajithkumar
Professional Athletic Coach Portfolio
=================================
*/

/* CSS Variables */
:root {
    --primary-blue: #1e40af;
    --accent-gold: #fbbf24;
    --light-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --dark-gray: #334155;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
    --gradient-overlay: rgba(0, 0, 0, 0.3);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

p {
    margin: 0 0 1rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    z-index: -2;
}

/* Cache buster v5 - Pale black overlay FINAL */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: -1;
}

/* Additional override with higher specificity */
.hero .hero-background .hero-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.67fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Hero Text */
.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .name {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-title .subtitle {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: var(--transition);
}

.hero-stats .stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.hero-stats .label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Content Slider */
.content-slider {
    position: relative;
}

.slider-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 40px 40px 80px 40px; /* Extra bottom padding for navigation dots */
    box-shadow: var(--shadow-strong);
    height: 600px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.slides {
    position: relative;
    height: calc(100% - 60px); /* Leave space for navigation dots */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.slide-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.slide-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.slide-icon.gallery {
    background: var(--gradient-primary);
    color: var(--white);
}

.slide-icon.news {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.slide-image {
    width: 100%;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
    /* Ensure smooth loading */
    background: var(--light-gray);
    /* Force visibility for slider images */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.slide-image:hover img {
    transform: scale(1.05);
}

.slide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slide-meta .category {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-meta .year,
.slide-meta .date,
.slide-meta .type {
    background: rgba(30, 64, 175, 0.1); /* Light blue background */
    color: var(--primary-blue); /* Changed to primary blue for better visibility */
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.slide-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: white;
}

.slide-description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    flex-grow: 1;
    margin-bottom: 16px;
    color: white;
}

.slide-footer {
    margin-top: auto;
}

.slide-footer .organization {
    color: white;
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.view-link:hover {
    color: var(--primary-blue); /* Changed from white to primary blue for better visibility */
    text-decoration: none;
    transform: translateX(4px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px; /* Position within the container padding */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    /* Better touch targets for tablets */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.nav-dot.active::before {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.nav-dot:hover::before {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* iPad Air Portrait navigation fixes */
@media screen and (max-width: 830px) and (min-width: 768px) {
    .slider-nav {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 20px !important;
        z-index: 10 !important;
    }
    
    .nav-dots {
        gap: 12px !important;
        justify-content: center !important;
    }
    
    .nav-dot {
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .nav-dot::before {
        width: 14px !important;
        height: 14px !important;
    }
    
}

/* Mobile nav dots */
@media (max-width: 768px) {
    .nav-dots {
        gap: 10px;
    }
    
    .nav-dot {
        min-width: 40px;
        min-height: 40px;
    }
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 24px;
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Statistics Section */
.statistics {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Supporters Section */
.supporters {
    padding: 100px 0;
    background: var(--light-gray);
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.supporter {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.supporter:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.supporter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 24px;
    transition: var(--transition);
}

.supporter:hover .supporter-icon {
    background: var(--gradient-accent);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.supporter-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.supporter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supporter-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.supporter-info h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.supporter-title {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.supporter-country {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.supporter-achievement {
    margin-top: 16px;
}

.supporter-achievement i {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.supporter-achievement p {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Featured Athletes Section */
.featured-athletes {
    padding: 100px 0;
    background: var(--white);
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.athlete-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.athlete-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.athlete-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    /* Force visibility for athlete images */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.athlete-card:hover .athlete-image img {
    transform: scale(1.05);
}

.athlete-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.athlete-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.athlete-achievement {
    background: rgba(251, 191, 36, 0.95);
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.athlete-type-badge {
    display: flex;
    justify-content: flex-end;
}

.athlete-type-badge span {
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Athlete Type Badge Colors */
.athlete-type-olympic {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.athlete-type-international {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.athlete-type-national {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.athlete-type-state {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.athlete-type-university {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.athlete-type-club {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.athlete-type-youth {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

.athlete-type-amateur {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.4);
}

.athlete-info {
    padding: 30px;
}

.athlete-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.athlete-event {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.athlete-country {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.athlete-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.athlete-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.athlete-stats .stat-item i {
    color: var(--accent-gold);
    font-size: 12px;
}

.athlete-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.athlete-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
    transform: translateX(4px);
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-rating i.far {
    color: #e5e7eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder,
.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.testimonial-date {
    color: var(--text-gray);
    font-size: 12px;
    opacity: 0.7;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.service-price {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 2px solid #e5e7eb;
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.service-price .period {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
    transform: translateX(4px);
}

/* About Dr. Ajithkumar Section */
.about-dr-ajith {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    /* Prevent scroll-related repaints and blinking */
    transform: translateZ(0);
    will-change: auto;
    contain: layout style paint;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Profile Section */
.profile-section {
    position: relative;
    /* Ensure profile section is never affected by scroll animations */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.profile-section * {
    /* Prevent any child elements from having scroll animations */
    transition: none !important;
}

.profile-image-container {
    position: relative;
    margin-bottom: 40px;
    /* Prevent container from causing repaints */
    transform: translateZ(0);
    will-change: auto;
    contain: layout style paint;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-strong);
    border: 5px solid var(--white);
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: block;
    /* Fix blinking during scroll */
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: auto;
    /* Remove transitions that might cause flickering */
    transition: none;
}

.profile-placeholder {
    width: 100%;
    max-width: 350px;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    box-shadow: var(--shadow-strong);
    margin: 0 auto;
}

.profile-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    z-index: 3;
}


/* About Text Section */
.about-text-section {
    padding-left: 0;
    padding-top: 20px;
}

.section-header-inline {
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header-inline h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.2;
}

.professional-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0;
}

.about-description {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* Professional Highlights */
.professional-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--gradient-accent);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.highlight-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* About Actions */
.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1e293b 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .about-content {
        gap: 50px;
        max-width: 1000px;
    }
    
    .profile-image,
    .profile-placeholder {
        max-width: 320px;
        height: 420px;
    }
    
    .section-header-inline h2 {
        font-size: 2.2rem;
    }
}

/* iPad Air Portrait and similar tablets - 820px breakpoint */
@media screen and (max-width: 830px) and (min-width: 768px) {
    /* Force single column layout */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 900px !important;
        margin: 0 auto !important;
    }
    
    .hero-text {
        order: 1 !important;
        max-width: 100% !important;
    }
    
    .content-slider {
        order: 2 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Optimized slider container for iPad Air Portrait */
    .slider-container {
        height: 420px !important;
        width: 100% !important;
        max-width: 700px !important;
        margin: 0 auto !important;
        padding: 25px 25px 70px 25px !important; /* Extra bottom padding for navigation */
        display: block !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 20px !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Reset slides container */
    .slides {
        height: calc(100% - 50px) !important; /* Leave space for navigation on iPad */
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Completely rebuild slide content */
    .slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }
    
    .slide-content {
        height: 100% !important;
        display: block !important;
        text-align: center !important;
        color: white !important;
        overflow: hidden !important;
    }
    
    .slide-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 15px auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        font-size: 1.5rem !important;
    }
    
    .slide-image {
        width: 100% !important;
        height: 220px !important; /* Increased from 180px for better iPad viewing */
        margin: 0 auto 15px auto !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        display: block !important;
        max-width: 500px !important;
    }
    
    .slide-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .slide-meta {
        margin-bottom: 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .slide-title {
        font-size: 1.2rem !important;
        margin: 10px 0 !important;
        font-weight: 700 !important;
        color: white !important;
    }
    
    .slide-description {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin: 10px 0 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .slide-footer {
        margin-top: 15px !important;
        text-align: center !important;
    }
    
    /* Navigation positioning */
    .slider-nav {
        position: absolute !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }
    
    .hero-stats {
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
    }
    
    .hero-description {
        font-size: 16px !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-actions {
        justify-content: center !important;
    }
}

/* Tablet Portrait & Small Landscape */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .content-slider {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .slider-container {
        height: 540px; /* Increased to accommodate larger images */
        padding: 25px 25px 70px 25px; /* Extra bottom padding for navigation */
        border-radius: 16px;
    }
    
    .slide-image {
        height: 260px; /* Increased for better tablet viewing */
        margin-bottom: 18px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 16px;
    }
    
    
    /* Adjust slides height for tablet */
    .slides {
        height: calc(100% - 50px);
    }
}

/* Tablets */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .profile-image,
    .profile-placeholder {
        max-width: 280px;
        height: 360px;
    }
    
    .section-header-inline h2 {
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .highlight-icon {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 40px; /* Increased top padding for mobile navbar */
    }
    
    .hero-content {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 0;
        align-items: stretch;
    }
    
    .hero-text {
        order: 1;
        margin-bottom: 0;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-title .name {
        font-size: 2.2rem;
        margin-bottom: 8px;
        display: block;
    }
    
    .hero-title .subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
    }
    
    .content-slider {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 25px;
        justify-content: center;
    }
    
    .hero-stats .stat {
        min-width: 90px;
        padding: 10px 14px;
    }
    
    .hero-stats .number {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .slider-container {
        height: 520px; /* Significantly increased to accommodate much larger images */
        padding: 20px 20px 65px 20px; /* Extra bottom padding for navigation */
        margin: 0 auto;
        max-width: 100%;
        border-radius: 16px;
    }
    
    /* Ensure slider navigation doesn't overlap on mobile */
    .slider-nav {
        bottom: 25px;
        z-index: 15;
    }
    
    
    /* Adjust slides height for mobile */
    .slides {
        height: calc(100% - 45px);
    }
    
    .slide-image {
        height: 280px; /* Further increased for much better mobile viewing */
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .athletes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text-section {
        padding-left: 0;
        padding-top: 0;
    }
    
    .profile-image,
    .profile-placeholder {
        max-width: 300px;
        height: 380px;
    }
    
    
    .about-preview,
    .statistics,
    .supporters,
    .featured-athletes,
    .testimonials,
    .featured-services,
    .about-dr-ajith,
    .cta {
        padding: 60px 0;
    }
    
    .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    
    .hero-title .name {
        font-size: 1.8rem;
    }
    
    .hero-title .subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats .stat {
        width: 100%;
        max-width: 180px;
        padding: 12px 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .slider-container {
        height: 480px; /* Significantly increased to accommodate much larger images */
        padding: 16px 16px 60px 16px; /* Extra bottom padding for navigation */
        margin: 0;
    }
    
    /* Better spacing for very small screens */
    .slider-nav {
        bottom: 20px;
        z-index: 20;
    }
    
    /* Adjust slides height for small mobile */
    .slides {
        height: calc(100% - 40px);
    }
    
    .slide-image {
        height: 250px; /* Further increased for much better small mobile viewing */
        margin-bottom: 12px;
    }
    
    .slide-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .slide-title {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .athlete-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .athlete-image {
        height: 200px;
    }
    
    .athlete-placeholder {
        font-size: 3rem;
    }
    
    .athlete-info {
        padding: 20px;
    }
    
    .athlete-stats {
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .testimonial-quote i {
        font-size: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 15px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-placeholder {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .service-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .about-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .profile-image,
    .profile-placeholder {
        height: 320px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .profile-placeholder {
        font-size: 4rem;
    }
    
    .profile-badge {
        position: static;
        display: inline-flex;
        margin: 0 auto 20px;
        justify-content: center;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    
    .section-header-inline h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-tag {
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .professional-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .intro-text {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
    }
    
    .highlight-item {
        padding: 16px;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .highlight-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    transition: var(--transition-slow);
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

/* FOOTER STYLES */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-content {
    padding-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand-section {
    margin-bottom: 60px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-brand-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Footer Achievement Stats */
.footer-achievements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    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);
    min-width: 120px;
    transition: var(--transition);
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Social Links */
.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-link-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link-modern:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-4px);
    text-decoration: none;
    box-shadow: var(--shadow-medium);
}

.social-link-modern.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-link-modern.twitter:hover {
    background: #1da1f2;
    color: var(--white);
}

.social-link-modern.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

.social-link-modern.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link-modern.youtube:hover {
    background: #ff0000;
    color: var(--white);
}

/* Footer Sections */
.footer-section-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Footer Navigation */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
}

.footer-nav-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
    transform: translateX(8px);
}

.footer-nav-link i {
    width: 16px;
    color: var(--accent-gold);
    font-size: 14px;
}

/* Contact Info */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-content h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 30px;
}

.newsletter-header h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form-wrapper {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
    padding: 12px 16px;
    background: var(--accent-gold);
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.newsletter-button:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom-modern {
    background: #111827;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-modern {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-badge i {
    color: #ef4444;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 0;
    }
    
    .footer-brand-section {
        margin-bottom: 40px;
    }
    
    .footer-brand-name {
        font-size: 1.75rem;
    }
    
    .footer-brand-tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .footer-achievements {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .achievement-item {
        min-width: 100px;
        padding: 16px;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
    
    .social-links-grid {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .social-link-modern {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-section-header {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-achievements {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .achievement-item {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-info-grid {
        gap: 16px;
    }
    
    .contact-info-item {
        gap: 10px;
    }
    
    .contact-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .newsletter-form-wrapper {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .newsletter-button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}