/* ======================================
   TAMAKAN EXPERIMENTAL PAGE - STYLES
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    direction: rtl;
    overflow-x: hidden;
}

::selection {
    background-color: #dc2626;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Cairo', sans-serif;
}

input {
    font-family: 'Cairo', sans-serif;
}

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

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Utility Classes --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.navbar-logo {
    height: 45px;
    width: auto;
}

.navbar.scrolled .navbar-logo-white {
    display: none !important;
}

.navbar.scrolled .navbar-logo-dark {
    display: block !important;
}

.navbar-brand-icon {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 6px rgba(220,38,38,0.3);
}

.navbar-brand-icon svg {
    width: 24px;
    height: 24px;
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
    transition: color 0.3s;
}

.navbar.scrolled .navbar-brand-text {
    color: #000;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.3s;
    color: rgba(255,255,255,0.9);
}

.navbar-links a:hover {
    color: #fff;
}

.navbar.scrolled .navbar-links a {
    color: #1f2937;
}

.navbar.scrolled .navbar-links a:hover {
    color: #dc2626;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    transition: color 0.3s;
}

.navbar.scrolled .navbar-toggle {
    color: #000;
}

.navbar-toggle svg {
    width: 28px;
    height: 28px;
}

/* Navbar CTA Button */
.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.navbar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.navbar-cta:hover::before {
    opacity: 1;
    animation: ctaShine 0.6s ease forwards;
}

@keyframes ctaShine {
    from { transform: rotate(45deg) translateX(-100%); }
    to { transform: rotate(45deg) translateX(100%); }
}

.navbar-cta:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.navbar-cta:active {
    transform: translateY(0) scale(0.97);
}

