/* ==========================================
   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);
}

/* === NAV DROPDOWN === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding-right: 24px;
}

.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: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 12% 16%, rgba(218, 121, 0, 0.08), transparent 24rem),
        radial-gradient(circle at 86% 22%, rgba(17, 45, 83, 0.08), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    overflow: hidden;
    padding-top: 80px;
}

/* 2. رفعنا طبقة النقاط (z-index: 2) لتكون فوق الـ overlay المظلم */
.hero::after {
  content: '';
  position: absolute; 
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 45, 83, 0.08) 1px, transparent 1.25px);
  background-size: 32px 32px;
  pointer-events: none; 
  z-index: 2; 
  opacity: 0.34;
  mask-image: radial-gradient(ellipse 86% 82% at 50% 46%, black 12%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 86% 82% at 50% 46%, black 12%, transparent 100%);
}

/* 3. تعديل الـ overlay ليصبح شفافاً ولا يحجب ما خلفه */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.7));
    z-index: 1;
}

/* 4. رفعنا طبقة المحتوى والنصوص لتكون في الصدارة دائماً */
.hero-content {
    position: relative;
    z-index: 3; 
    width: 100%;
    padding: 58px 0 46px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 42px;
    animation: fadeIn 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 16px 38px -30px rgba(17, 45, 83, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(218, 121, 0, 0.22);
    box-shadow: 0 18px 42px -30px rgba(17, 45, 83, 0.56);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(218, 121, 0, 0.12);
    flex-shrink: 0;
}

.hero-malaysia-flag {
    width: 28px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(17, 45, 83, 0.1), 0 6px 14px -10px rgba(15, 23, 42, 0.45);
    flex-shrink: 0;
}

.hero-malaysia-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 6.6vw, 5.25rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    text-shadow: none;
    letter-spacing: 0;
    line-height: 1.08;
}

.hero-title span {
    display: block;
    color: var(--secondary-color);
}

.hero-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #64748b;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.65;
    max-width: 560px;
}

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

.btn-hero {
    padding: 15px 30px;
    font-size: 1.02rem;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 14px 34px -24px rgba(17, 45, 83, 0.55);
    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(-2px);
    box-shadow: 0 20px 42px -24px rgba(17, 45, 83, 0.6);
}

.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: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: 1.5px solid rgba(17, 45, 83, 0.16);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: rgba(218, 121, 0, 0.55);
}

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

.hero-image-glow {
    position: absolute;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 121, 0, 0.18) 0%, rgba(17, 45, 83, 0.08) 45%, transparent 72%);
    filter: blur(42px);
    z-index: 0;
    animation: none;
}

@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;
    max-width: min(560px, 100%);
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
}

.hero-image-wrapper::before {
    content: none;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 34px 52px rgba(15, 23, 42, 0.18));
    transition: var(--transition);
}

.hero-image:hover .hero-main-image {
    transform: translateY(-4px);
}

.hero-study-visual {
    padding: 18px 34px 52px;
}

.hero-floating-emgs {
    position: absolute;
    top: 6%;
    right: -4%;
    z-index: 3;
    width: clamp(118px, 12vw, 168px);
    animation: emgsFloat 4.6s ease-in-out infinite;
    will-change: transform;
}

.hero-emgs-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.16));
}

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

.hero-emgs-progress-card {
    position: absolute;
    left: -2%;
    bottom: 7%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(330px, 72%);
    padding: 16px 18px;
    border: 1px solid rgba(17, 45, 83, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 70px -46px rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-donut-chart {
    position: relative;
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
}

.hero-donut-svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(-90deg);
}

.hero-donut-track,
.hero-donut-progress {
    fill: none;
    stroke-width: 16;
}

.hero-donut-track {
    stroke: #d9d9d9;
}

.hero-donut-progress {
    stroke: #149447;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 335.899;
}

.hero-donut-counter {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-family: inherit;
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: 0;
}

.hero-progress-copy {
    display: grid;
    gap: 6px;
    text-align: right;
}

.hero-progress-copy strong {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 900;
}

.hero-progress-copy span {
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
    .hero-emgs-logo {
        animation: none;
    }
}

/* === STATS SECTION === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 0 0;
    border-top: 1px solid rgba(17, 45, 83, 0.12);
}

.stat-card {
    background: rgba(255, 255, 255, 0.78);
    padding: 18px 16px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 18px 36px -32px rgba(17, 45, 83, 0.45);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(17, 45, 83, 0.08);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -28px rgba(17, 45, 83, 0.42);
    border-color: var(--secondary-color);
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    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: #64748b;
    font-weight: 700;
}

/* === 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;
}

/* === HOME SERVICES PREVIEW === */
.services-preview {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(17, 45, 83, 0.08), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.45;
    pointer-events: none;
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 52px;
}

.services-preview-heading {
    max-width: 680px;
    text-align: right;
}

.services-preview-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(17, 45, 83, 0.08);
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 700;
}

.services-preview .section-title {
    color: #0f172a;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.services-preview .section-title span {
    color: var(--secondary-color);
}

.services-preview .section-subtitle {
    max-width: 620px;
    margin: 0;
    color: #64748b;
}

.services-preview-action {
    flex-shrink: 0;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(218, 121, 0, 0.18);
}

.services-preview-action svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.services-preview-action:hover svg {
    transform: translateX(-4px);
}

.services-preview .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.services-preview .service-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 34px 28px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    text-align: right;
    box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.services-preview .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -32px rgba(15, 23, 42, 0.42);
    border-color: rgba(17, 45, 83, 0.14);
}

.service-card-orb {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(17, 45, 83, 0.08);
    transition: transform 0.5s ease;
}

.services-preview .service-card:hover .service-card-orb {
    transform: scale(1.55);
}

.services-preview .service-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services-preview .service-icon svg {
    width: 32px;
    height: 32px;
}

.services-preview .service-card:hover .service-icon {
    color: var(--white);
    transform: translateY(-2px);
}

.services-preview .service-title,
.services-preview .service-description,
.services-preview .service-points {
    position: relative;
    z-index: 1;
}

