/* ========================================
   AKSIT GLOBAL — Complete Stylesheet
   ======================================== */

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

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

:root {
    --primary: #1a2d5a;
    --primary-dark: #0f1d3d;
    --primary-light: #264785;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --gold: #c9a84c;
    --gold-light: #e0c96e;
    --red: #d11f24;
    --red-hover: #b91c20;
    --white: #ffffff;
    --off-white: #f4f6fa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

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

/* --- Utility --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,99,235,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.45);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
}

/* === TOP BAR === */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
}

.top-bar-left a:hover { color: var(--gold); }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

/* === HEADER / NAVBAR === */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 140px;
    width: auto;
    padding: 8px 0;
}

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

.nav-menu a {
    padding: 22px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: var(--transition);
    border-radius: 2px 2px 0 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,29,61,0.85), rgba(26,45,90,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gold-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; width: 3px; height: 3px; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-40px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(15px); opacity: 0.7; }
}

/* === ABOUT SECTION === */
.about {
    padding: 90px 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(15,29,61,0.9));
    color: var(--white);
}

.about-image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-image-overlay p {
    font-size: 0.85rem;
    color: var(--gold-light);
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--off-white);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-stat .number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.about-stat .label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Mission / Vision --- */
.mission-vision {
    padding: 80px 0;
    background: var(--off-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mv-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card:first-child .icon {
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.05));
    color: var(--accent);
}

.mv-card:last-child .icon {
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    color: var(--gold);
}

.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.mv-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.course-card-image .course-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.course-card:nth-child(1) .course-card-image { background: linear-gradient(135deg, #1e3a6e, #2563eb); }
.course-card:nth-child(2) .course-card-image { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.course-card:nth-child(3) .course-card-image { background: linear-gradient(135deg, #059669, #34d399); }
.course-card:nth-child(4) .course-card-image { background: linear-gradient(135deg, #dc2626, #f87171); }
.course-card:nth-child(5) .course-card-image { background: linear-gradient(135deg, #d97706, #fbbf24); }
.course-card:nth-child(6) .course-card-image { background: linear-gradient(135deg, #0891b2, #22d3ee); }

.course-card-body {
    padding: 24px;
}

.course-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.course-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.course-card-body .btn {
    padding: 8px 22px;
    font-size: 0.85rem;
}

/* === SERVICES SECTION === */
.services {
    padding: 90px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.services .section-title h2 { color: var(--white); }
.services .section-title p { color: rgba(255,255,255,0.6); }

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 1;
}

.service-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    color: var(--white);
}

.service-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
}

.service-card .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(201,168,76,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-card .btn {
    padding: 8px 22px;
    font-size: 0.82rem;
    border-width: 1.5px;
}

/* === WHY CHOOSE US === */
.why-us {
    padding: 90px 0;
    background: var(--off-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.why-us-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.why-us-item .num {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.why-us-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.why-us-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === INQUIRY FORM === */
.inquiry {
    padding: 90px 0;
    position: relative;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat fixed;
}

.inquiry::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,29,61,0.92), rgba(26,45,90,0.88));
}

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

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

.inquiry-text {
    color: var(--white);
}

.inquiry-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.inquiry-text h2 span {
    color: var(--gold-light);
}

.inquiry-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.inquiry-text .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

.inquiry-text .contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-light);
}

.inquiry-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.inquiry-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

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

.inquiry-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    text-align: center;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.65);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '›';
    font-weight: 700;
    color: var(--gold);
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 0;
    }

    .nav-menu.open { right: 0; }

    .nav-menu a {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-menu a::after { display: none; }

    .hero { min-height: 500px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .mv-grid { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .inquiry-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title h2 { font-size: 1.6rem; }
    .about-stats { grid-template-columns: 1fr; }
    .inquiry-form { padding: 24px; }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ============================================================
   MULTI-PAGE STYLES
   ============================================================ */

/* === PAGE HERO (inner pages) === */
.page-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
    color: var(--white);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,29,61,0.9), rgba(26,45,90,0.8));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--gold-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.65rem;
}

/* === HIGHLIGHTS GRID (Home) === */
.highlights {
    padding: 80px 0;
    background: var(--off-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.highlight-card:hover::after { transform: scaleX(1); }

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
}

.highlight-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.highlight-link i { font-size: 0.75rem; transition: var(--transition); }
.highlight-link:hover i { transform: translateX(4px); }

/* === HOME ABOUT === */
.home-about {
    padding: 90px 0;
    background: var(--white);
}

/* === HOME COURSES === */
.home-courses {
    padding: 90px 0;
    background: var(--off-white);
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,29,61,0.92), rgba(26,45,90,0.88));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--primary);
    padding: 22px 0;
    border-bottom: 3px solid rgba(201,168,76,0.4);
}

.trust-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 28px;
    letter-spacing: 0.3px;
}

.trust-item i {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}

/* === CORE SERVICES === */
.home-core-services {
    padding: 90px 0;
    background: var(--off-white);
}

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

.core-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.core-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.core-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cs-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 18px;
    transition: var(--transition);
}

.core-service-card:hover .cs-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.core-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.core-service-card p {
    font-size: 0.87rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cs-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cs-link i { font-size: 0.75rem; transition: var(--transition); }
.cs-link:hover i { transform: translateX(4px); }

/* === HOME WHY US (Business) === */
.home-why-us {
    padding: 90px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.home-why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.08;
}

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

.home-why-us .section-title h2 { color: var(--white); }
.home-why-us .section-title p { color: rgba(255,255,255,0.6); }

.why-biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-biz-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    color: var(--white);
}

.why-biz-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.why-biz-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(201,168,76,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 18px;
    transition: var(--transition);
}

.why-biz-card:hover .why-biz-icon {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    transform: scale(1.1);
}

.why-biz-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.why-biz-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* === TECHNOLOGY PARTNERS === */
.tech-partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
    transition: var(--transition);
    cursor: default;
}

.partner-badge i {
    font-size: 1.3rem;
}

.partner-badge:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: var(--gray-300);
    transform: translateY(-3px);
    color: var(--primary);
}

