/* ============================================
   GREENFORD TRAINING CENTER - MAIN STYLESHEET
   Corporate Professional Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Corporate Green */
    
    --primary: #043D5D;
    --primary-dark: #0d2312;
    --primary-light: #06240d;
    --primary-rgb: 26, 95, 42;
    
    /* Secondary Colors */
    --secondary: #102737;
    --secondary-dark: #062a45;
    --secondary-light: #1e5a8a;
    
    /* Accent Colors */
    --accent: #c07d19;
    --accent-dark: #966315;
    --accent-light: #b77916;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.875rem;
    background: var(--primary) !important;
    color: white !important;
    border-radius: var(--radius);
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    color: white !important;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header.scrolled .top-bar {
    display: none;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    padding: 10px 0;
    transition: var(--transition);
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.top-contact {
    display: flex;
    gap: 25px;
    overflow: hidden;
}

.top-contact a {
    color: var(--white);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-contact a:hover {
    color: var(--accent);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    font-size: 0.875rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.top-social a:hover {
    background: var(--accent);
}

/* Navbar */
.navbar {
    padding: 15px 20px;
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a {
    padding: 12px 18px;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.nav-menu > li > a i {
    font-size: 0.7rem;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.dropdown li a:hover {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
}

/* Mobile Toggle - visible by default on mobile */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    z-index: 9999;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide toggle on desktop */
@media (min-width: 993px) {
    .nav-toggle {
        display: none !important;
        visibility: hidden !important;
    }
}

.nav-toggle span {
    display: block !important;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: visible;
    display: block;
    visibility: visible;
    z-index: 1;
    margin-top: 50px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    
    display: block;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Hide non-active slides */
.hero-slide:not(.active) {
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 42, 0.9) 0%, rgba(10, 61, 98, 0.85) 100%);
}

.hero .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding-top: 140px;
    padding-bottom: 120px;
    animation: heroFadeIn 0.6s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-arabic {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-prev, .hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-prev:hover, .hero-next:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
}

.stat-item i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-600);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 500;
}

.about-features .feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ============================================
   TRAINING MODES
   ============================================ */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mode-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mode-card.featured {
    border-color: var(--primary);
}

.mode-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mode-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mode-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.mode-card h3 {
    margin-bottom: 15px;
}

.mode-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.mode-card ul {
    text-align: left;
}

.mode-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.mode-card ul li:last-child {
    border-bottom: none;
}

.mode-card ul li i {
    color: var(--primary);
}

/* ============================================
   COURSE CATEGORIES
   ============================================ */
.course-categories {
    background: var(--gray-100);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link:hover {
    gap: 12px;
}

/* ============================================
   MULTILINGUAL SECTION
   ============================================ */
.multilingual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.multilingual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.multilingual-content .section-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.multilingual-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.multilingual-content p {
    opacity: 0.9;
}

.languages, .delivery-modes {
    margin-top: 25px;
}

.languages h4, .delivery-modes h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.language-tags, .mode-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lang-tag {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.mode-tags span {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.multilingual-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   ACCREDITATIONS PREVIEW
   ============================================ */
.accreditations-preview {
    background: var(--white);
}

.accreditations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.accred-logo {
    text-align: center;
}

.accred-logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    margin: 0 auto 10px;
    display: block;
    transition: var(--transition);
}

.accred-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.accred-logo span {
    display: block;
    font-weight: 600;
    color: var(--gray-600);
}

/* ============================================
   WHY TRUST US - NEW DESIGN
   ============================================ */
.why-trust-new {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-trust-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.why-trust-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.why-trust-header .text-white {
    color: var(--white);
}

.why-trust-header .text-accent {
    color: var(--accent);
}

.why-trust-header .arrow {
    color: var(--accent);
    font-weight: 300;
}

.why-trust-logo {
    width: 100px;
}

.why-trust-logo img {
    width: 100%;
    height: auto;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
}

.why-trust-card {
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-trust-card.accent {
    background: var(--accent);
    color: var(--dark);
}

.why-trust-card.white {
    background: var(--white);
    color: var(--dark);
}

.why-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.why-trust-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.why-trust-card:hover .why-trust-icon {
    transform: scale(1.1);
}

.why-trust-card.accent .why-trust-icon {
    background: rgba(255,255,255,0.3);
    color: var(--dark);
}

.why-trust-card.white .why-trust-icon {
    background: var(--primary);
    color: var(--white);
}

.why-trust-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-trust-card.accent h3 {
    color: var(--dark);
}

.why-trust-card.white h3 {
    color: var(--dark);
}

.why-trust-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

/* Responsive for Why Trust New */
@media (max-width: 992px) {
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-trust-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-trust-header {
        flex-direction: column;
        text-align: center;
    }
    
    .why-trust-logo {
        margin: 20px auto 0;
    }
    
    .why-trust-header h2 {
        font-size: 2rem;
    }
    
    .why-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHY CHOOSE US (OLD)
   ============================================ */
.why-choose {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.95) 0%, rgba(6, 42, 69, 0.95) 100%), url('../images/Featured_Image.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.why-choose .container {
    position: relative;
}

.why-choose .section-header h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.why-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.why-card p {
    opacity: 0.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(4, 61, 93, 0.95) 0%, rgba(13, 35, 18, 0.95) 100%), url('../images/hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT BAR
   ============================================ */
.contact-bar {
    background: var(--gray-100);
    padding: 60px 0;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-bar-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-bar-item i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-bar-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-bar-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-bar-item a {
    color: var(--primary);
}

.contact-bar-item a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--gray-500);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px !important;
}

.footer-contact li i {
    color: var(--primary-light);
    width: 20px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@media (max-width: 576px) {
    .whatsapp-float {
        right: 10px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
     position: relative;
    height: 60vh;
    min-height: 300px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.9;
}

.page-banner .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-content {
    text-align: center;
    color: var(--white);
    padding-top: 120px;
}

.page-banner-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: var(--white);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-section {
    padding: 100px 0;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-main-content .lead {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-main-image {
    position: relative;
}

.about-main-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-weight: 600;
}

/* Vision & Mission */
.vision-mission {
    background: var(--gray-100);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
}

.vm-card.mission::before {
    background: var(--secondary);
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.vm-card.mission .vm-icon {
    background: rgba(10, 61, 98, 0.1);
}

.vm-card.mission .vm-icon i {
    color: var(--secondary);
}

.vm-card h3 {
    margin-bottom: 20px;
}

.vm-card ul {
    margin-top: 15px;
}

.vm-card ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.vm-card ul li i {
    color: var(--primary);
    margin-top: 5px;
}

/* Core Values */
.core-values {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--primary);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: rgba(255,255,255,0.2);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.value-card:hover h3 {
    color: var(--white);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: var(--transition);
    margin-bottom: 0;
}

.value-card:hover p {
    color: rgba(255,255,255,0.8);
}

/* Reach & Impact - New Design */
.reach-impact-new {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.reach-impact-header {
    text-align: center;
    margin-bottom: 50px;
}

.reach-impact-logo {
    width: 100px;
    margin: 0 auto 20px;
}

.reach-impact-logo img {
    width: 100%;
    height: auto;
}

.reach-impact-title {
    margin-bottom: 20px;
}

.reach-impact-title .section-badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.reach-impact-title h2 {
    color: var(--dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.reach-impact-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
}

.impact-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.impact-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.impact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 61, 98, 0.3);
}

.impact-item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.impact-item-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.impact-item-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.impact-footer {
    text-align: center;
    padding: 30px;
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.impact-footer p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark);
}

@media (max-width: 1200px) {
    .impact-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-list {
        grid-template-columns: 1fr;
    }
    
    .reach-impact-title h2 {
        font-size: 1.8rem;
    }
    
    .reach-impact-new {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .impact-item {
        padding: 25px 20px;
    }
    
    .impact-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Keep old styles for index page */
/* Reach & Impact */
.reach-impact {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.95) 0%, rgba(4, 61, 93, 0.95) 100%), url('../images/professional-training.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.reach-impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.reach-impact .container {
    position: relative;
}

.reach-impact .section-header h2 {
    color: var(--white);
}

.reach-impact .section-header p {
    color: rgba(255,255,255,0.8);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.impact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.impact-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.impact-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.impact-message {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.impact-message p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Why Trust */
.why-trust {
    background: var(--gray-100);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   COURSES PAGE STYLES
   ============================================ */
.course-nav-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.course-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.course-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gray-100);
    border-radius: 30px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.course-nav-item:hover,
.course-nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.course-nav-item i {
    font-size: 1.1rem;
}

/* Course Category */
.course-category {
    padding: 80px 0;
}

.course-category.alt-bg {
    background: var(--gray-100);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.category-header .category-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-header .category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-info h2 {
    margin-bottom: 10px;
}

.category-info p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.course-category.alt-bg .course-item {
    background: var(--white);
}

.course-item:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.course-item.featured {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(255,255,255,1) 100%);
}

.course-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.course-item span {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.category-cta {
    text-align: center;
    padding-top: 20px;
}

/* Sub Category */
.sub-category {
    margin-bottom: 40px;
}

.sub-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.sub-category h3 i {
    color: var(--primary);
}

/* Custom Training */
.custom-training {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.custom-training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-content .category-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.custom-content .category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.custom-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.custom-content p {
    opacity: 0.9;
}

.custom-features, .custom-suitable {
    margin: 30px 0;
}

.custom-features h3, .custom-suitable h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.custom-features ul, .custom-suitable ul {
    margin: 0;
}

.custom-features ul li, .custom-suitable ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.custom-features ul li i, .custom-suitable ul li i {
    color: var(--accent);
    margin-top: 4px;
}

.custom-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   ACCREDITATION PAGE STYLES
   ============================================ */
.accred-intro {
    padding: 80px 0 40px;
    text-align: center;
}

.accred-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.accred-intro h2 {
    margin-bottom: 20px;
}

.main-accreditations {
    padding: 60px 0 100px;
    background: var(--gray-100);
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.accred-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accred-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.accred-card .accred-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.accred-card .accred-logo img {
    max-height: 80px;
    width: auto;
}

.accred-card h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.accred-full {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 15px;
}

.accred-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
}

/* ISO Certifications Section */
.iso-certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.iso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.iso-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.iso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.iso-logo {
    margin-bottom: 20px;
}

.iso-logo img {
    height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.iso-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.iso-card .iso-title {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.iso-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .iso-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .iso-grid {
        grid-template-columns: 1fr;
    }
}

/* Vendor Approval */
.vendor-approval {
    padding: 80px 0;
}

.vendor-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.vendor-benefits {
    margin-top: 20px;
}

.vendor-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.vendor-benefits li i {
    color: var(--primary);
}

.vendor-stats {
    display: flex;
    gap: 30px;
}

.vendor-stat {
    background: var(--primary);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
}

.vendor-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.vendor-stat .stat-number::after {
    content: '';
}

.vendor-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Vendor Logos */
.vendor-logos {
    margin-top: 60px;
    text-align: center;
}

.vendor-logos-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Vendor Carousel */
.vendor-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.vendor-carousel {
    width: 100%;
    overflow: hidden;
}

.vendor-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vendor-carousel-slide {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    animation: vendorSlide 25s linear infinite;
}

.vendor-carousel-slide:nth-child(2) {
    animation-direction: reverse;
}

.vendor-carousel-track:hover .vendor-carousel-slide {
    animation-play-state: paused;
}

@keyframes vendorSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.vendor-logo-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 180px;
    flex-shrink: 0;
    transition: var(--transition);
}

.vendor-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.vendor-logo-item img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: var(--transition);
}

.vendor-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .vendor-logo-item {
        height: 80px;
        min-width: 140px;
        padding: 15px;
    }
    
    .vendor-logo-item img {
        max-height: 50px;
    }
    
    .vendor-carousel-slide {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .vendor-carousel-wrapper {
        gap: 10px;
    }
    
    .vendor-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .vendor-logo-item {
        min-width: 120px;
        height: 70px;
    }
}

/* Cert Benefits */
.cert-benefits {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.95) 0%, rgba(4, 61, 93, 0.95) 100%), url('../images/training.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.cert-benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.cert-benefits .container {
    position: relative;
}

.cert-benefits .section-header h2 {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Partner Logos */
.partner-logos {
    padding: 80px 0;
    background: var(--gray-100);
}

.logos-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.logo-item img {
    height: 60px;
    width: auto;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-section {
    padding: 80px 0 40px;
    background: var(--gray-100);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Inquiry Section */
.inquiry-section {
    padding: 80px 0;
    background: var(--white);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.inquiry-content h2 {
    margin-bottom: 20px;
}

.inquiry-features {
    margin: 40px 0;
}

.inquiry-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.inquiry-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.inquiry-feature h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.inquiry-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.inquiry-trust {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.inquiry-trust h4 {
    margin-bottom: 10px;
}

.inquiry-trust p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Inquiry Form */
.inquiry-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.inquiry-form h3 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.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-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius);
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    background: var(--white);
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.thank-you-content h2 {
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accred-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    /* Reduce navbar padding on mobile to prevent toggle overflow */
    .navbar {
        padding: 10px 10px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .navbar .container {
        padding: 0 5px;
    }
    
    /* Ensure nav-toggle is visible on mobile */
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    /* Ensure toggle bars are visible */
    .nav-toggle span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--primary) !important;
    }
    
    .logo img {
        max-height: 50px;
        width: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu > li > a {
        padding: 15px 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 20px;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .about-grid,
    .multilingual-grid,
    .about-main-grid,
    .vm-grid,
    .inquiry-grid,
    .custom-training-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .multilingual-image,
    .custom-image {
        order: -1;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -20px;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reach-impact-logo {
        position: static;
        width: 120px;
        margin-bottom: 20px;
    }
    
    .reach-impact-intro {
        max-width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vendor-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .top-bar {
        display: none;
    }
    
    /* Further reduce navbar padding on small screens */
    .navbar {
        padding: 10px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        display: block !important;
        visibility: visible !important;
        overflow: hidden;
        position: relative;
    }
    
    .hero-slider {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        opacity: 0;
        visibility: hidden;
    }
    
    .hero-slide.active {
        position: relative;
        opacity: 1;
        visibility: visible;
        display: block !important;
    }
    
    .hero-slide:not(.active) {
        display: none !important;
    }
    
    .hero-content {
        padding: 100px 15px 60px;
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-nav {
        bottom: 60px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .logo img {
        max-height: 80px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-banner-content {
        padding-top: 100px;
    }
    
    .page-banner-content h1 {
        font-size: 2rem;
    }
    
    .about-badge {
        left: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-item-icon {
        margin: 0 auto;
    }
    
    .reach-impact-new::before {
        width: 4px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .course-nav {
        gap: 10px;
    }
    
    .course-nav-item {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .course-nav-item span {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
    }
    
    .accred-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-stats {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    /* Ensure hero is visible on small mobile */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        display: block !important;
        visibility: visible !important;
        position: relative;
        overflow: hidden;
    }
    
    .hero-slider {
        position: relative !important;
        width: 100%;
        height: auto !important;
        min-height: 100vh;
    }
    
    .hero-slide {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .hero-slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .hero-slide:not(.active) {
        display: none !important;
    }
    
    .hero-content {
        padding: 90px 10px 50px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-arabic {
        font-size: 1.25rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .page-banner {
        height: 45vh;
        min-height: 300px;
    }
    
    .page-banner-content {
        padding-top: 90px;
    }
    
    .page-banner-content h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
    
    .accreditations-logos {
        gap: 30px;
    }
    
    .accred-logo img {
        height: 50px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
}

/* ============================================
   CERTIFICATE VERIFICATION PAGE
   ============================================ */
.verification-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.verification-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-bottom: 30px;
}

.verification-header {
    text-align: center;
    margin-bottom: 30px;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.verification-icon i {
    font-size: 2rem;
    color: var(--white);
}

.verification-header h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.verification-header p {
    color: var(--gray-600);
    margin: 0;
}

.verification-form .form-group {
    margin-bottom: 20px;
}

.verification-form label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.verification-form .input-with-icon {
    position: relative;
}

.verification-form .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.verification-form .input-with-icon input {
    padding-left: 45px;
}

.verification-form .form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.verification-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.verification-form .btn-block {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
}

/* Result Cards */
.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    margin-bottom: 30px;
    border-top: 4px solid;
}

.result-card.success {
    border-top-color: #28a745;
}

.result-card.error {
    border-top-color: #dc3545;
}

.result-header {
    text-align: center;
    margin-bottom: 25px;
}

.result-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.result-icon.success {
    background: rgba(40, 167, 69, 0.1);
}

.result-icon.success i {
    font-size: 2rem;
    color: #28a745;
}

.result-icon.error {
    background: rgba(220, 53, 69, 0.1);
}

.result-icon.error i {
    font-size: 2rem;
    color: #dc3545;
}

.result-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.result-card.success .result-header h3 {
    color: #28a745;
}

.result-card.error .result-header h3 {
    color: #dc3545;
}

/* Certificate Details */
.certificate-details {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--gray-700);
}

.detail-value {
    color: var(--dark);
    text-align: right;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.valid {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #d68910;
}

.status-badge.expired {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Error Content */
.error-content {
    text-align: center;
    padding: 20px 0;
}

.error-content p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.error-tips {
    background: #fff3cd;
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
}

.error-tips strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
}

.error-tips ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.error-tips ul li {
    color: #856404;
    margin-bottom: 5px;
}

/* Result Footer */
.result-footer {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.result-footer i {
    margin-right: 5px;
}

.result-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* Help Section */
.help-section {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.help-section h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.help-section h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.help-section p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.help-contacts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.help-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Alert Styles for Verification */
.verification-card .alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.verification-card .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.verification-card .alert i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .verification-card {
        padding: 25px 20px;
    }
    
    .verification-icon {
        width: 60px;
        height: 60px;
    }
    
    .verification-icon i {
        font-size: 1.5rem;
    }
    
    .verification-header h2 {
        font-size: 1.5rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .help-contacts {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .hero-nav {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    section {
        page-break-inside: avoid;
    }
}