.navbar-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.navbar.scrolled .navbar-cta {
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mobile-menu-header span {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu a {
    color: #1f2937;
    font-weight: 700;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f9fafb;
    display: block;
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
    pointer-events: auto;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.hero-slide-overlay.gradient-1 {
    background: linear-gradient(to bottom left, #000, #18181b, #000);
}

.hero-slide-overlay.gradient-2 {
    background: linear-gradient(to bottom left, #18181b, rgba(127, 29, 29, 0.4), #000);
}

.hero-slide-overlay.gradient-3 {
    background: linear-gradient(to bottom left, #000, #27272a, #000);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero-text {
    text-align: right;
    max-width: 700px;
    transition: all 0.7s ease 0.3s;
}

.hero-slide:not(.active) .hero-text {
    transform: translateY(20px);
    opacity: 0;
}

.hero-slide.active .hero-text {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #dc2626;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 32rem;
    line-height: 1.7;
    font-weight: 600;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #dc2626;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(127, 29, 29, 0.2);
}

.hero-btn:hover {
    background: #b91c1c;
}

.hero-btn:active {
    transform: scale(0.95);
}

.hero-btn svg {
    transition: transform 0.3s;
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.hero-nav-btn:hover {
    background: #dc2626;
}

.hero-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 3rem;
    right: 2.5rem;
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    border-radius: 9999px;
    transition: all 0.3s;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border: none;
}

.hero-dot.active {
    width: 2rem;
    height: 8px;
    background: #dc2626;
}

/* ======================================
   ABOUT SECTION
   ====================================== */
.about {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: #fef2f2;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: #f3f4f6;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.about-image-wrapper:hover::after {
    opacity: 1;
}

.about-image-container {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.about-image-wrapper:hover .about-image-container img {
    transform: scale(1.05);
}

.about-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #dc2626;
    color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-badge-number {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.about-badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-subtitle {
    color: #dc2626;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-title span {
    color: #9ca3af;
}

.about-description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.about-feature-item:hover .about-feature-icon {
    background: #dc2626;
}

.about-feature-icon svg {
    width: 16px;
    height: 16px;
    color: #dc2626;
    transition: color 0.3s;
}

.about-feature-item:hover .about-feature-icon svg {
    color: #fff;
}

.about-feature-text {
    color: #1f2937;
    font-weight: 700;
}

.about-cta {
    display: inline-block;
    border: 2px solid #000;
    color: #000;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 900;
    transition: all 0.3s;
}

.about-cta:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.about-cta:active {
    transform: scale(0.95);
}

/* ======================================
   SERVICES SECTION
   ====================================== */
.services {
    padding: 6rem 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .label {
    color: #dc2626;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000;
    margin-top: 0.75rem;
}

.section-header .divider {
    width: 5rem;
    height: 6px;
    background: #dc2626;
    margin: 1.5rem auto 0;
    border-radius: 9999px;
}

.services-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    direction: ltr; /* normalize scroll direction */
}

.services-track {
    display: flex;
    gap: 2rem;
    animation: scrollMarquee 25s linear infinite;
    will-change: transform;
}

.services-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.service-card {
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.5s, transform 0.5s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f4f4f5;
    flex-shrink: 0;
    direction: rtl;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.service-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}

.service-card-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: #dc2626;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 20px;
    height: 20px;
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-card-body h3 {
    color: #dc2626;
}

.service-card-body p {
    color: #6b7280;
    line-height: 1.7;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid #fafafa;
    font-weight: 900;
    font-size: 0.875rem;
    color: #000;
    transition: color 0.3s;
    margin-top: auto;
}

.service-card-link:hover {
    color: #dc2626;
}

.service-card-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card-link:hover .service-card-link-icon {
    background: #dc2626;
    color: #fff;
}

.service-card-link-icon svg {
    width: 16px;
    height: 16px;
}

/* ======================================
   PROGRAMS SECTION
   ====================================== */
.programs {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

.programs-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.programs-header-content {
    max-width: 42rem;
}

.programs-header .label {
    color: #dc2626;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.programs-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.programs-header p {
    color: #6b7280;
    font-weight: 600;
    font-size: 1.125rem;
}

.programs-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    transition: all 0.3s;
    align-self: flex-start;
    flex-shrink: 0;
}

.programs-header-btn:hover {
    background: #dc2626;
}

.programs-header-btn svg {
    transition: transform 0.3s;
}

.programs-header-btn:hover svg {
    transform: translateX(-5px);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.program-card {
    position: relative;
    background: #18181b;
    border-radius: 3rem;
    padding: 1rem;
    transition: all 0.5s;
    border: 1px solid rgba(255,255,255,0.05);
}

.program-card:hover {
    box-shadow: 0 25px 50px rgba(220,38,38,0.1);
}

.program-card-image {
    position: relative;
    height: 400px;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.7s;
}

.program-card:hover .program-card-image img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.program-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0,0,0,0.2), transparent);
    opacity: 0.8;
}

.program-card-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.program-card-info {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    left: 2rem;
}

.program-card-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.program-card-info p {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s;
}

.program-card:hover .program-card-info p {
    opacity: 1;
    transform: translateY(0);
}

.program-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.program-card-btn {
    width: 100%;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 1rem;
    color: #fff;
    font-weight: 900;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.program-card-btn:hover {
    background: #dc2626;
}

.program-card-btn svg {
    transition: transform 0.3s;
}

.program-card-btn:hover svg {
    transform: translateX(-5px);
}

/* ======================================
   PARTNERS SECTION
   ====================================== */
.partners {
    padding: 5rem 0;
    background: #fafafa;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-title h3 {
    color: #9ca3af;
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.5s;
}

.partners-logos:hover {
    filter: grayscale(0);
}

.partners-logos img {
    height: 2rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.partners-logos img:hover {
    transform: scale(1.1);
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta {
    padding: 6rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.cta-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(220,38,38,0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.cta-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(39,39,42,0.2);
    border-radius: 50%;
    filter: blur(120px);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220,38,38,0.1);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
}

.cta-badge span {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta h2 span {
    color: #dc2626;
}

.cta-description {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn-primary {
    width: 100%;
    max-width: 20rem;
    background: #dc2626;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(127,29,29,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-btn-primary:hover {
    background: #b91c1c;
}

.cta-btn-primary:active {
    transform: scale(0.95);
}

.cta-btn-primary svg {
    width: 22px;
    height: 22px;
}

.cta-btn-secondary {
    width: 100%;
    max-width: 20rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.cta-btn-secondary:active {
    transform: scale(0.95);
}

.cta-btn-secondary svg {
    width: 22px;
    height: 22px;
    color: #ef4444;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: #000;
    color: #fff;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(220,38,38,0.2);
}

.footer-brand span {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: #dc2626;
    color: #fff;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 2rem;
    border-right: 4px solid #dc2626;
    padding-right: 1rem;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #9ca3af;
    font-weight: 600;
}

.footer-contact-list li svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    width: 100%;
    outline: none;
    color: #fff;
    font-weight: 600;
    transition: border-color 0.3s;
}

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

.footer-newsletter input:focus {
    border-color: #dc2626;
}

.footer-newsletter button {
    background: #dc2626;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 900;
    color: #fff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-newsletter button:hover {
    background: #b91c1c;
}

.footer-newsletter button:active {
    transform: scale(0.95);
}

.footer-newsletter button svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Large screens */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.25rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .about-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .programs-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .programs-header h2 {
        font-size: 3rem;
    }

    .programs-header-btn {
        align-self: flex-end;
    }

    .cta h2 {
        font-size: 3.75rem;
    }

    .cta-description {
        font-size: 1.25rem;
    }

    .partners-logos {
        gap: 5rem;
    }

    .partners-logos img {
        height: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: auto;
    }
}

/* ======================================
   TABLET (768px - 1023px)
   ====================================== */
@media (max-width: 1023px) {

    /* -- Container -- */
    .container {
        padding: 0 1.25rem;
    }

    /* -- Navbar -- */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-links {
        gap: 1.25rem;
    }

    .navbar-links a {
        font-size: 0.8rem;
    }

    .navbar-logo {
        height: 38px;
    }

    .navbar-cta {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .navbar-cta svg {
        width: 16px;
        height: 16px;
    }

    /* -- Hero -- */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        max-width: 550px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 28rem;
    }

    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-nav-btn {
        width: 42px;
        height: 42px;
    }

    /* -- About -- */
    .about {
        padding: 4rem 0;
    }

    .about .container {
        gap: 2.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-badge {
        padding: 1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .about-badge-number {
        font-size: 1.75rem;
    }

    .about-badge-text {
        font-size: 0.75rem;
    }

    /* -- Services -- */
    .services {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .service-card {
        min-width: 280px;
        max-width: 280px;
        border-radius: 2rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    .service-card-body h3 {
        font-size: 1.25rem;
    }

    /* -- Programs -- */
    .programs {
        padding: 4rem 0;
    }

    .programs-header {
        margin-bottom: 3rem;
    }

    .programs-header h2 {
        font-size: 2rem;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .program-card {
        border-radius: 2rem;
    }

    .program-card-image {
        height: 300px;
        border-radius: 1.5rem;
    }

    .program-card-info h3 {
        font-size: 1.25rem;
    }

    .program-card-info {
        bottom: 1.5rem;
        right: 1.5rem;
        left: 1.5rem;
    }

    /* -- Partners -- */
    .partners {
        padding: 3rem 0;
    }

    .partners-logos {
        gap: 2rem;
    }

    .partners-logos img {
        height: 1.5rem;
    }

    /* -- CTA Section -- */
    .cta {
        padding: 4rem 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* -- Footer -- */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-section-title {
        font-size: 1.1rem;
    }

    /* -- Floating Buttons -- */
    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* ======================================
   MOBILE (max-width: 767px)
   ====================================== */
@media (max-width: 767px) {

    /* -- Container -- */
    .container {
        padding: 0 1rem;
    }

    /* -- Navbar -- */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-links {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-cta {
        padding: 0.55rem;
        border-radius: 50%;
        margin-left: auto;
        margin-right: 0.75rem;
    }

    .navbar-cta span {
        display: none;
    }

    /* -- Mobile Menu -- */
    .mobile-menu a {
        font-size: 0.95rem;
        padding: 0.875rem 0;
    }

    /* -- Hero -- */
    .hero {
        min-height: 85vh;
        height: auto;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        max-width: 100%;
        text-align: center;
        line-height: 1.8;
    }

    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        border-radius: 0.625rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-nav {
        left: 1rem;
        bottom: 1.25rem;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-indicators {
        right: 1rem;
        bottom: 1.75rem;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }

    .hero-dot.active {
        width: 1.5rem;
        height: 6px;
    }

    /* -- About -- */
    .about {
        padding: 3rem 0;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        border-radius: 1.5rem;
    }

    .about-image-wrapper::before,
    .about-image-wrapper::after {
        width: 5rem;
        height: 5rem;
    }

    .about-badge {
        padding: 0.875rem;
        bottom: 1rem;
        right: 1rem;
        border-radius: 0.75rem;
    }

    .about-badge-number {
        font-size: 1.5rem;
    }

    .about-badge-text {
        font-size: 0.7rem;
    }

    .about-subtitle {
        font-size: 0.7rem;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .about-features {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .about-feature-text {
        font-size: 0.875rem;
    }

    .about-cta {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* -- Services -- */
    .services {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header .divider {
        width: 3.5rem;
        height: 4px;
        margin-top: 1rem;
    }

    .service-card {
        min-width: 250px;
        max-width: 250px;
        border-radius: 1.5rem;
    }

    .service-card-image {
        height: 10rem;
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .service-card-body h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .service-card-body p {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .service-card-link {
        padding-top: 1rem;
        font-size: 0.8rem;
    }

    .service-card-link-icon {
        width: 28px;
        height: 28px;
    }

    /* -- Programs -- */
    .programs {
        padding: 3rem 0;
    }

    .programs-header {
        margin-bottom: 2rem;
    }

    .programs-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .programs-header p {
        font-size: 0.9rem;
    }

    .programs-header-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 0.75rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .program-card {
        border-radius: 1.5rem;
        padding: 0.75rem;
    }

    .program-card-image {
        height: 250px;
        border-radius: 1.25rem;
        margin-bottom: 1rem;
    }

    .program-card-tag {
        top: 1rem;
        left: 1rem;
        font-size: 9px;
        padding: 0.375rem 0.75rem;
    }

    .program-card-info {
        bottom: 1.5rem;
        right: 1.25rem;
        left: 1.25rem;
    }

    .program-card-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .program-card-info p {
        font-size: 0.8rem;
    }

    .program-card-footer {
        padding: 0 1rem 1rem;
    }

    .program-card-btn {
        padding: 0.75rem;
        font-size: 0.875rem;
        border-radius: 0.75rem;
    }

    /* -- Partners -- */
    .partners {
        padding: 2.5rem 0;
    }

    .partners-title {
        margin-bottom: 2rem;
    }

    .partners-logos {
        gap: 1.5rem;
    }

    .partners-logos img {
        height: 1.25rem;
    }

    /* -- CTA Section -- */
    .cta {
        padding: 3.5rem 0;
    }

    .cta-decoration-1,
    .cta-decoration-2 {
        width: 14rem;
        height: 14rem;
    }

    .cta-content {
        padding: 0 1rem;
    }

    .cta-badge {
        margin-bottom: 1.25rem;
        padding: 0.375rem 0.875rem;
    }

    .cta-badge span {
        font-size: 0.65rem;
    }

    .cta h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .cta-description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 0.75rem;
    }

    .cta-btn-primary svg,
    .cta-btn-secondary svg {
        width: 20px;
        height: 20px;
    }

    /* -- Footer -- */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand img {
        height: 35px !important;
    }

    .footer-about p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .footer-section-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .footer-contact-list {
        gap: 1rem;
    }

    .footer-contact-list li {
        font-size: 0.875rem;
    }

    .footer-newsletter input {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .footer-newsletter button {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.65rem;
    }

    /* -- Floating Buttons -- */
    .floating-actions {
        left: 1rem;
        bottom: 1rem;
        gap: 0.625rem;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn-whatsapp svg {
        width: 22px;
        height: 22px;
    }

    .floating-btn-call svg {
        width: 20px;
        height: 20px;
    }

    /* -- Scroll Reveal Adjustments -- */
    .reveal {
        transform: translateX(40px);
    }
}

/* ======================================
   SMALL MOBILE (max-width: 374px)
   ====================================== */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.825rem;
    }

    .hero-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .about-title {
        font-size: 1.35rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.35rem;
    }

    .service-card {
        min-width: 230px;
        max-width: 230px;
    }

    .program-card-image {
        height: 220px;
    }
}

/* ======================================
   FLOATING ACTION BUTTONS
   ====================================== */
.floating-actions {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Call Button */
.floating-btn-call {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 2px solid rgba(255,255,255,0.1);
}

.floating-btn-call:hover {
    background: linear-gradient(135deg, #374151, #1f2937);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

/* WhatsApp Button */
.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: 2px solid rgba(255,255,255,0.15);
}

.floating-btn-whatsapp:hover {
    background: linear-gradient(135deg, #2be06f, #25d366);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse animation for WhatsApp */
.floating-btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: floatingPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatingPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.25); opacity: 0; }
}

/* ======================================
   SUBPAGES - SHARED STYLES (DARK THEME)
   ====================================== */

/* --- Navbar Active Link --- */
.navbar-links a.active {
    color: #dc2626 !important;
}

/* --- Page Hero --- */
.page-hero {
    background: #000;
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(220,38,38,0.15), transparent 70%);
    pointer-events: none;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: #dc2626;
}

.page-hero-breadcrumb .separator {
    color: rgba(255,255,255,0.3);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Section Title (Reusable for subpages) --- */
.section-title-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-center .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #dc2626;
    margin-bottom: 0.75rem;
}

.section-title-center h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

.section-title-center .divider {
    width: 5rem;
    height: 6px;
    background: #dc2626;
    border-radius: 10px;
    margin: 0 auto;
}

/* --- Shared Grid Layouts --- */
.exp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.exp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exp-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ======================================
   CONTACT PAGE
   ====================================== */
.contact-section {
    padding: 5rem 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #dc2626;
    transition: all 0.3s;
}

.contact-card:hover .contact-card-icon {
    background: #dc2626;
    color: #fff;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}

.contact-card p a {
    color: #6b7280;
    transition: color 0.3s;
}

.contact-card p a:hover {
    color: #dc2626;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
    background: #fff;
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid #f4f4f5;
    height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-hours {
    background: #000;
    border-radius: 2rem;
    padding: 2rem;
    color: #fff;
}

.contact-hours h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.contact-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-hours-list li span:last-child {
    color: #fff;
    font-weight: 700;
}

/* ======================================
   SERVICES PAGE
   ====================================== */
.services-page-section {
    padding: 5rem 0;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* --- Service Card V2 (Image-based) --- */
.svc-card-v2 {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.svc-card-v2:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transform: translateY(-6px);
    border-color: rgba(220,38,38,0.15);
}

/* Image Area */
.svc-card-v2-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #18181b 0%, #27272a 50%, #3f3f46 100%);
}

.svc-card-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card-v2:hover .svc-card-v2-img img {
    transform: scale(1.08);
}

.svc-card-v2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    pointer-events: none;
}

.svc-card-v2-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
}

.svc-card-v2-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 3rem;
    letter-spacing: 0.05em;
    z-index: 1;
}

/* Content Area */
.svc-card-v2-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.svc-card-v2-body h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.svc-card-v2:hover .svc-card-v2-body h3 {
    color: #dc2626;
}

.svc-card-v2-body p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.svc-card-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.svc-card-v2:hover .svc-card-v2-btn {
    background: #b91c1c;
    transform: translateX(-4px);
    box-shadow: 0 6px 15px rgba(220,38,38,0.3);
}

.svc-card-v2-btn svg {
    transition: transform 0.3s;
}

.svc-card-v2:hover .svc-card-v2-btn svg {
    transform: translateX(-4px);
}


/* ======================================
   SERVICE DETAIL PAGE
   ====================================== */
.svc-detail-section {
    padding: 5rem 0;
}

.svc-detail-overview {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.svc-detail-overview p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
}

.svc-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.svc-detail-feature {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

.svc-detail-feature:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.svc-detail-feature-icon {
    width: 50px;
    height: 50px;
    background: #fef2f2;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin-bottom: 1.25rem;
}

.svc-detail-feature h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.svc-detail-feature p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Why Us Section */
.svc-whyus {
    background: #fafafa;
    padding: 5rem 0;
}

.svc-whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.svc-whyus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.svc-whyus-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.svc-whyus-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

/* Technologies */
.svc-tech-section {
    padding: 5rem 0;
}

.svc-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.svc-tech-tag {
    background: #18181b;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.svc-tech-tag:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Related Services */
.svc-related {
    padding: 5rem 0;
    background: #fafafa;
}

.svc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ======================================
   PROJECTS PAGE
   ====================================== */
.projects-section {
    padding: 5rem 0;
}

.proj-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.proj-filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    background: #f4f4f5;
    color: #6b7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.proj-filter-btn.active,
.proj-filter-btn:hover {
    background: #dc2626;
    color: #fff;
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.proj-card {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s;
}

.proj-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.proj-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.proj-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.proj-card:hover .proj-card-img img {
    transform: scale(1.1);
}

.proj-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
}

.proj-card-body {
    padding: 1.5rem;
}

.proj-card-body h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.proj-card-body p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.proj-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.proj-card-tag {
    background: #f4f4f5;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ======================================
   BLOG PAGE
   ====================================== */
.blog-section {
    padding: 5rem 0;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #000;
    border-radius: 2.5rem;
    overflow: hidden;
    align-items: center;
}

.blog-featured-img {
    height: 100%;
    min-height: 350px;
}

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

.blog-featured-content {
    padding: 2.5rem;
    color: #fff;
}

.blog-featured-badge {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.blog-featured-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-featured-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-featured-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.blog-card-body h3 a {
    transition: color 0.3s;
}

.blog-card-body h3 a:hover {
    color: #dc2626;
}

.blog-card-body p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ======================================
   BLOG DETAIL PAGE
   ====================================== */
.blogd-section {
    padding: 5rem 0;
}

.blogd-article {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blogd-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blogd-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blogd-article-content {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 2;
}

.blogd-article-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 2rem 0 1rem;
}

.blogd-article-content p {
    margin-bottom: 1.25rem;
}

.blogd-article-content ul {
    padding-right: 1.5rem;
    margin-bottom: 1.25rem;
}

.blogd-article-content li {
    margin-bottom: 0.5rem;
}

.blogd-article-content blockquote {
    border-right: 4px solid #dc2626;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 0 1rem 1rem 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: #1f2937;
}

.blogd-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 4rem;
}

.blogd-share span {
    font-weight: 700;
    color: #1f2937;
}

.blogd-share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s;
}

.blogd-share-link:hover {
    background: #dc2626;
    color: #fff;
}

.blogd-related {
    padding: 5rem 0;
    background: #fafafa;
}

/* ======================================
   ABOUT PAGE
   ====================================== */
.about-page-section {
    padding: 5rem 0;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.vm-card {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    transition: all 0.3s;
}

.vm-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    background: #fef2f2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.75rem;
}

.vm-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Stats Dark */
.stats-dark {
    background: #000;
    padding: 4rem 0;
    margin: 0;
}

.stats-dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* Values */
.values-section {
    padding: 5rem 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.value-card:hover .value-card-icon {
    background: #dc2626;
    color: #fff;
}

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

.value-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ======================================
   PROGRAMS PAGE
   ====================================== */
.programs-page-section {
    padding: 5rem 0;
}

.programs-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.program-page-card {
    background: #18181b;
    border-radius: 2.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.program-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.program-page-card-img {
    height: 250px;
    overflow: hidden;
}

.program-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.7s;
}

.program-page-card:hover .program-page-card-img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.program-page-card-body {
    padding: 2rem;
}

.program-page-card-tag {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.program-page-card-body h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
}

.program-page-card-body > p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-page-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.program-page-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.program-page-features li svg {
    color: #dc2626;
    min-width: 16px;
}

.program-page-card-btn {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    cursor: pointer;
}

.program-page-card-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* ======================================
   SUBPAGES RESPONSIVE - TABLET
   ====================================== */
@media (max-width: 1023px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

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

    .svc-detail-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-whyus-grid {
        grid-template-columns: 1fr;
    }

    .svc-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .stats-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-page-grid {
        grid-template-columns: 1fr;
    }

    .exp-grid-2,
    .exp-grid-3,
    .exp-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   SUBPAGES RESPONSIVE - MOBILE
   ====================================== */
@media (max-width: 767px) {
    .page-hero {
        padding: 8rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .section-title-center h2 {
        font-size: 1.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .svc-detail-features {
        grid-template-columns: 1fr;
    }

    .svc-related-grid {
        grid-template-columns: 1fr;
    }

    .proj-grid {
        grid-template-columns: 1fr;
    }

    .proj-filters {
        gap: 0.5rem;
    }

    .proj-filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 1.5rem;
    }

    .blog-featured-content h2 {
        font-size: 1.25rem;
    }

    .stats-dark-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