/* === TRAINING SECONDARY SECTION === */
.training-secondary {
    padding: 60px 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
}

.training-sec-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
}

.training-sec-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.training-sec-text {
    flex: 1;
}

.training-sec-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.training-sec-text p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.training-sec-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .core-services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-biz-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-divider { display: none; }
    .trust-item { padding: 8px 18px; }
}

@media (max-width: 768px) {
    .core-services-grid { grid-template-columns: 1fr; }
    .why-biz-grid { grid-template-columns: 1fr; }
    .training-sec-inner { flex-direction: column; text-align: center; }
    .training-sec-icon { margin: 0 auto; }
    .trust-bar-grid { justify-content: flex-start; gap: 4px; }
    .trust-item { font-size: 0.8rem; padding: 6px 12px; }
    .partners-grid { gap: 10px; }
    .partner-badge { padding: 10px 16px; font-size: 0.82rem; }
}

/* === HOME WHY US COMPACT (kept for other pages) === */
.why-us-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-compact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-compact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.why-compact-item i {
    font-size: 1.3rem;
    color: var(--accent);
    min-width: 24px;
}

.why-compact-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}

/* === STATS BAR (About page) === */
.stats-bar {
    padding: 60px 0;
    background: var(--primary);
}

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

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
}

.stat-item .label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === COURSES PAGE === */
.courses-intro {
    padding: 70px 0 30px;
    background: var(--white);
}

.courses-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.course-feature {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: var(--off-white);
}