.services-preview .service-title {
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.services-preview .service-description {
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.service-points {
    display: grid;
    gap: 10px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.service-points li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.service-card-blue .service-icon,
.service-card-blue .service-points {
    color: #2563eb;
}

.service-card-blue .service-card-orb {
    background: rgba(37, 99, 235, 0.08);
}

.service-card-blue:hover .service-icon {
    background: #2563eb;
}

.service-card-amber .service-icon,
.service-card-amber .service-points {
    color: #d97706;
}

.service-card-amber .service-card-orb {
    background: rgba(217, 119, 6, 0.1);
}

.service-card-amber:hover .service-icon {
    background: #d97706;
}

.service-card-emerald .service-icon,
.service-card-emerald .service-points {
    color: #059669;
}

.service-card-emerald .service-card-orb {
    background: rgba(5, 150, 105, 0.1);
}

.service-card-emerald:hover .service-icon {
    background: #059669;
}

.service-card-rose .service-icon,
.service-card-rose .service-points {
    color: #e11d48;
}

.service-card-rose .service-card-orb {
    background: rgba(225, 29, 72, 0.09);
}

.service-card-rose:hover .service-icon {
    background: #e11d48;
}

/* === WHY US SECTION === */
.why-us {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(17, 45, 83, 0.08), transparent 24rem),
        radial-gradient(circle at 85% 80%, rgba(218, 121, 0, 0.08), transparent 22rem);
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us-header {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.why-us-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.why-us-header .section-title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.why-us-header .section-title span {
    color: var(--secondary-color);
}

.why-us-header .section-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.9;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 48px;
    align-items: center;
}

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

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    min-height: 245px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.45);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 45, 83, 0.12);
    box-shadow: 0 24px 34px -22px rgba(15, 23, 42, 0.28);
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.06);
}

.why-card-title {
    color: #0f172a;
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-card-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.8;
}

.why-card-blue .why-card-icon {
    background: #eff6ff;
    color: #1d4ed8;
}

.why-card-green .why-card-icon {
    background: #ecfdf5;
    color: #047857;
}

.why-card-purple .why-card-icon {
    background: #f5f3ff;
    color: #6d28d9;
}

.why-card-orange .why-card-icon {
    background: #fff7ed;
    color: #c2410c;
}

.why-card-red .why-card-icon {
    background: #fef2f2;
    color: #b91c1c;
}

.why-card-indigo .why-card-icon {
    background: #eef2ff;
    color: #4338ca;
}

.why-visual {
    position: relative;
    isolation: isolate;
    max-width: 460px;
    margin-inline-start: auto;
}

.why-visual-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 600px;
    border-radius: 28px;
    box-shadow: 0 28px 70px -36px rgba(15, 23, 42, 0.55);
}

.why-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-visual-block {
    position: relative;
    z-index: 1;
}

.why-visual-block::before {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 230px;
    height: 230px;
    border-radius: 28px;
    background: rgba(17, 45, 83, 0.15);
}

.why-visual-ring {
    position: absolute;
    z-index: 0;
    top: -24px;
    left: -20px;
    width: 126px;
    height: 126px;
    border: 4px solid rgba(17, 45, 83, 0.08);
    border-radius: 50%;
}

.why-floating-card {
    position: absolute;
    z-index: 3;
    bottom: 42px;
    left: -38px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 255px;
    padding: 18px 20px;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.42);
}

.why-avatar-stack {
    display: flex;
    direction: ltr;
}

.why-avatar-stack span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: -10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
}

.why-avatar-stack span:nth-child(2) {
    background: var(--secondary-color);
}

.why-avatar-stack span:nth-child(3) {
    background: #047857;
}

.why-floating-card p {
    margin: 0 0 2px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.why-floating-card strong {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 800;
}

/* === FREE SERVICES SECTION === */
.free-services {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.free-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.08), transparent 23rem),
        radial-gradient(circle at 88% 85%, rgba(218, 121, 0, 0.09), transparent 24rem);
    pointer-events: none;
}

.free-services-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 68px;
}

.free-services-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.free-metric-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.free-metric-column-offset {
    padding-top: 46px;
}

.free-metric-card {
    min-height: 168px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #f8fafc;
    box-shadow: 0 18px 36px -30px rgba(15, 23, 42, 0.35);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.free-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 42px -28px rgba(15, 23, 42, 0.28);
}

.free-metric-card strong {
    display: block;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
}

.free-metric-card span {
    color: #64748b;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.6;
}

.free-metric-primary {
    background: var(--primary-color);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 24px 44px -26px rgba(17, 45, 83, 0.65);
}

.free-metric-primary strong,
.free-metric-primary span,
.free-metric-accent strong,
.free-metric-accent span {
    color: var(--white);
}

.free-metric-accent {
    background: var(--secondary-color);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 24px 44px -28px rgba(218, 121, 0, 0.55);
}

.free-services-content {
    text-align: right;
}

.free-services-kicker {
    display: block;
    color: var(--secondary-color);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.free-services .section-title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 22px;
}

.free-services .section-title span {
    color: var(--primary-color);
}

.free-services .section-description {
    max-width: 620px;
    margin: 0 0 34px;
    color: #64748b;
    font-size: 1.04rem;
    line-height: 1.9;
}

.free-services-checklist {
    display: grid;
    gap: 22px;
    margin-bottom: 30px;
}

.free-services-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.free-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 4px;
    border-radius: 50%;
    background: rgba(17, 45, 83, 0.09);
    color: var(--primary-color);
    flex-shrink: 0;
}

.free-services-checklist h3 {
    color: #0f172a;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.free-services-checklist p {
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0;
}

.free-services-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 16px;
    background: rgba(218, 121, 0, 0.06);
}

.free-note-icon {
    display: inline-flex;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.free-services-note p {
    margin: 0;
    color: #6b4b1d;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.7;
}

/* === FOUNDER SECTION === */
.founder-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.founder-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(17, 45, 83, 0.07), transparent 24rem),
        radial-gradient(circle at 88% 78%, rgba(218, 121, 0, 0.08), transparent 22rem);
    pointer-events: none;
}

.founder-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 68px;
}

.founder-visual {
    position: relative;
    isolation: isolate;
    max-width: 465px;
    margin-inline-start: auto;
}

.founder-image-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: #eef2f7;
    box-shadow: 0 28px 70px -38px rgba(15, 23, 42, 0.55);
}

.founder-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.2));
    pointer-events: none;
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-visual::before {
    content: '';
    position: absolute;
    z-index: 0;
    right: -22px;
    bottom: -22px;
    width: 76%;
    height: 62%;
    border-radius: 30px;
    background: rgba(17, 45, 83, 0.1);
}

.founder-visual::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -22px;
    left: -18px;
    width: 118px;
    height: 118px;
    border: 4px solid rgba(218, 121, 0, 0.16);
    border-radius: 50%;
}

.founder-experience-card {
    position: absolute;
    z-index: 3;
    right: -28px;
    bottom: 36px;
    min-width: 170px;
    padding: 18px 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 48px -26px rgba(15, 23, 42, 0.42);
}

