/*
Theme Name: GetReady Academy
Theme URI: https://getreadyacademy.com/
Author: GetReady Academy
Author URI: https://getreadyacademy.com/
Description: Professional WordPress theme for GetReady Academy - Career Transformation Academy. Features light theme with red/pink accent colors, custom post types for programs, events, and success stories with Elementor and Contact Form 7 compatibility.
Version: 4.2.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getready-academy
Tags: education, light, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, theme-options

GetReady Academy WordPress Theme - From Learning To Earning
*/

/* ========================================
   CSS Variables - Matching React Source
======================================== */
:root {
    /* Primary Brand Colors */
    --primary-red: #FF325D;
    --primary-dark-red: #A01B2C;
    --primary-darkest: #5B0A14;
    --accent-yellow: #FEFF00;
    --accent-peach: #FFD0AC;
    --accent-pink-light: #FFB9B1;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-peach-light: rgba(255, 208, 172, 0.1);
    --bg-pink-light: rgba(255, 185, 177, 0.1);
    
    /* Text Colors */
    --text-dark: #1F1F1F;
    --text-gray: #6B7280;
    --text-gray-dark: #4B5563;
    --text-gray-light: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Footer Colors */
    --footer-bg: #1F1F1F;
    --footer-text: #9CA3AF;
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.1);
    --border-gray: #E5E7EB;
    --border-peach: rgba(255, 208, 172, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--primary-red);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

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

/* ========================================
   Layout & Container
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 208, 172, 0.3);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-title .highlight {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

/* ========================================
   Header & Navigation
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-gray);
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
}

@media (min-width: 640px) {
    .header-inner {
        padding: 1rem 0;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo img {
    width: 32px;
    height: 32px;
}

.site-logo .logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .site-logo .logo-text {
        font-size: 1.25rem;
    }
}

.main-navigation {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        gap: 2rem;
    }
}

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

@media (min-width: 1280px) {
    .nav-menu {
        gap: 2rem;
    }
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-size: 0.9375rem;
    color: var(--text-gray-dark);
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--primary-red);
}

/* Dropdown Menu */
.nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

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

.nav-menu li ul li a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.nav-menu li ul li:last-child a {
    border-bottom: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
    color: var(--text-gray-dark);
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 6px 0;
    transition: all var(--transition-fast);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark-red);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-red {
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
    color: var(--text-white);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 27, 44, 0.95), rgba(91, 10, 20, 0.95));
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.hero-badge svg,
.hero-badge i {
    color: #FDE047;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-title .gradient-text {
    background: linear-gradient(to right, #FDE68A, #FBCFE8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-stat-value {
        font-size: 3rem;
    }
}

.hero-stat-label {
    font-size: 1rem;
}

.hero-stat-divider {
    display: none;
    width: 1px;
    height: 4rem;
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .hero-stat-divider {
        display: block;
    }
}

/* ========================================
   Cards
======================================== */
.card {
    background: var(--bg-white);
    border: 2px solid var(--border-peach);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(255, 50, 93, 0.5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.card-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.card-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.card h3, .card h4 {
    margin-bottom: var(--spacing-sm);
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Program Cards */
.program-card {
    background: var(--bg-white);
    border: 2px solid var(--border-peach);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.program-card:hover {
    border-color: rgba(255, 50, 93, 0.5);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

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

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.program-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.program-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.program-card-content {
    padding: var(--spacing-lg);
}

.program-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-gray);
    margin-top: var(--spacing-md);
}

.program-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.program-meta-item i,
.program-meta-item svg {
    color: var(--primary-red);
}

/* ========================================
   Section: Problem
======================================== */
.problem-section {
    background: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Section: Difference
======================================== */
.difference-section {
    background: var(--bg-peach-light);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Section: Who Can Join
======================================== */
.who-can-join-section {
    background: var(--bg-white);
}

.audience-card {
    background: var(--bg-white);
    border: 2px solid var(--border-peach);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.audience-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.audience-card-image {
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.audience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.audience-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 208, 172, 0.3);
    border: 1px solid var(--border-peach);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--primary-red);
}

/* ========================================
   Programs Grid
======================================== */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Events Section
======================================== */
.events-section {
    background: var(--bg-peach-light);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.event-card {
    background: var(--bg-white);
    border: 2px solid var(--border-peach);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.event-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
}

.event-card-image {
    height: 200px;
    position: relative;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: #10B981;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.event-card-content {
    padding: var(--spacing-lg);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   Two Column Layout with Image
======================================== */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col-section {
        grid-template-columns: 1fr 1fr;
    }
}

.section-image {
    position: relative;
}

.section-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.section-image-accent {
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.section-image-accent.bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
}

.section-image-accent.top-left {
    top: -1.5rem;
    left: -1.5rem;
}

/* ========================================
   Testimonials
======================================== */
.testimonials-section {
    background: var(--bg-white);
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

.google-rating .rating {
    font-size: 2rem;
    font-weight: 800;
    color: #F59E0B;
}

.google-rating .stars {
    color: #F59E0B;
}

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    scroll-snap-align: start;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Success Stories
======================================== */
.success-stories-section {
    background: var(--bg-peach-light);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .success-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.success-card {
    background: var(--bg-white);
    border: 2px solid var(--border-peach);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

.success-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
}

.success-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-gray-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-lg);
}

.success-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
    line-height: 1;
}

.success-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.success-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.5rem;
}

.success-salary {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #10B981;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-white);
}

/* ========================================
   Companies Section
======================================== */
.companies-section {
    background: var(--bg-white);
}

.companies-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-xl);
}

.company-logo {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    transition: all var(--transition-fast);
}

.company-logo:hover {
    border-color: var(--primary-red);
}

.companies-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-gray);
}

