/* ==========================================
   STUDYGATE - Modern Professional Website
   Colors: #112d53 (Primary), #da7900 (Secondary), #ffffff (White)
   Font: Poppins
   RTL Support
   ========================================== */

/* === CSS VARIABLES === */
:root {
    --primary-color: #112d53;
    --secondary-color: #da7900;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --border-color: #e0e0e0;
    
    --font-family: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(17, 45, 83, 0.08);
    --shadow-md: 0 4px 16px rgba(17, 45, 83, 0.12);
    --shadow-lg: 0 8px 24px rgba(17, 45, 83, 0.16);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.post-body .lead {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef3 100%);
    padding: 30px;
    border-right: 4px solid var(--secondary-color);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    font-size: 1.15rem;
    font-style: italic;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.02rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #c56d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 121, 0, 0.25);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

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

@keyframes imageAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-image-appear {
    animation: imageAppear 1s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

/* === SECTION === */
.section {
    padding: 90px 0;
}

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

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 52px;
}

/* === NAVIGATION === */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.logo-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0 40px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    animation: fadeIn 0.8s ease-out;
}

.hero-text {
    text-align: right;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.65;
    max-width: 90%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-whatsapp:hover {
    background-color: #c56d00;
    border-color: #c56d00;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 121, 0, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    animation: pulse-glow 5s ease-in-out infinite;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 45, 83, 0.03);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* === STATS SECTION === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 22px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(17, 45, 83, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(218, 121, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(17, 45, 83, 0.15);
    border-color: var(--secondary-color);
}

.stat-icon {
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === WHY US === */
/* === WHY US SECTION === */
.why-us {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    direction: rtl;
    text-align: right;
}

.why-us-content .section-title {
    text-align: right;
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 18px;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.5);
}

.feature-item:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Content Wrapper */
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Icon Styling - Big Blue Circle with White Checkmark */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #1a3d6b);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(17, 45, 83, 0.25);
    transition: var(--transition);
    margin-top: 4px;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(17, 45, 83, 0.35);
}

/* Title Styling */
.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.feature-item:hover .feature-title {
    color: var(--secondary-color);
}

/* Description Styling */
.feature-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Image Section */
.why-us-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8ed 100%);
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.image-placeholder::before {
    content: "لماذا نحن";
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-weight: 700;
    z-index: 1;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* === PARTNERS === */
/* === PARTNERS SECTION === */
.partners-preview {
    background-color: var(--light-bg);
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.partner-arrow {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--text-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.partner-arrow:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(17, 45, 83, 0.2);
}

.partner-arrow:active {
    transform: scale(0.98);
}

.partner-arrow svg {
    width: 22px;
    height: 22px;
}

/* Partners Slider Container */
.partners-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 5px;
    flex: 1;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

/* Partner Card in Slider */
.partner-card-slider {
    flex-shrink: 0;
    width: 260px;
}

.partner-logo-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    border: 2px solid #f0f0f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.partner-logo-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(17, 45, 83, 0.12);
}

.partner-logo-card img {
    max-height: 100px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%) brightness(0.98);
    transition: all 0.35s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

/* Old styles - kept for backward compatibility */
.partners-logos {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px;
    flex: 1;
}

.partners-logos::-webkit-scrollbar {
    display: none;
}

.partners-logos .partner-logo {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 120px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.partners-logos .partner-logo:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(17, 45, 83, 0.1);
}

.partners-logos .partner-logo img {
    max-height: 70px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.96);
    transition: all 0.3s ease;
}

.partners-logos .partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* === FREE SERVICES SECTION === */
.free-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.free-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 121, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.free-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #f5a623);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(218, 121, 0, 0.3);
    animation: pulse 2s infinite;
}

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

.services-badge svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.free-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-benefit {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-benefit:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #1a3d6b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(17, 45, 83, 0.2);
}

.service-benefit:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), #f5a623);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-benefit:hover .benefit-title {
    color: var(--secondary-color);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.free-services-footer {
    background: linear-gradient(135deg, var(--primary-color), #1a3d6b);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 24px rgba(17, 45, 83, 0.2);
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.footer-highlight svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(218, 121, 0, 0.3));
}