.founder-experience-card strong {
    display: block;
    color: var(--secondary-color);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.founder-experience-card span {
    color: #334155;
    font-size: 0.86rem;
    font-weight: 800;
}

.founder-content {
    text-align: right;
}

.founder-kicker {
    display: block;
    color: var(--secondary-color);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.founder-section .section-title {
    color: #0f172a;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.founder-role {
    color: var(--primary-color);
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.founder-lead,
.founder-note {
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.9;
}

.founder-lead {
    max-width: 690px;
    margin-bottom: 28px;
}

.founder-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.founder-trust-item {
    padding: 18px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px -26px rgba(15, 23, 42, 0.35);
}

.founder-trust-item strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 3px;
}

.founder-trust-item span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.founder-expertise {
    padding: 22px 24px;
    margin-bottom: 26px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 18px;
    background: rgba(17, 45, 83, 0.035);
}

.founder-expertise h3 {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.founder-expertise ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.founder-expertise li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-color);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 10px 22px -20px rgba(15, 23, 42, 0.45);
}

.founder-expertise li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.founder-note {
    margin: 0;
}

/* === STUDENT STORIES VIDEO SECTION === */
.student-stories-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.student-stories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 22%, rgba(17, 45, 83, 0.06), transparent 24rem),
        radial-gradient(circle at 90% 70%, rgba(218, 121, 0, 0.07), transparent 22rem);
    pointer-events: none;
}

.student-stories-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 58px;
}

.student-stories-content {
    text-align: right;
}

.student-stories-kicker {
    display: block;
    color: var(--secondary-color);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.student-stories-section .section-title {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.student-stories-section .section-description {
    max-width: 650px;
    margin: 0 0 28px;
    color: #64748b;
    font-size: 1.03rem;
    line-height: 1.9;
}

.student-stories-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.student-stories-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 12px 24px -22px rgba(15, 23, 42, 0.35);
}

.student-stories-trust span::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.student-stories-video {
    position: relative;
    display: flex;
    justify-content: center;
}

.student-video-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 390px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: 26px;
    background: #0f172a;
    box-shadow: 0 30px 70px -38px rgba(15, 23, 42, 0.65);
    isolation: isolate;
}

.student-video-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    pointer-events: none;
}

.student-video-trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.student-video-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.student-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 44%, rgba(15, 23, 42, 0.52) 100%);
    pointer-events: none;
}

.student-video-play {
    position: absolute;
    z-index: 3;
    inset: 0;
    margin: auto;
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.55);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
    pointer-events: none;
}

.student-video-play svg {
    margin-right: 4px;
}

.student-video-caption {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 26px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    pointer-events: none;
}

.student-video-card:hover .student-video-trigger img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.student-video-card:hover .student-video-play {
    transform: scale(1.08);
    background: var(--secondary-color);
    color: #ffffff;
}

.student-video-trigger:focus-visible {
    outline: 3px solid rgba(218, 121, 0, 0.45);
    outline-offset: -6px;
}

.student-video-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.student-video-card.is-playing iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* === HOME CONSULTATION SECTION === */
.home-consultation-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(17, 45, 83, 0.07), transparent 28rem),
        radial-gradient(circle at 88% 82%, rgba(218, 121, 0, 0.08), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-consultation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.22;
    pointer-events: none;
}

.home-consultation-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 44px;
    align-items: center;
}

.home-consultation-content {
    text-align: right;
}

.home-consultation-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(218, 121, 0, 0.09);
    color: var(--secondary-color);
    font-size: 0.88rem;
    font-weight: 900;
}

.home-consultation-section .section-title {
    margin-bottom: 16px;
    color: #0f172a;
}

.home-consultation-section .section-description {
    max-width: 640px;
    margin: 0 0 28px;
    color: #64748b;
    font-size: 1.04rem;
    line-height: 1.85;
}

.home-consultation-trust {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-consultation-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.5;
}

.home-consultation-trust li::before {
    content: '✓';
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(218, 121, 0, 0.12);
    color: var(--secondary-color);
    font-weight: 900;
    flex-shrink: 0;
}

.home-consultation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 80px -54px rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-consultation-form .form-group {
    margin: 0;
}

.home-consultation-form label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
}

.home-consultation-form label span {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-consultation-form input,
.home-consultation-form select {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(17, 45, 83, 0.14);
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-consultation-form input:focus,
.home-consultation-form select:focus {
    outline: none;
    border-color: rgba(218, 121, 0, 0.7);
    box-shadow: 0 0 0 4px rgba(218, 121, 0, 0.12);
}

.home-consultation-submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    min-height: 54px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 18px 34px -24px rgba(218, 121, 0, 0.8);
}

.home-consultation-submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .student-stories-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .student-stories-content {
        text-align: center;
    }

    .student-stories-section .section-description {
        margin-right: auto;
        margin-left: auto;
    }

    .student-stories-trust {
        justify-content: center;
    }

    .home-consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-consultation-content {
        text-align: center;
    }

    .home-consultation-badge,
    .home-consultation-section .section-description {
        margin-right: auto;
        margin-left: auto;
    }

    .home-consultation-trust {
        max-width: 640px;
        margin: 0 auto;
        text-align: right;
    }
}

@media (max-width: 640px) {
    .student-video-card {
        max-width: min(100%, 360px);
        border-radius: 18px;
    }

    .student-video-card::before {
        inset: 10px;
        border-radius: 14px;
    }

    .student-video-play {
        width: 66px;
        height: 66px;
    }

    .student-video-caption {
        right: 18px;
        bottom: 18px;
        font-size: 0.9rem;
    }

    .home-consultation-form {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 18px;
    }

    .home-consultation-section .section-description {
        font-size: 0.98rem;
    }
}

/* === 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);
}

/* === PREMIUM ABOUT PAGE === */
.about-premium-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 14% 20%, rgba(218, 121, 0, 0.1), transparent 24rem),
        radial-gradient(circle at 86% 12%, rgba(17, 45, 83, 0.09), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-premium-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.24;
    pointer-events: none;
}

.about-premium-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 56px;
    align-items: center;
}

.about-premium-hero-content {
    text-align: right;
}

.about-premium-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(218, 121, 0, 0.09);
    color: var(--secondary-color);
    font-size: 0.86rem;
    font-weight: 900;
}

.about-premium-title {
    max-width: 820px;
    margin: 0 0 22px;
    color: #143862;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    font-weight: 900;
    line-height: 1.13;
}

.about-brand {
    display: inline-block;
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
}

.about-brand span {
    display: inline;
}

.about-brand span:first-child {
    color: #143862;
}

.about-brand span:last-child {
    color: var(--secondary-color);
}

.about-registration-note {
    margin: -16px 0 28px;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 800;
}

.about-premium-lead {
    max-width: 720px;
    margin: 0 0 32px;
    color: #64748b;
    font-size: 1.12rem;
    line-height: 1.9;
}