.course-feature i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.course-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.course-feature p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.course-category {
    margin-top: 50px;
    margin-bottom: 24px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.category-title i {
    color: var(--accent);
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-meta i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* === SERVICES PAGE (Detailed) === */
.services-intro {
    padding: 70px 0 20px;
    background: var(--white);
}

.services-detailed {
    padding: 30px 0 80px;
    background: var(--white);
}

.service-detail-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.sd-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
    transition: var(--transition);
}

.sd-icon-wrap.cloud { background: linear-gradient(135deg, #059669, #34d399); box-shadow: 0 8px 25px rgba(5,150,105,0.3); }
.sd-icon-wrap.training { background: linear-gradient(135deg, #d97706, #fbbf24); box-shadow: 0 8px 25px rgba(217,119,6,0.3); }
.sd-icon-wrap.web { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 8px 25px rgba(124,58,237,0.3); }
.sd-icon-wrap.marketing { background: linear-gradient(135deg, #dc2626, #f87171); box-shadow: 0 8px 25px rgba(220,38,38,0.3); }
.sd-icon-wrap.consulting { background: linear-gradient(135deg, #0891b2, #22d3ee); box-shadow: 0 8px 25px rgba(8,145,178,0.3); }

.service-detail-row:hover .sd-icon-wrap {
    transform: scale(1.08);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-detail-content > p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.service-features li i {
    color: var(--accent);
    font-size: 0.8rem;
    min-width: 16px;
}

/* === SERVICE CONTACT MODAL === */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 29, 61, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.85) translateY(40px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.service-modal-overlay.active .service-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.service-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-500);
    transition: var(--transition);
    z-index: 2;
    border: none;
    cursor: pointer;
}

.service-modal-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.service-modal-header {
    text-align: center;
    padding: 36px 36px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(201, 168, 76, 0.04));
    border-bottom: 1px solid var(--gray-100);
}

.service-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    animation: modalIconPulse 2s ease-in-out infinite;
}

@keyframes modalIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 10px 35px rgba(37, 99, 235, 0.4); }
}

.service-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-modal-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.service-modal-form {
    padding: 28px 36px 36px;
}

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

.modal-form-group {
    margin-bottom: 18px;
}

.modal-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.modal-form-group label i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.78rem;
}

.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.modal-form-group input[readonly] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(201, 168, 76, 0.06));
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    font-weight: 600;
    cursor: default;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.modal-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.modal-submit-btn {
    flex: 1;
    padding: 14px 24px !important;
    font-size: 0.92rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-whatsapp-btn {
    flex: 1;
    padding: 14px 24px !important;
    font-size: 0.92rem !important;
    background: #25d366 !important;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.modal-whatsapp-btn:hover {
    background: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.modal-whatsapp-btn i {
    font-size: 1.2rem;
}

/* Modal button styles for service cards */
.btn-get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-get-in-touch i {
    font-size: 0.85rem;
}

/* Modal scrollbar styling */
.service-modal::-webkit-scrollbar {
    width: 6px;
}

.service-modal::-webkit-scrollbar-track {
    background: transparent;
}

.service-modal::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.service-modal::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Modal responsive */
@media (max-width: 768px) {
    .service-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
    }

    .service-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .service-modal-overlay.active .service-modal {
        transform: scale(1) translateY(0);
    }

    .service-modal-form {
        padding: 20px 24px 30px;
    }

    .service-modal-header {
        padding: 28px 24px 16px;
    }

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

    .modal-form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-modal-header h3 {
        font-size: 1.25rem;
    }

    .service-modal-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* === CONTACT PAGE === */
.contact-cards {
    padding: 70px 0;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
}

.contact-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--accent);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-main {
    padding: 0 0 80px;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-section > p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

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

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.contact-form textarea { resize: vertical; }

.contact-form .btn i { margin-right: 8px; }

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-map-large h3,
.contact-social-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-map-large iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
}

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

.contact-social-box p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.twitter { background: #000; }
.social-btn.tiktok { background: #010101; }

/* === MULTI-PAGE RESPONSIVE === */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-features { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-compact { grid-template-columns: repeat(2, 1fr); }
    .contact-main-grid { grid-template-columns: 1fr; }
    .service-detail-row { grid-template-columns: 1fr; gap: 20px; }
    .service-detail-row.reverse { direction: ltr; }
    .sd-icon-wrap { width: 80px; height: 80px; font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .highlights-grid { grid-template-columns: 1fr; }
    .courses-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .why-us-compact { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.4rem; }
}