.company-stat {
    text-align: center;
}

.company-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    background: var(--bg-peach-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h5 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--primary-red);
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    margin-bottom: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 50, 93, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-gray-light);
}

/* Contact Form 7 Styling */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 .wpcf7-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 1.5rem;
}

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

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer-brand h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--footer-text);
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact-item i,
.footer-contact-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

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

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

.footer-column h5 {
    color: var(--text-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    font-size: 0.9375rem;
    color: var(--footer-text);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    color: var(--footer-text);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--footer-text);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--footer-text);
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-darkest), var(--primary-dark-red));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::before {
    top: 0;
    left: 0;
    width: 10rem;
    height: 10rem;
    border-right: none;
    border-bottom: none;
}

.cta-banner::after {
    bottom: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    border-left: none;
    border-top: none;
}

.cta-banner h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-banner .highlight {
    color: var(--accent-yellow);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* ========================================
   Page Header
======================================== */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-darkest));
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,...') center/cover;
    opacity: 0.1;
}

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

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-header .highlight {
    color: var(--accent-yellow);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--accent-yellow);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        border-top: 1px solid var(--border-gray);
        padding: 1rem;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav ul {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav ul li {
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-nav ul li a {
        display: block;
        padding: 1rem;
        color: var(--text-gray-dark);
    }

    .mobile-nav ul li a:hover {
        background: var(--bg-light);
        color: var(--primary-red);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-red { color: var(--primary-red); }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-peach-light { background-color: var(--bg-peach-light); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ========================================
   Elementor Compatibility
======================================== */
.elementor-widget-container {
    width: 100%;
}

.elementor-section {
    padding: var(--spacing-3xl) 0;
}

/* Full Width Template */
.getready-full-width .site-main {
    max-width: 100%;
    padding: 0;
}

.getready-full-width .elementor-full-width-content {
    width: 100%;
}

/* Canvas Template */
.elementor-canvas .site-main {
    padding: 0;
}

/* Elementor overrides for theme consistency */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-primary);
}

.elementor-button {
    font-family: var(--font-primary);
    font-weight: 600;
}

/* ========================================
   Mobile Navigation (JS-driven)
======================================== */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 49;
}

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

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-gray-dark);
}

.mobile-nav ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-red);
}