.about-premium-actions,
.about-final-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-premium-hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 34px 80px -56px rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-premium-stat {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border: 1px solid rgba(17, 45, 83, 0.08);
    border-radius: 18px;
    background: #ffffff;
}

.about-premium-stat strong {
    color: var(--primary-color);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1;
}

.about-premium-stat span {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 700;
}

.about-story-section,
.about-why-section,
.about-partners-section,
.about-final-cta {
    background: #ffffff;
}

.about-story-grid,
.about-office-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.about-section-heading h2,
.about-office-content h2,
.about-founder-content h2 {
    margin: 0;
    color: #143862;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.22;
}

.about-premium-hero .section-title,
.about-story-section .section-title,
.about-founder-section .section-title,
.about-why-section .section-title,
.about-office-section .section-title,
.about-partners-section .section-title,
.about-faq-section .section-title,
.about-video-section .section-title {
    color: #143862;
}

.about-story-copy {
    display: grid;
    gap: 18px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-story-copy p {
    margin: 0;
}

.about-founder-section,
.about-office-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-founder-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(17, 45, 83, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 34px 80px -62px rgba(15, 23, 42, 0.65);
}

.about-founder-image {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(17, 45, 83, 0.08), rgba(218, 121, 0, 0.1));
}

.about-founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-founder-content p,
.about-office-content p {
    color: #64748b;
    font-size: 1.04rem;
    line-height: 1.85;
}

.about-founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-founder-tags span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(17, 45, 83, 0.06);
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 800;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-why-card {
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.09);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 54px -48px rgba(15, 23, 42, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 121, 0, 0.3);
    box-shadow: 0 30px 64px -48px rgba(15, 23, 42, 0.65);
}

.about-why-number {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 900;
}

.about-why-card h3 {
    margin: 14px 0 12px;
    color: #143862;
    font-size: 1.22rem;
    line-height: 1.35;
}

.about-why-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.about-office-content address {
    margin-top: 22px;
    padding: 18px 20px;
    border-right: 4px solid var(--secondary-color);
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 20px 46px -42px rgba(15, 23, 42, 0.55);
}

.about-office-visual {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 16px;
}

.about-office-photo {
    min-height: 270px;
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(17, 45, 83, 0.1);
    box-shadow: 0 28px 70px -54px rgba(15, 23, 42, 0.65);
}

.about-office-photo img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    display: block;
    object-fit: cover;
}

.about-office-photo figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 45, 83, 0.86);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
}

.about-partner-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    padding: 26px;
    border: 1px solid rgba(17, 45, 83, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 60px -54px rgba(15, 23, 42, 0.5);
}

.about-partner-strip img {
    max-width: 135px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.88;
}

.about-final-cta-card {
    padding: clamp(34px, 6vw, 64px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(218, 121, 0, 0.16), transparent 22rem),
        linear-gradient(135deg, var(--primary-color), #0f172a);
    color: #ffffff;
    text-align: center;
}

.about-final-cta-card h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
}

.about-video-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(218, 121, 0, 0.08), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-faq-item {
    padding: 24px;
    border: 1px solid rgba(17, 45, 83, 0.09);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 54px -48px rgba(15, 23, 42, 0.55);
}

.about-faq-item h3 {
    margin: 0 0 12px;
    color: #143862;
    font-size: 1.08rem;
    line-height: 1.55;
}

.about-faq-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.about-final-cta-card p {
    margin: 0 auto 28px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.about-final-cta-actions {
    justify-content: center;
}

@media (max-width: 1024px) {
    .about-premium-hero-grid,
    .about-story-grid,
    .about-office-grid,
    .about-founder-card {
        grid-template-columns: 1fr;
    }

    .about-premium-hero-content,
    .about-section-heading,
    .about-office-content,
    .about-founder-content {
        text-align: center;
    }

    .about-premium-kicker,
    .about-premium-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .about-premium-actions {
        justify-content: center;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-premium-hero {
        padding: 120px 0 64px;
    }

    .about-premium-hero-panel,
    .about-office-visual {
        grid-template-columns: 1fr;
    }

    .about-founder-card {
        padding: 20px;
        border-radius: 20px;
    }

    .about-premium-actions,
    .about-final-cta-actions {
        flex-direction: column;
    }

    .about-premium-actions .btn,
    .about-final-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === 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-premium-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 92px;
    background:
        radial-gradient(circle at 12% 18%, rgba(218, 121, 0, 0.1), transparent 24rem),
        radial-gradient(circle at 86% 70%, rgba(17, 45, 83, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.24;
    pointer-events: none;
}

.services-premium-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 54px;
    align-items: center;
}

.services-premium-hero-content {
    max-width: 760px;
}

.services-premium-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 15px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(218, 121, 0, 0.08);
    color: var(--secondary-color);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.services-premium-title {
    max-width: 780px;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    font-weight: 900;
    line-height: 1.18;
}

.services-premium-lead {
    max-width: 720px;
    margin-bottom: 32px;
    color: #536275;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.95;
}

.services-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.services-premium-trust {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 80px -58px rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.services-premium-trust span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.55;
}

.services-premium-trust span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(218, 121, 0, 0.11);
    flex-shrink: 0;
}

.services-journey-section {
    background: #ffffff;
}

.services-journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
}

.services-journey-stage {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    min-height: 100%;
    padding: 30px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-journey-stage:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 121, 0, 0.28);
    box-shadow: 0 30px 72px -52px rgba(15, 23, 42, 0.62);
}

.services-stage-number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: 0 18px 38px -24px rgba(17, 45, 83, 0.72);
}

.services-journey-stage h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 900;
}

.services-journey-stage p {
    margin-bottom: 18px;
    color: #64748b;
    line-height: 1.85;
}

.services-journey-stage ul {
    display: grid;
    gap: 10px;
}

.services-journey-stage li {
    position: relative;
    padding-right: 22px;
    color: #334155;
    font-weight: 800;
}

.services-journey-stage li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.services-difference-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(218, 121, 0, 0.08), transparent 22rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-difference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.services-difference-card {
    min-height: 100%;
    padding: 32px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-difference-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 121, 0, 0.25);
    box-shadow: 0 34px 80px -58px rgba(15, 23, 42, 0.62);
}

.services-difference-card h3 {
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 900;
}

.services-difference-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.9;
}

.services-results-section {
    padding: 70px 0;
    background: var(--primary-color);
}

.services-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.services-result-item {
    padding: 28px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
}

.services-result-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1;
}