.footer-highlight p {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef3 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.blog-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: var(--primary-color);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    color: var(--white);
}

.cta-wrapper {
    text-align: center;
    padding: 40px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-section-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* === ANIMATIONS === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* === ABOUT PAGE === */
.about-content {
    padding: 60px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-mission {
    background-color: var(--light-bg);
}

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

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.vm-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.vm-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.feature-card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card-text {
    color: var(--text-gray);
}

.stats-section-alt {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    color: var(--white);
}

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

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label-large {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

/* === SERVICES PAGE === */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.service-item-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.service-item-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-item-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.process-section {
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c56d00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-text {
    color: var(--text-gray);
}

/* === PARTNERS PAGE === */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.partner-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.partner-logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.partner-logo {
    max-height: 110px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-name {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.partner-fullname {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-description {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.institutes-section {
    background-color: var(--light-bg);
}

.trust-section {
    background-color: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.trust-item {
    text-align: center;
    padding: 40px 24px;
}

.trust-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.trust-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-text {
    color: var(--text-gray);
}

/* === BLOG PAGE === */
.blog-grid-full {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-card-full {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card-full:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-image-full {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef3 100%);
}

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

.blog-content-full {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-title-full {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-excerpt-full {
    color: var(--text-gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.newsletter-section {
    background-color: var(--light-bg);
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.newsletter-text {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* === BLOG POST === */
.blog-post {
    padding-bottom: 60px;
}

.post-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,0 L0,0 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat-x bottom;
    opacity: 0.5;
}

.post-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.post-header-content {
    text-align: right;
}

.post-meta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-category {
    display: inline-block;
    padding: 4px 16px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    text-align: right;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-excerpt {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.post-header-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef3 100%);
    aspect-ratio: 4/3;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.post-header-image:hover {
    transform: translateY(-10px);
}

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

.post-content {
    padding: 60px 0;
}

.post-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.9;
}

.post-body h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 24px;
}

.post-body h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 16px;
}

.post-body ul, .post-body ol {
    list-style: disc;
    margin: 24px 0 24px 40px;
}

.post-body li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.post-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.post-cta {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef3 100%);
    padding: 48px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 48px 0;
}

.post-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.post-cta p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* === POST SIDEBAR === */
.post-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.widget-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--secondary-color);
}

/* Table of Contents */
.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    color: var(--text-gray);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: block;
    position: relative;
    padding-right: 35px;
}

.toc-link::before {
    content: '←';
    position: absolute;
    right: 12px;
    opacity: 0;
    transition: var(--transition);
}

.toc-link:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-right: 40px;
}

.toc-link:hover::before {
    opacity: 1;
    right: 15px;
}

.toc-link.active {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding-right: 35px;
}

/* Quick Info Widget */
.highlight-widget {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
    border: 2px solid var(--secondary-color);
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: var(--border-radius);
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.info-value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    color: var(--white);
}

.cta-widget .widget-title {
    color: var(--white);
    border-bottom-color: var(--secondary-color);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-post-item:hover {
    background: #e8eef3;
    transform: translateX(-5px);
}

.related-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--border-color);
}

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

.related-post-content {
    flex: 1;
}

.related-post-content h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-post-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* === POST SHARE & NAVIGATION === */
.post-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin: 40px 0;
}

.share-label {
    font-weight: 600;
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn.whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.share-btn.facebook {
    background-color: #1877F2;
    color: var(--white);
}

.share-btn.twitter {
    background-color: #1DA1F2;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.post-navigation {
    text-align: center;
    margin-top: 48px;
}

.back-to-blog {
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    display: inline-block;
    transition: var(--transition);
}

.back-to-blog:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* === CONTACT PAGE === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
}

.form-input, .form-textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.contact-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-hours {
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.hours-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hours-text {
    color: var(--text-gray);
    margin-bottom: 8px;
}

.contact-cta {
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-title-small {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.map-section {
    padding: 80px 0;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

/* === 404 PAGE === */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 10rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 24px;
}

.error-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.error-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-links h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.quick-links a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.quick-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 72px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--light-bg);
        color: var(--secondary-color);
    }
    
    .nav-menu .btn {
        width: 100%;
        margin-top: 16px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Responsive */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Blog Post Tablet */
    .post-header-grid {
        gap: 45px;
    }
    
    .post-content-grid {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Why Us - Tablet */
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .image-placeholder {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .features-list {
        gap: 20px;
    }
    
    .feature-item {
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .feature-title {
        font-size: 1.15rem;
    }
    
    /* Free Services - Tablet */
    .free-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .free-services-footer {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .footer-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-card-full {
        grid-template-columns: 1fr;
    }
    
    .blog-image-full {
        min-height: 250px;
    }
    
    .blog-content-full {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 30px 0 30px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 45px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-image-glow {
        width: 80%;
        height: 80%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-bottom: 30px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Why Us - Mobile */
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .image-placeholder {
        max-width: 100%;
    }
    
    .features-list {
        gap: 18px;
    }
    
    .feature-item {
        gap: 14px;
        padding: 6px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-top: 2px;
    }
    
    .feature-title {
        font-size: 1.05rem;
    }
    
    .feature-desc {
        font-size: 0.88rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .error-number {
        font-size: 7rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    /* Free Services - Mobile */
    .free-services-header {
        margin-bottom: 40px;
    }
    
    .services-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .free-services-grid {
        gap: 20px;
    }
    
    .service-benefit {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    .free-services-footer {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .footer-highlight p {
        font-size: 0.95rem;
    }
    
    .footer-highlight svg {
        width: 24px;
        height: 24px;
    }
    
    .partners-slider-wrapper {
        padding: 0 50px;
        gap: 16px;
    }
    
    .partner-arrow {
        width: 42px;
        height: 42px;
    }
    
    .partners-logos {
        gap: 16px;
    }
    
    .partners-logos .partner-logo {
        min-width: 160px;
        height: 110px;
        padding: 22px 24px;
    }
    
    .partners-logos .partner-logo img {
        max-height: 60px;
        max-width: 120px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .partners-grid {
        gap: 24px;
    }
    
    /* Blog Post Responsive */
    .post-header-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .post-header-content {
        text-align: center;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .post-title {
        text-align: center;
    }
    
    .post-excerpt {
        text-align: center;
    }
    
    .post-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-sidebar {
        position: static;
        order: 2;
    }
    
    .sidebar-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 65px;
    }
    
    .hero-content {
        padding: 20px 0 20px;
    }
    
    .hero-wrapper {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .btn-hero {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        gap: 14px;
        padding-bottom: 25px;
    }
    
    .stat-card {
        padding: 25px 16px;
    }
    
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* Blog Post Mobile */
    .post-header {
        padding: 80px 0 40px;
    }
    
    .post-header-grid {
        gap: 25px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-excerpt {
        font-size: 0.95rem;
    }
    
    .post-body {
        font-size: 1rem;
    }
    
    .post-body h2 {
        font-size: 1.6rem;
    }
    
    .post-body h3 {
        font-size: 1.3rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Partners - Mobile */
    .partners-slider-wrapper {
        gap: 16px;
        padding: 0 10px;
        margin-bottom: 35px;
    }
    
    .partner-arrow {
        width: 44px;
        height: 44px;
    }
    
    .partner-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .partners-slider {
        gap: 16px;
        padding: 15px 5px;
    }
    
    .partner-card-slider {
        width: 220px;
    }
    
    .partner-logo-card {
        padding: 30px 24px;
        height: 150px;
        border-radius: 12px;
    }
    
    .partner-logo-card img {
        max-height: 80px;
        max-width: 150px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
    
    .partner-logo-box {
        height: 85px;
    }
    
    .partners-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 30px 20px;
    }
    
    .partners-slider-wrapper {
        padding: 0 40px;
        gap: 12px;
    }
    
    .partner-arrow {
        width: 38px;
        height: 38px;
    }
    
    .partner-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .partners-logos {
        gap: 12px;
    }
    
    .partners-logos .partner-logo {
        min-width: 140px;
        height: 100px;
        padding: 20px 22px;
    }
    
    .partners-logos .partner-logo img {
        max-height: 55px;
        max-width: 110px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .service-card, .partner-card, .feature-card {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

/* === INSTITUTE DETAILS PAGES === */
.institute-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d6b 100%);
    padding: 60px 0 40px;
    color: var(--white);
    margin-top: 80px;
}

.institute-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.institute-logo-wrapper {
    flex-shrink: 0;
}

.institute-logo-large {
    width: 180px;
    height: 180px;
    object-fit: contain;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.institute-header-text {
    flex: 1;
    min-width: 300px;
}

.institute-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.institute-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

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

.institute-about,
.institute-features,
.institute-programs,
.institute-fees,
.institute-location {
    padding: 60px 0;
}

.institute-description {
    max-width: 900px;
    margin: 0 auto;
}

.institute-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #1a3d6b);
    border-radius: 50%;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.program-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.program-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.program-features {
    list-style: none;
    padding: 0;
}

.program-features li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.program-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.fees-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.fees-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.fees-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.fees-table th,
.fees-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.fees-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.fees-table tbody tr:hover {
    background: #f8f9fa;
}

.fees-table tbody tr:last-child td {
    border-bottom: none;
}

.location-info {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.location-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.location-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Partner cards as links */
a.partner-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.partner-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

a.partner-card:hover .partner-fullname {
    color: var(--secondary-color);
}

/* CTA Buttons in details pages */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .institute-header {
        padding: 40px 0 30px;
        margin-top: 70px;
    }
    
    .institute-header-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .institute-logo-large {
        width: 140px;
        height: 140px;
    }
    
    .institute-title {
        font-size: 1.8rem;
    }
    
    .institute-header-actions {
        justify-content: center;
    }
    
    .features-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        padding: 30px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === REGISTRATION STEPS SECTION === */
.registration-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.step-card {
    background: var(--white);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.step-number {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), #1a3d6b);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 6px rgba(17, 45, 83, 0.3);
}

.step-icon {
    margin: 15px auto 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 60px;
    height: 60px;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ==========================================
   REGISTRATION CTA BANNER
   Attractive banner with register button below location section
   ========================================== */
.registration-cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #112d53 0%, #1a4070 100%);
    position: relative;
    overflow: hidden;
}

.registration-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 121, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.registration-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #da7900 0%, #ff9500 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(218, 121, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(218, 121, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(218, 121, 0, 0.6);
    }
}

.cta-banner-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    stroke-width: 2;
}

.cta-banner-text {
    flex: 1;
    color: #fff;
}

.cta-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.btn-register-now {
    flex-shrink: 0;
    padding: 18px 45px;
    background: linear-gradient(135deg, #da7900 0%, #ff9500 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(218, 121, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-register-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-register-now:hover::before {
    left: 100%;
}

.btn-register-now:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(218, 121, 0, 0.6);
    background: linear-gradient(135deg, #ff9500 0%, #da7900 100%);
}

.btn-register-now:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-register-now svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-register-now:hover svg {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 35px;
        gap: 30px;
    }

    .cta-banner-title {
        font-size: 24px;
    }

    .cta-banner-description {
        font-size: 15px;
    }

    .btn-register-now {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .registration-cta-banner {
        padding: 40px 0;
    }

    .cta-banner-content {
        padding: 30px 25px;
        gap: 25px;
    }

    .cta-banner-icon {
        width: 70px;
        height: 70px;
    }

    .cta-banner-icon svg {
        width: 40px;
        height: 40px;
    }

    .cta-banner-title {
        font-size: 22px;
    }

    .cta-banner-description {
        font-size: 14px;
    }

    .btn-register-now {
        font-size: 16px;
        padding: 15px 35px;
    }
}

@media (max-width: 480px) {
    .cta-banner-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .cta-banner-icon {
        width: 60px;
        height: 60px;
    }

    .cta-banner-icon svg {
        width: 36px;
        height: 36px;
    }

    .cta-banner-title {
        font-size: 20px;
    }

    .btn-register-now {
        font-size: 15px;
        padding: 14px 30px;
    }
}
