/* =====================================================
   Hostinger-Inspired Modern Theme
   Sanand Learning Hub - Premium UI Design
   Deep Purple: #673de6
   Light Background: #f4f5ff
   ===================================================== */

:root {
    /* Primary Colors - Hostinger Deep Purple */
    --hostinger-purple: #673de6;
    --hostinger-purple-dark: #5025d1;
    --hostinger-purple-light: #ebe4ff;
    --hostinger-purple-lighter: #f4f5ff;
    
    /* Accent Colors */
    --accent-blue: #007bff;
    --accent-green: #00b090;
    --accent-orange: #ff9800;
    --accent-pink: #e91e63;
    --accent-cyan: #00bcd4;
    
    /* Neutral Colors */
    --text-dark: #1d1d1d;
    --text-medium: #4a4a4a;
    --text-light: #727586;
    --bg-white: #ffffff;
    --bg-light: #f4f5ff;
    --border-color: #d7d9e0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(103, 61, 230, 0.08);
    --shadow-md: 0 4px 20px rgba(103, 61, 230, 0.12);
    --shadow-lg: 0 8px 40px rgba(103, 61, 230, 0.15);
    --shadow-float: 0 20px 60px rgba(103, 61, 230, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#mainNav {
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-normal);
    z-index: 1030;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, var(--hostinger-purple-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.brand-text {
    color: inherit;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: var(--hostinger-purple-lighter);
    color: var(--hostinger-purple) !important;
}

.btn-link-nav {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.btn-link-nav:hover {
    color: var(--hostinger-purple);
}

.btn-primary-nav {
    background: var(--hostinger-purple);
    color: white !important;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary-nav:hover {
    background: var(--hostinger-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section-hostinger {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--hostinger-purple-lighter) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--hostinger-purple-light);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #c7b8ff;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #e0d4ff;
    top: 50%;
    right: 20%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hostinger-purple);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--hostinger-purple);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    background: var(--hostinger-purple-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--border-color);
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    border-color: var(--hostinger-purple);
    color: var(--hostinger-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

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

.trust-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-icons i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-main-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-float);
    animation: float 6s ease-in-out infinite;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.fc-1 {
    top: 20%;
    left: -20px;
    animation: float-card 4s ease-in-out infinite;
}

.fc-2 {
    bottom: 20%;
    right: -20px;
    animation: float-card 4s ease-in-out infinite 1s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.fc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, var(--hostinger-purple-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.fc-icon-green {
    background: linear-gradient(135deg, var(--accent-green) 0%, #008a6e 100%);
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.fc-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.fc-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.fc-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stats-bar {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hostinger-purple);
    line-height: 1;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hostinger-purple);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--hostinger-purple-lighter);
    color: var(--hostinger-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.feature-card-hostinger {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card-hostinger:hover {
    border-color: var(--hostinger-purple);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.fc-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.fc-purple { background: var(--hostinger-purple-lighter); color: var(--hostinger-purple); }
.fc-blue { background: #e3f2fd; color: var(--accent-blue); }
.fc-green { background: #e8f5e9; color: var(--accent-green); }
.fc-orange { background: #fff3e0; color: var(--accent-orange); }
.fc-pink { background: #fce4ec; color: var(--accent-pink); }
.fc-cyan { background: #e0f7fa; color: var(--accent-cyan); }

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

.feature-card-hostinger p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.fc-link {
    color: var(--hostinger-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.fc-link:hover {
    gap: 0.75rem;
    color: var(--hostinger-purple-dark);
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--hostinger-purple-lighter);
}

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

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--hostinger-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--hostinger-purple);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =====================================================
   COURSES SECTION
   ===================================================== */
.courses-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.course-card-hostinger {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card-hostinger:hover {
    border-color: var(--hostinger-purple);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.course-card-hostinger:hover .course-image-wrap img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-free {
    background: var(--accent-green);
}

.course-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.course-meta i {
    color: var(--accent-orange);
}

.course-meta .bi-star-fill {
    color: #ffc107;
}

.btn-course {
    background: var(--hostinger-purple-lighter);
    color: var(--hostinger-purple);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: none;
    width: 100%;
}

.btn-course:hover {
    background: var(--hostinger-purple);
    color: white;
}

.btn-view-all {
    background: white;
    color: var(--hostinger-purple);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--hostinger-purple);
}

.btn-view-all:hover {
    background: var(--hostinger-purple);
    color: white;
    transform: translateY(-2px);
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--hostinger-purple-lighter);
}

.pricing-card-hostinger {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card-hostinger:hover {
    border-color: var(--hostinger-purple);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-featured {
    border-color: var(--hostinger-purple);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, var(--hostinger-purple-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--text-dark);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.save-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.save-badge span {
    background: var(--accent-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li .bi-check-circle-fill {
    color: var(--accent-green);
}

.pricing-features li .bi-x-circle {
    color: var(--text-light);
}

.btn-pricing-primary {
    background: var(--hostinger-purple);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all var(--transition-fast);
    border: none;
    width: 100%;
}

.btn-pricing-primary:hover {
    background: var(--hostinger-purple-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--hostinger-purple);
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid var(--hostinger-purple);
    width: 100%;
}

.btn-pricing-outline:hover {
    background: var(--hostinger-purple);
    color: white;
    transform: translateY(-2px);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-items {
    display: inline-flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-items span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.guarantee-items i {
    color: var(--hostinger-purple);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonial-card-hostinger {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all var(--transition-normal);
}

.testimonial-card-hostinger:hover {
    border-color: var(--hostinger-purple);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, var(--hostinger-purple-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section-hostinger {
    padding: 100px 0;
    background: var(--hostinger-purple-lighter);
}

.cta-box {
    background: linear-gradient(135deg, var(--hostinger-purple) 0%, var(--hostinger-purple-dark) 100%);
    border-radius: 24px;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta-primary {
    background: white;
    color: var(--hostinger-purple);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1.1rem;
}

.btn-cta-primary:hover {
    background: var(--hostinger-purple-lighter);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--hostinger-purple);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-hostinger {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 0;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand i {
    width: 40px;
    height: 40px;
    background: var(--hostinger-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--hostinger-purple);
    transform: translateY(-3px);
}

.footer-top h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.developed-by span {
    color: white;
    font-weight: 600;
}

/* =====================================================
   SIMPLE FOOTER (from other project)
   ===================================================== */
.footer-simple {
    background: #1a1a2e !important;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-simple p {
    font-size: 0.9rem;
}

/* Ensure footer is visible on mobile with bottom nav */
@media (max-width: 991.98px) {
    .footer-simple {
        padding-bottom: 80px !important; /* Space for mobile bottom nav */
    }
    
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .footer-simple {
        text-align: center;
        padding: 1rem 0 80px 0 !important;
    }
    
    .footer-simple .row > div {
        margin-bottom: 0.5rem;
    }
    
    .footer-simple p {
        font-size: 0.8rem;
    }
}

/* Mobile bottom nav adjustments */
.mobile-bottom-nav + .footer-simple,
.footer-simple:has(~ .mobile-bottom-nav) {
    padding-bottom: 80px;
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION
   ===================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    z-index: 1030;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.7rem;
    gap: 0.25rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--hostinger-purple);
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 991.98px) {
    /* Show mobile bottom nav */
    .mobile-bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    /* Hero adjustments */
    .hero-section-hostinger {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Stats bar */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after,
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .stat-value,
    .stat-suffix {
        font-size: 2rem;
    }
    
    /* Section padding */
    .features-section,
    .how-it-works,
    .courses-section,
    .pricing-section,
    .testimonials-section,
    .cta-section-hostinger {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* CTA box */
    .cta-box {
        padding: 2.5rem;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer-hostinger {
        padding: 60px 0 80px;
    }
    
    .footer-top {
        padding-bottom: 40px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-top h4 {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .feature-card-hostinger,
    .course-card-hostinger,
    .pricing-card-hostinger,
    .testimonial-card-hostinger {
        margin: 0 -0.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .footer-top h4 {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* AOS Animation Override */
[data-aos] {
    pointer-events: auto !important;
}

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

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--hostinger-purple);
    outline-offset: 2px;
}

/* Selection Color */
::selection {
    background: var(--hostinger-purple-light);
    color: var(--hostinger-purple-dark);
}