.services-result-item span {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.services-video-section {
    background:
        radial-gradient(circle at 14% 26%, rgba(17, 45, 83, 0.07), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-video-section .student-stories-section .section-title,
.services-video-section .section-title {
    color: var(--primary-color);
}

.services-final-cta {
    background: #ffffff;
}

.services-final-cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 6vw, 60px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 20%, rgba(218, 121, 0, 0.18), transparent 22rem),
        linear-gradient(135deg, var(--primary-color) 0%, #1a3d6b 100%);
    text-align: center;
    box-shadow: 0 34px 88px -58px rgba(15, 23, 42, 0.7);
}

.services-final-cta-card h2 {
    max-width: 820px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
}

.services-final-cta-card p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.9;
}

.services-final-cta-card .services-premium-actions {
    justify-content: center;
}

.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);
}

@media (max-width: 1024px) {
    .services-premium-hero {
        padding: 96px 0 76px;
    }

    .services-premium-hero-grid,
    .services-journey-timeline,
    .services-difference-grid {
        grid-template-columns: 1fr;
    }

    .services-premium-hero-content {
        max-width: none;
    }

    .services-premium-trust {
        max-width: 620px;
    }

    .services-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-premium-hero {
        padding: 78px 0 62px;
    }

    .services-premium-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .services-premium-actions {
        width: 100%;
    }

    .services-premium-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-premium-trust,
    .services-journey-stage,
    .services-difference-card {
        padding: 24px;
        border-radius: 18px;
    }

    .services-journey-stage {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-stage-number {
        width: 52px;
        height: 52px;
    }

    .services-results-section {
        padding: 56px 0;
    }

    .services-final-cta-card {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .services-premium-kicker {
        font-size: 0.78rem;
    }

    .services-results-grid {
        grid-template-columns: 1fr;
    }

    .services-result-item {
        padding: 24px 16px;
    }

    .services-video-section .student-video-card {
        max-width: min(100%, 340px);
    }
}

/* === 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-premium-hero {
    position: relative;
    overflow: hidden;
    padding: 116px 0 90px;
    background:
        radial-gradient(circle at 12% 20%, rgba(218, 121, 0, 0.1), transparent 24rem),
        radial-gradient(circle at 86% 72%, rgba(17, 45, 83, 0.09), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.22;
    pointer-events: none;
}

.contact-premium-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 54px;
    align-items: center;
}

.contact-premium-kicker,
.contact-section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(218, 121, 0, 0.08);
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.contact-premium-title {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    font-weight: 900;
    line-height: 1.18;
}

.contact-premium-lead {
    max-width: 720px;
    margin-bottom: 32px;
    color: #536275;
    font-size: clamp(1.05rem, 2vw, 1.26rem);
    line-height: 1.95;
}

.contact-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-hero-trust {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px -58px rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-hero-trust span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.55;
}

.contact-hero-trust span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(218, 121, 0, 0.11);
    flex-shrink: 0;
}

.contact-trust-section {
    background: #ffffff;
}

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.contact-trust-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 121, 0, 0.25);
    box-shadow: 0 34px 80px -58px rgba(15, 23, 42, 0.62);
}

.contact-trust-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 900;
}

.contact-trust-card h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 900;
}

.contact-trust-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.contact-premium-form-section {
    background:
        radial-gradient(circle at 88% 16%, rgba(218, 121, 0, 0.08), transparent 22rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-premium-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 32px;
    align-items: start;
}

.contact-form-container.contact-premium-form-card {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 80px -54px rgba(15, 23, 42, 0.55);
}

.contact-premium-form-card .form-title {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
}

.contact-premium-form-card .form-subtitle {
    max-width: 680px;
    margin-bottom: 28px;
    color: #64748b;
    line-height: 1.85;
}

.contact-premium-form-card .form-input,
.contact-premium-form-card .form-textarea {
    border-color: rgba(17, 45, 83, 0.14);
    border-radius: 12px;
    background: #ffffff;
}

.contact-premium-form-card .form-input:focus,
.contact-premium-form-card .form-textarea:focus {
    border-color: rgba(218, 121, 0, 0.68);
    box-shadow: 0 0 0 4px rgba(218, 121, 0, 0.12);
}

.contact-premium-info-card {
    position: sticky;
    top: 96px;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: var(--primary-color);
    box-shadow: 0 30px 80px -54px rgba(15, 23, 42, 0.7);
}

.contact-premium-info-card h2 {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
}

.contact-premium-info-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.contact-premium-info-list a,
.contact-premium-info-list button {
    display: grid;
    width: 100%;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    text-align: right;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-premium-info-list a:hover,
.contact-premium-info-list button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
}

.contact-premium-info-list strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 800;
}

.contact-premium-info-list span,
.contact-company-box strong,
.contact-company-box span,
.contact-company-registration strong,
.contact-company-registration span {
    direction: ltr;
    unicode-bidi: embed;
}

.contact-premium-info-list span {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
}

.contact-company-box {
    padding: 18px;
    border-radius: 16px;
    background: rgba(218, 121, 0, 0.16);
}

.contact-company-box strong,
.contact-company-box span {
    display: block;
    color: #ffffff;
}

.contact-company-box span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.contact-whatsapp-section {
    background: #ffffff;
}

.contact-whatsapp-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: clamp(32px, 5vw, 52px);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 24%, rgba(218, 121, 0, 0.18), transparent 22rem),
        linear-gradient(135deg, var(--primary-color), #1a3d6b);
    box-shadow: 0 34px 88px -58px rgba(15, 23, 42, 0.7);
}

.contact-whatsapp-card h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
}

.contact-whatsapp-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
}

.contact-office-section {
    background: #f8fafc;
}

.contact-office-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 42px;
}

.contact-office-image {
    overflow: hidden;
    min-height: 360px;
    border-radius: 24px;
    box-shadow: 0 30px 80px -54px rgba(15, 23, 42, 0.55);
}

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

.contact-office-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: #ffffff;
}

.contact-office-content h3 {
    color: var(--primary-color);
    font-size: 1.55rem;
    font-weight: 900;
}

.contact-office-content p {
    color: #64748b;
    line-height: 1.9;
}

.contact-office-content ul {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.contact-office-content li {
    position: relative;
    padding-right: 22px;
    color: #334155;
    font-weight: 800;
}

.contact-office-content li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.contact-office-image-secondary {
    grid-column: 1 / -1;
    min-height: 280px;
}

.contact-company-section,
.contact-map-section {
    background: #ffffff;
}

.contact-company-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 5vw, 48px);
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
}

.contact-company-panel h2 {
    color: var(--primary-color);
    font-weight: 900;
}

.contact-company-panel p {
    max-width: 650px;
    color: #64748b;
}

.contact-company-registration {
    padding: 22px;
    border-radius: 18px;
    background: var(--primary-color);
    text-align: center;
}

.contact-company-registration strong,
.contact-company-registration span {
    display: block;
    color: #ffffff;
}

.contact-company-registration strong {
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 900;
}

.contact-company-registration span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.contact-map-header {
    text-align: center;
}

.contact-map-header .contact-section-label {
    margin-right: auto;
    margin-left: auto;
}

.contact-map-frame {
    overflow: hidden;
    max-width: 920px;
    margin: 34px auto 0;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 22px;
    background: #f8fafc;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 320px;
}

.contact-social-premium-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(218, 121, 0, 0.08), transparent 24rem),
        radial-gradient(circle at 88% 72%, rgba(17, 45, 83, 0.08), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-social-premium-section .contact-section-label {
    margin-right: auto;
    margin-left: auto;
}

.contact-social-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.contact-social-premium-card {
    --social-color: var(--primary-color);
    position: relative;
    display: flex;
    min-height: 290px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--social-color) 10%, transparent), transparent 58%);
    opacity: 0.95;
    pointer-events: none;
}

.contact-social-premium-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--social-color) 32%, rgba(17, 45, 83, 0.1));
    box-shadow: 0 34px 80px -58px rgba(15, 23, 42, 0.7);
}

.contact-social-premium-icon,
.contact-social-premium-card strong,
.contact-social-premium-card p,
.contact-social-premium-cta {
    position: relative;
    z-index: 1;
}

.contact-social-premium-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--social-color);
    color: #ffffff;
    box-shadow: 0 18px 38px -24px color-mix(in srgb, var(--social-color) 80%, #000000);
}

.contact-social-premium-icon svg {
    width: 28px;
    height: 28px;
}

.contact-social-premium-card strong {
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 900;
    direction: ltr;
    unicode-bidi: embed;
}

.contact-social-premium-card p {
    flex: 1;
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.contact-social-premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--social-color) 12%, #ffffff);
    color: var(--social-color);
    font-size: 0.92rem;
    font-weight: 900;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-social-premium-card:hover .contact-social-premium-cta {
    background: var(--social-color);
    color: #ffffff;
}

.contact-social-tiktok {
    --social-color: #000000;
}

.contact-social-snapchat {
    --social-color: #fffc00;
}

.contact-social-snapchat .contact-social-premium-icon,
.contact-social-snapchat .contact-social-premium-cta {
    color: #111111;
}

.contact-social-snapchat:hover .contact-social-premium-cta {
    color: #111111;
}

.contact-social-instagram {
    --social-color: #e4405f;
}

.contact-social-youtube {
    --social-color: #ff0000;
}

.contact-social-whatsapp {
    --social-color: #25d366;
}

.contact-faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 42px;
}

.contact-faq-item {
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
}

.contact-faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 900;
}

.contact-faq-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.85;
}

@media (max-width: 1024px) {
    .contact-premium-hero {
        padding: 96px 0 76px;
    }

    .contact-premium-hero-grid,
    .contact-premium-wrapper,
    .contact-office-grid,
    .contact-company-panel {
        grid-template-columns: 1fr;
    }

    .contact-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-premium-info-card {
        position: relative;
        top: auto;
    }

    .contact-office-image-secondary {
        grid-column: auto;
    }

    .contact-whatsapp-card {
        grid-template-columns: 1fr;
    }

    .contact-social-premium-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-premium-hero {
        padding: 78px 0 62px;
    }

    .contact-premium-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .contact-premium-actions,
    .contact-whatsapp-card .btn {
        width: 100%;
    }

    .contact-premium-actions .btn,
    .contact-whatsapp-card .btn {
        justify-content: center;
    }

    .contact-trust-grid,
    .contact-faq-grid,
    .contact-social-premium-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-trust,
    .contact-trust-card,
    .contact-form-container.contact-premium-form-card,
    .contact-premium-info-card,
    .contact-office-content,
    .contact-faq-item {
        padding: 24px;
        border-radius: 18px;
    }

    .contact-office-image,
    .contact-office-image-secondary {
        min-height: 260px;
        border-radius: 18px;
    }

    .contact-map-frame iframe {
        height: 280px;
    }

    .contact-social-premium-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .contact-premium-kicker,
    .contact-section-label {
        font-size: 0.76rem;
        letter-spacing: 0.03em;
    }

    .contact-company-registration {
        text-align: right;
    }

    .contact-map-frame iframe {
        height: 240px;
    }
}

/* Main grid: form (right) + info sidebar (left) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Form Card --- */
.contact-form-container,
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 1rem;
}

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

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

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

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

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(218, 121, 0, 0.1);
}

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