.mobile-nav .sub-menu {
    display: none;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.mobile-nav .menu-item-has-children.open > .sub-menu,
.mobile-nav .sub-menu.open {
    display: block;
}

.mobile-nav .sub-menu li a {
    padding-left: 2.5rem;
}

/* Mobile toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header scroll effect */
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 40;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   WordPress Block Editor Styles
======================================== */
.wp-block-image img {
    border-radius: var(--radius-lg);
}

.wp-block-button .wp-block-button__link {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0;
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .scroll-to-top {
        display: none !important;
    }
    .site-main {
        padding-top: 0 !important;
    }
}

/* ========================================
   Programs Page - Responsive Grid & Tabs
======================================== */
.program-tab {
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-tab:hover {
    background: linear-gradient(to right, #A01B2C, #5B0A14) !important;
    color: white !important;
}

.program-tab.active {
    background: linear-gradient(to right, #A01B2C, #5B0A14) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Programs page hero stats responsive */
@media (max-width: 768px) {
    .site-main section:first-child [style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .site-main section:first-child [style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
}

/* Programs grid responsive override */
@media (max-width: 768px) {
    #programs-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #programs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Next Batch section responsive */
@media (max-width: 768px) {
    .site-main [style*="grid-template-columns:2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Category tabs responsive */
@media (max-width: 640px) {
    #program-tabs {
        gap: 0.25rem !important;
    }
    #program-tabs .program-tab {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
}

/* Search and filter responsive */
@media (max-width: 640px) {
    .site-main [style*="display:flex;gap:1rem;flex-wrap:wrap"] {
        flex-direction: column !important;
    }
}

/* Program card hover effects */
.program-card {
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 50, 93, 0.5) !important;
}

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

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

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* ========================================
   Events Page - Responsive
======================================== */
@media (max-width: 768px) {
    .site-main [style*="grid-template-columns:repeat(auto-fit,minmax(420px,1fr))"] {
        grid-template-columns: 1fr !important;
    }
}

/* Event Detail - Responsive */
@media (max-width: 1024px) {
    .site-main [style*="grid-template-columns:2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .site-main [style*="grid-template-columns:repeat(4,1fr);gap:1rem;margin-bottom:2rem"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Event card hover effects */
.site-main [onclick*="window.location.href"] {
    transition: all 0.5s ease;
}

.site-main [onclick*="window.location.href"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.site-main [onclick*="window.location.href"]:hover img {
    transform: scale(1.1);
}

/* ========================================
   Career Path Visualizer CTA Responsive
======================================== */
@media (max-width: 768px) {
    .site-main [style*="display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap"] {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Bottom CTA Section Responsive
======================================== */
@media (max-width: 640px) {
    .site-main [style*="border-radius:1rem;margin:0 1.5rem"] {
        margin: 0 0.5rem 2rem !important;
        padding: 2rem 1rem !important;
    }
}

/* ========================================
   Page content top padding for header
======================================== */
.site-main {
    padding-top: 70px;
}

@media (min-width: 1024px) {
    .site-main {
        padding-top: 80px;
    }
}

/* Form input focus styles in content */
.site-main input:focus,
.site-main select:focus,
.site-main textarea:focus {
    border-color: #A01B2C !important;
    box-shadow: 0 0 0 3px rgba(160, 27, 44, 0.1);
}

/* Submit button hover */
.site-main button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 27, 44, 0.4) !important;
}

/* ========================================
   Course Detail Page - Responsive
======================================== */

/* Course hero grid responsive */
@media (max-width: 768px) {
    .site-main section:first-child [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Course main content + sidebar responsive */
@media (max-width: 1024px) {
    .site-main [style*="grid-template-columns:1fr 340px"] {
        grid-template-columns: 1fr !important;
    }
}

/* Career path timeline responsive */
@media (max-width: 768px) {
    .site-main [style*="position:absolute;left:50%;transform:translateX(-50%);top:0;bottom:0;width:2px"] {
        display: none !important;
    }
    .site-main [style*="width:calc(50% - 3rem)"] {
        width: 100% !important;
        margin: 0 !important;
    }
    .site-main [style*="position:absolute;left:50%;transform:translateX(-50%);width:3rem;height:3rem"] {
        display: none !important;
    }
}

/* Alumni cards responsive */
@media (max-width: 640px) {
    .site-main [style*="grid-template-columns:repeat(auto-fit,minmax(500px,1fr))"] {
        grid-template-columns: 1fr !important;
    }
    .site-main [style*="display:flex;"] > [style*="width:35%"] {
        width: 100% !important;
        height: 200px !important;
    }
    .site-main [style*="display:flex;"] > [style*="width:65%"] {
        width: 100% !important;
    }
}

/* Stats grid responsive */
@media (max-width: 640px) {
    .site-main [style*="grid-template-columns:repeat(4,1fr);gap:2rem"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Curriculum module styles */
.curriculum-module {
    transition: border-color 0.2s;
}

.curriculum-module:hover {
    border-color: #A01B2C !important;
}

.curriculum-module.open {
    border-color: #A01B2C !important;
}

.curriculum-toggle:hover {
    background: #F9FAFB !important;
}