/* Submit button - removes need for inline styles */
.contact-form .btn {
    align-self: flex-start;
    min-width: 200px;
    padding: 12px 40px;
}

.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;
}

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

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

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

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

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

/* Icon container */
.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(218, 121, 0, 0.08);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

a.contact-value:hover {
    color: var(--secondary-color);
}

.contact-value-secondary {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

a.contact-value-secondary:hover {
    color: var(--secondary-color);
}

/* Map link inside location card */
.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-map-link:hover {
    opacity: 0.75;
}

/* Working hours */
.contact-hours {
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.hours-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.hours-text:last-child {
    margin-bottom: 0;
}

/* WhatsApp CTA box */
.contact-cta {
    padding: 28px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4570 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

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

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Social media icons - horizontal layout */
.contact-social-bar,
.contact-social-bar-horizontal {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.contact-social-bar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Map section */
.map-section {
    padding: 60px 0 80px;
}

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

/* === 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);
        height: calc(100dvh - 72px);
        max-height: calc(100dvh - 72px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px 88px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        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;
    }

    /* Mobile Dropdown */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-bg);
        border-radius: var(--border-radius);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin-top: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: min(58vh, 620px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 32px;
        font-size: 0.9rem;
    }

    .nav-dropdown-menu a:hover {
        padding-right: 36px;
    }

    .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-badge,
    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }
    
    .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: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .services-preview-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-preview .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    /* Why Us - Tablet */
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-image {
        order: 0;
    }

    .why-us-header {
        margin-bottom: 42px;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .why-visual {
        margin: 0 auto;
        max-width: 520px;
    }

    .why-visual-frame {
        height: 520px;
    }

    .why-floating-card {
        left: 18px;
    }
    
    .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-wrapper {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .free-services-metrics {
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

    .free-services-content {
        text-align: center;
    }

    .free-services .section-description {
        margin-right: auto;
        margin-left: auto;
    }

    .free-services-checklist {
        text-align: right;
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 28px;
    }
    
    .free-services-footer {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .footer-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact Page - Tablet */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-container,
    .contact-form-wrapper {
        padding: 36px 32px;
    }
    
    .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: auto;
        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: 460px;
        margin: 0 auto;
        min-height: 430px;
    }
    
    .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%;
    }

    .hero-emgs-progress-card {
        left: 0;
        bottom: 4%;
        padding: 14px 16px;
    }

    .hero-donut-chart {
        width: 104px;
        height: 104px;
    }

    .hero-donut-counter {
        font-size: 1.52rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0 30px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .services-preview-header {
        gap: 22px;
        margin-bottom: 36px;
    }

    .services-preview .section-title {
        font-size: 2rem;
    }

    .services-preview-action {
        width: 100%;
    }

    .services-preview .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-preview .service-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 18px;
    }
    
    /* Why Us - Mobile */
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .why-us-image {
        order: 0;
    }

    .why-us-header {
        margin-bottom: 34px;
    }

    .why-us-header .section-title {
        font-size: 2rem;
    }

    .why-us-header .section-subtitle {
        font-size: 0.98rem;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: auto;
        padding: 24px;
        border-radius: 16px;
    }

    .why-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .why-visual {
        max-width: 100%;
    }

    .why-visual-frame {
        height: 420px;
        border-radius: 22px;
    }

    .why-visual-block::before {
        right: -12px;
        bottom: -12px;
        width: 160px;
        height: 160px;
        border-radius: 20px;
    }

    .why-visual-ring {
        top: -14px;
        left: -10px;
        width: 90px;
        height: 90px;
    }

    .why-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -38px auto 0;
        width: calc(100% - 32px);
        min-width: 0;
    }
    
    .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;
    }

    .free-services-wrapper {
        gap: 36px;
    }

    .free-services-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .free-metric-column {
        gap: 16px;
    }

    .free-metric-column-offset {
        padding-top: 0;
    }

    .free-metric-card {
        min-height: auto;
        padding: 26px 24px;
        border-radius: 18px;
        text-align: center;
    }

    .free-services .section-title {
        font-size: 2rem;
    }

    .free-services .section-description {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }

    .free-services-checklist {
        gap: 18px;
    }

    .free-services-checklist li {
        gap: 12px;
    }

    .free-services-checklist h3 {
        font-size: 1rem;
    }

    .free-services-note {
        padding: 16px;
        text-align: right;
    }

    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .founder-visual {
        margin: 0 auto;
        max-width: 520px;
    }

    .founder-content {
        text-align: center;
    }

    .founder-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .founder-trust-grid {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .founder-expertise {
        text-align: right;
    }
    
    .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;
    }

    .founder-section .section-title {
        font-size: 2.05rem;
    }

    .founder-image-frame {
        border-radius: 22px;
    }

    .founder-experience-card {
        right: 16px;
        bottom: 18px;
        min-width: 150px;
        padding: 15px 16px;
    }

    .founder-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .founder-trust-item {
        padding: 16px;
    }

    .founder-expertise {
        padding: 20px;
    }

    .founder-expertise ul {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .free-services-footer {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .footer-highlight p {
        font-size: 0.95rem;
    }
    
    .footer-highlight svg {
        width: 24px;
        height: 24px;
    }
    
    
    .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%;
        min-height: auto;
        flex-direction: column;
    }

    .hero-study-visual {
        display: grid;
        justify-items: center;
        gap: 14px;
        padding: 0;
    }

    .hero-floating-emgs {
        position: relative;
        top: auto;
        right: auto;
        width: min(150px, 42vw);
        order: 2;
    }

    .hero-emgs-progress-card {
        position: relative;
        left: auto;
        bottom: auto;
        order: 3;
        width: min(100%, 320px);
        flex-direction: row;
        gap: 12px;
        text-align: center;
        padding: 14px;
        border-radius: 20px;
    }

    .hero-donut-chart {
        width: 94px;
        height: 94px;
    }

    .hero-donut-counter {
        font-size: 1.38rem;
    }

    .hero-progress-copy {
        text-align: right;
    }
    
    .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;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 7px 12px;
    }

    /* 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;
    }
    
    .partner-logo {
        max-height: 50px;
    }
    
    .partner-logo-box {
        height: 85px;
    }
    
    .partners-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 30px 20px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .service-card, .partner-card, .feature-card {
        padding: 32px 24px;
    }
    
    .contact-form-container,
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    /* Contact Page - Mobile */
    .form-title {
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .contact-info-item {
        padding: 16px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-hours {
        padding: 16px;
    }
    
    .contact-cta {
        padding: 24px 16px;
    }
    
    .cta-title-small {
        font-size: 1.1rem;
    }
    
    .contact-social-bar,
    .contact-social-bar-horizontal {
        padding: 16px;
    }
    
    .contact-social-links {
        gap: 20px;
    }
    
    .contact-social-icon,
    .contact-social-icon img {
        width: 36px;
        height: 36px;
    }
    
    .map-section {
        padding: 40px 0 60px;
    }
    
    .contact-form .btn {
        align-self: stretch;
        width: 100%;
    }
}

/* === 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;
    }
}

/* ==========================================
   INTERNAL LINKING — Related Articles (University Pages)
   ========================================== */
.related-articles-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.related-articles-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-articles-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.related-articles-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.related-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.related-article-image {
    height: 180px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-article-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.related-article-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.related-article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.related-article-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color, #da7900);
}

.related-articles-cta {
    text-align: center;
}

.related-articles-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease;
}

.related-articles-btn:hover {
    background: #1a3f6f;
    color: #fff;
}

/* ==========================================
   INTERNAL LINKING — Blog Programs Section
   ========================================== */
.blog-programs-section {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
}

.blog-programs-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.blog-programs-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.blog-programs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.blog-programs-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blog-programs-list li:last-child {
    border-bottom: none;
}

.blog-uni-link,
.blog-program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.15s ease;
}

.blog-uni-link:hover,
.blog-program-link:hover {
    color: var(--secondary-color, #da7900);
    text-decoration: underline;
}

.blog-programs-apply {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-apply-link {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary-color, #da7900);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.blog-apply-link:hover {
    background: #c06e00;
    color: #fff;
}

/* ==========================================
   INTERNAL LINKING — Program CTA Row
   ========================================== */
.program-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    margin-top: 16px;
    background: rgba(17, 45, 83, 0.04);
    border-radius: 8px;
    flex-wrap: wrap;
}

.program-apply-link {
    color: var(--secondary-color, #da7900);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.15s ease;
}

.program-apply-link:hover {
    color: #c06e00;
    text-decoration: underline;
}

.program-cta-divider {
    color: #ccc;
    font-size: 14px;
}

.program-blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.15s ease;
}

.program-blog-link:hover {
    color: var(--secondary-color, #da7900);
    text-decoration: underline;
}

/* ==========================================
   INTERNAL LINKING — Auto-Link Styling
   ========================================== */
a.auto-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    font-weight: inherit;
    transition: color 0.15s ease;
}

a.auto-link:hover {
    color: var(--secondary-color, #da7900);
    text-decoration-style: solid;
}

/* ==========================================
   INTERNAL LINKING — Responsive
   ========================================== */
@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-articles-title {
        font-size: 22px;
    }

    .related-article-image {
        height: 150px;
    }

    .blog-programs-section {
        padding: 18px;
        margin: 24px 0;
    }

    .program-cta-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .program-cta-divider {
        display: none;
    }
}

/* ==========================================
   PARTNER WITH US PAGE
   ========================================== */
.partner-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 92px;
    background:
        radial-gradient(circle at 14% 18%, rgba(218, 121, 0, 0.1), transparent 24rem),
        radial-gradient(circle at 86% 72%, rgba(17, 45, 83, 0.09), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 45, 83, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.22;
    pointer-events: none;
}

.partner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 54px;
    align-items: center;
}

.partner-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(218, 121, 0, 0.18);
    border-radius: 999px;
    background: rgba(218, 121, 0, 0.08);
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.partner-hero-content h1 {
    max-width: 860px;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: clamp(2.25rem, 5vw, 4.05rem);
    font-weight: 900;
    line-height: 1.18;
}

.partner-hero-content p {
    max-width: 760px;
    margin-bottom: 32px;
    color: #536275;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.95;
}

.partner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.partner-hero-panel {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px -58px rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.partner-hero-panel span,
.partner-trust-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.55;
}

.partner-hero-panel span::before,
.partner-checklist div::before,
.partner-trust-content li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(218, 121, 0, 0.11);
    flex-shrink: 0;
}

.partner-why-section,
.partner-benefits-section,
.partner-programs-section,
.partner-faq-section {
    background: #ffffff;
}

.partner-audience-section,
.partner-process-section,
.partner-requirements-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(218, 121, 0, 0.07), transparent 22rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.partner-why-section .partner-kicker,
.partner-application-copy .partner-kicker {
    margin-right: auto;
    margin-left: auto;
}

.partner-card-grid,
.partner-audience-grid,
.partner-feature-grid,
.partner-timeline,
.partner-programs-grid,
.partner-checklist,
.partner-faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 42px;
}

.partner-card-grid-four,
.partner-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-feature-grid,
.partner-timeline,
.partner-checklist {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-programs-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-icon-card,
.partner-audience-card,
.partner-timeline-step,
.partner-faq-item {
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-icon-card:hover,
.partner-audience-card:hover,
.partner-timeline-step:hover,
.partner-faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 121, 0, 0.25);
    box-shadow: 0 34px 80px -58px rgba(15, 23, 42, 0.62);
}

.partner-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 38px -24px rgba(17, 45, 83, 0.72);
}

.partner-icon-card h3,
.partner-audience-card h3,
.partner-timeline-step h3,
.partner-faq-item h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.16rem;
    font-weight: 900;
}

.partner-icon-card p,
.partner-audience-card p,
.partner-timeline-step p,
.partner-faq-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.85;
}

.partner-audience-card {
    position: relative;
    overflow: hidden;
}

.partner-audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(218, 121, 0, 0.08), transparent 55%);
    pointer-events: none;
}

.partner-audience-card h3,
.partner-audience-card p {
    position: relative;
    z-index: 1;
}

.partner-feature-item,
.partner-programs-grid span,
.partner-checklist div {
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 22px;
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 18px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1.55;
    box-shadow: 0 24px 58px -48px rgba(15, 23, 42, 0.55);
}

.partner-timeline-step span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 900;
}

.partner-trust-section {
    background: var(--primary-color);
}

.partner-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 42px;
    align-items: center;
}

.partner-trust-content h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
}

.partner-trust-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
}

.partner-trust-content ul {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.partner-trust-content li {
    color: #ffffff;
}

.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.partner-stats-grid div {
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
}

.partner-stats-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
}

.partner-stats-grid span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.partner-checklist div {
    align-items: flex-start;
    gap: 14px;
}

.partner-application-section {
    background:
        radial-gradient(circle at 16% 24%, rgba(218, 121, 0, 0.08), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partner-application-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 36px;
    align-items: start;
}

.partner-application-copy {
    position: sticky;
    top: 96px;
}

.partner-application-copy h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
}

.partner-application-copy p {
    color: #64748b;
    line-height: 1.9;
}

.partner-form {
    display: grid;
    gap: 18px;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(17, 45, 83, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 80px -54px rgba(15, 23, 42, 0.55);
}

.partner-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.partner-form .form-group {
    margin: 0;
}

.partner-form .form-input,
.partner-form .form-textarea {
    width: 100%;
    border-color: rgba(17, 45, 83, 0.14);
    border-radius: 12px;
    background: #ffffff;
}

.partner-form .form-input:focus,
.partner-form .form-textarea:focus {
    border-color: rgba(218, 121, 0, 0.68);
    box-shadow: 0 0 0 4px rgba(218, 121, 0, 0.12);
}

.partner-form .btn {
    justify-content: center;
}

.partner-form-note {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    text-align: center;
}

.partner-final-cta {
    background: #ffffff;
}

.partner-final-card {
    padding: clamp(36px, 6vw, 60px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 20%, rgba(218, 121, 0, 0.18), transparent 22rem),
        linear-gradient(135deg, var(--primary-color) 0%, #1a3d6b 100%);
    text-align: center;
    box-shadow: 0 34px 88px -58px rgba(15, 23, 42, 0.7);
}

.partner-final-card h2 {
    max-width: 820px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
}

.partner-final-card p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
}

.partner-final-card .partner-actions {
    justify-content: center;
}

@media (max-width: 1180px) {
    .partner-card-grid-four,
    .partner-audience-grid,
    .partner-feature-grid,
    .partner-timeline,
    .partner-checklist,
    .partner-programs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .partner-hero {
        padding: 96px 0 76px;
    }

    .partner-hero-grid,
    .partner-trust-grid,
    .partner-application-grid {
        grid-template-columns: 1fr;
    }

    .partner-application-copy {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 78px 0 62px;
    }

    .partner-hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .partner-actions,
    .partner-actions .btn {
        width: 100%;
    }

    .partner-actions .btn {
        justify-content: center;
    }

    .partner-card-grid-four,
    .partner-audience-grid,
    .partner-feature-grid,
    .partner-timeline,
    .partner-checklist,
    .partner-programs-grid,
    .partner-form-row,
    .partner-faq-grid,
    .partner-stats-grid {
        grid-template-columns: 1fr;
    }

    .partner-hero-panel,
    .partner-icon-card,
    .partner-audience-card,
    .partner-timeline-step,
    .partner-form,
    .partner-faq-item {
        padding: 24px;
        border-radius: 18px;
    }
}
