/* ============================================ */
/* RESPONSIVE DESIGN SYSTEM */
/* ============================================ */

/* ============================================ */
/* LARGE DESKTOP - 1440px and above */
/* ============================================ */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-section {
        min-height: 950px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 6vw, 5.5rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }
    
    .programs-grid {
        gap: 2rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
}

/* ============================================ */
/* DESKTOP - 1025px to 1440px */
/* ============================================ */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero-wrapper {
        gap: 3rem;
    }
    
    .hero-visual .floating-card {
        transform: scale(0.9);
    }
    
    .card-1 { right: -2%; }
    .card-2 { left: -2%; }
    .card-3 { right: -4%; }
    .card-4 { left: -5%; }
    
    .bento-grid {
        gap: 0.875rem;
    }
    
    .bento-card {
        padding: 1.25rem;
    }
    
    .faculty-grid {
        gap: 1.25rem;
    }
}

/* ============================================ */
/* TABLET LANDSCAPE / SMALL LAPTOP - 769px to 1024px */
/* ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    /* General */
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 2rem 0 4rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-image-frame {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-visual .floating-card {
        transform: scale(0.8);
    }
    
    .card-1 { top: 5%; right: 2%; }
    .card-2 { bottom: 10%; left: 2%; }
    .card-3 { bottom: 25%; right: 0%; }
    .card-4 { display: none; }
    
    /* Stats */
    .stats-row {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    /* Why Section */
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-content {
        text-align: center;
    }
    
    .why-features-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    /* Programs */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .program-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: var(--text-xs);
    }
    
    /* Learning Experience */
    .learning-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .learning-content {
        text-align: center;
    }
    
    .learning-features {
        text-align: left;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dashboard-float-card {
        display: none;
    }
    
    /* Journey */
    .journey-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .journey-timeline::before {
        left: 30px;
        right: 30px;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content p {
        font-size: var(--text-xs);
    }
    
    /* Results */
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .result-circle {
        width: 100px;
        height: 100px;
    }
    
    /* Faculty */
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-large {
        grid-row: span 1;
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    /* Events */
    .events-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .event-featured {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* CTA */
    .cta-wrapper {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
}

/* ============================================ */
/* TABLET PORTRAIT - 481px to 768px */
/* ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    /* General */
    .container {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .section-badge {
        font-size: var(--text-xs);
        padding: 0.4rem 1rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    .nav-actions .btn-primary {
        padding: 0.4rem 1rem;
        font-size: var(--text-xs);
    }
    
    /* Announcement Bar */
    .announcement-text {
        font-size: var(--text-xs);
    }
    
    .announcement-right .announcement-link {
        font-size: var(--text-xs);
    }
    
    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 1.5rem 0 3rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-visual .floating-card {
        transform: scale(0.7);
    }
    
    .card-1 { top: 2%; right: -5%; }
    .card-2 { bottom: 5%; left: -5%; }
    .card-3 { display: none; }
    .card-4 { display: none; }
    
    /* Stats */
    .stats-row {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.75rem);
        justify-content: center;
    }
    
    .logo-strip {
        gap: 1rem;
    }
    
    .logo-item {
        padding: 0.5rem 1rem;
    }
    
    .logo-placeholder {
        font-size: var(--text-xs);
    }
    
    /* Why Section */
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-content {
        text-align: center;
    }
    
    .why-features-list {
        text-align: left;
        max-width: 100%;
    }
    
    .why-features-list li {
        font-size: var(--text-sm);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
    }
    
    .bento-large {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    .bento-card {
        padding: 1rem;
    }
    
    .bento-card h4 {
        font-size: var(--text-sm);
    }
    
    .bento-card p {
        font-size: var(--text-xs);
    }
    
    .bento-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .program-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.4rem 0.875rem;
        font-size: var(--text-xs);
    }
    
    .program-body h3 {
        font-size: var(--text-base);
    }
    
    .program-meta {
        gap: 0.75rem;
    }
    
    /* Learning Experience */
    .learning-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .learning-content {
        text-align: center;
    }
    
    .learning-features {
        text-align: left;
        max-width: 100%;
    }
    
    .learning-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .dashboard-panel {
        padding: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .dash-stat {
        padding: 0.5rem;
    }
    
    .dash-stat-value {
        font-size: var(--text-lg);
    }
    
    .dashboard-float-card {
        display: none;
    }
    
    .chart-bars {
        height: 80px;
    }
    
    /* Journey */
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
        position: relative;
        padding-left: 2rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .journey-step {
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .step-number {
        font-size: var(--text-lg);
        min-width: 40px;
        margin-bottom: 0;
    }
    
    .step-content {
        padding: 1rem;
        flex: 1;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    /* Results */
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .result-circle {
        width: 90px;
        height: 90px;
    }
    
    .result-number {
        font-size: var(--text-base);
    }
    
    .result-number-large {
        font-size: var(--text-3xl);
    }
    
    .results-quote blockquote {
        font-size: var(--text-base);
    }
    
    /* Faculty */
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .faculty-body {
        padding: 1rem;
    }
    
    .faculty-body h4 {
        font-size: var(--text-sm);
    }
    
    .faculty-tags span {
        font-size: var(--text-xs);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
    }
    
    .gallery-large {
        grid-row: span 1;
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-caption h4 {
        font-size: var(--text-sm);
    }
    
    .gallery-caption p {
        font-size: var(--text-xs);
    }
    
    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-featured {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .event-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
        padding: 0.5rem 1rem;
    }
    
    .event-day {
        font-size: var(--text-xl);
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-body h4 {
        font-size: var(--text-base);
    }
    
    /* FAQ */
    .faq-question {
        font-size: var(--text-sm);
        padding: 1rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: var(--text-sm);
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    /* CTA */
    .cta-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }
    
    .cta-title {
        font-size: var(--text-2xl);
    }
    
    .cta-description {
        font-size: var(--text-base);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-avatars {
        flex-wrap: wrap;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ============================================ */
/* MOBILE - 360px to 480px */
/* ============================================ */
@media (max-width: 480px) {
    /* General */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section-badge {
        font-size: var(--text-xs);
        padding: 0.3rem 0.875rem;
    }
    
    .section-description {
        font-size: var(--text-base);
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn-outline {
        display: none;
    }
    
    .nav-actions .btn-primary {
        padding: 0.3rem 0.75rem;
        font-size: var(--text-xs);
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .logo-main {
        font-size: 0.9rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .search-toggle {
        padding: 0.3rem;
    }
    
    /* Announcement Bar */
    .announcement-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.25rem 0;
    }
    
    .announcement-left {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .announcement-text {
        font-size: var(--text-xs);
    }
    
    .announcement-right {
        gap: 1rem;
    }
    
    .announcement-link {
        font-size: var(--text-xs);
    }
    
    /* Mobile Menu */
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-menu-inner {
        padding: 1.5rem 1rem;
    }
    
    .mobile-nav-links li a {
        font-size: var(--text-base);
        padding: 0.75rem 0;
    }
    
    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 1rem 0 2.5rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-badge {
        font-size: var(--text-xs);
        padding: 0.3rem 0.875rem;
    }
    
    .hero-description {
        font-size: var(--text-sm);
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: var(--text-sm);
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .trust-number {
        font-size: var(--text-base);
    }
    
    .trust-label {
        font-size: var(--text-xs);
    }
    
    .trust-divider {
        display: none;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-image-frame {
        max-width: 320px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
    }
    
    .hero-visual .floating-card {
        transform: scale(0.6);
    }
    
    .card-1 { top: 0%; right: -10%; }
    .card-2 { bottom: 2%; left: -10%; }
    .card-3 { display: none; }
    .card-4 { display: none; }
    
    /* Stats */
    .stats-row {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: var(--text-xl);
    }
    
    .stat-plus,
    .stat-percent {
        font-size: var(--text-base);
    }
    
    .stat-label {
        font-size: var(--text-xs);
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .logo-strip {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .logo-item {
        padding: 0.4rem 0.875rem;
    }
    
    .logo-placeholder {
        font-size: var(--text-xs);
    }
    
    /* Why Section */
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-content {
        text-align: center;
    }
    
    .why-features-list {
        text-align: left;
        max-width: 100%;
    }
    
    .why-features-list li {
        font-size: var(--text-sm);
        padding: 0.5rem 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bento-large {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .bento-card {
        padding: 1rem;
    }
    
    .bento-card h4 {
        font-size: var(--text-sm);
    }
    
    .bento-card p {
        font-size: var(--text-xs);
    }
    
    .bento-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-filters {
        gap: 0.35rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.3rem 0.75rem;
        font-size: var(--text-xs);
    }
    
    .program-body {
        padding: 1rem;
    }
    
    .program-body h3 {
        font-size: var(--text-base);
    }
    
    .program-body p {
        font-size: var(--text-xs);
    }
    
    .program-meta {
        gap: 0.5rem;
    }
    
    .meta-item {
        font-size: var(--text-xs);
    }
    
    /* Learning Experience */
    .learning-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .learning-content {
        text-align: center;
    }
    
    .learning-features {
        text-align: left;
        max-width: 100%;
    }
    
    .learning-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .learning-features h4 {
        font-size: var(--text-sm);
    }
    
    .learning-features p {
        font-size: var(--text-xs);
    }
    
    .learning-check {
        width: 24px;
        height: 24px;
        font-size: var(--text-xs);
    }
    
    .dashboard-panel {
        padding: 0.875rem;
        border-radius: var(--radius-md);
    }
    
    .dashboard-header h4 {
        font-size: var(--text-sm);
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .dash-stat {
        padding: 0.5rem;
    }
    
    .dash-stat-value {
        font-size: var(--text-base);
    }
    
    .dash-stat-label {
        font-size: var(--text-xs);
    }
    
    .dashboard-float-card {
        display: none;
    }
    
    .chart-bars {
        height: 60px;
        gap: 0.3rem;
    }
    
    .chart-labels span {
        font-size: var(--text-xs);
    }
    
    .upcoming-class {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .upcoming-title {
        font-size: var(--text-sm);
    }
    
    /* Journey */
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 1.5rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .journey-step {
        text-align: left;
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .step-number {
        font-size: var(--text-base);
        min-width: 32px;
        margin-bottom: 0;
    }
    
    .step-content {
        padding: 0.75rem;
        flex: 1;
    }
    
    .step-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .step-content h4 {
        font-size: var(--text-sm);
    }
    
    .step-content p {
        font-size: var(--text-xs);
    }
    
    /* Results */
    .results-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .result-circle {
        width: 80px;
        height: 80px;
    }
    
    .result-number {
        font-size: var(--text-sm);
    }
    
    .result-number-large {
        font-size: var(--text-2xl);
    }
    
    .result-label {
        font-size: var(--text-xs);
    }
    
    .results-quote blockquote {
        font-size: var(--text-sm);
    }
    
    .results-quote cite {
        font-size: var(--text-xs);
    }
    
    /* Faculty */
    .faculty-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faculty-body {
        padding: 0.875rem;
    }
    
    .faculty-body h4 {
        font-size: var(--text-sm);
    }
    
    .faculty-role {
        font-size: var(--text-xs);
    }
    
    .faculty-tags span {
        font-size: var(--text-xs);
        padding: 0.1rem 0.5rem;
    }
    
    .faculty-overlay .btn {
        font-size: var(--text-xs);
        padding: 0.4rem 1rem;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
    }
    
    .testimonial-content p {
        font-size: var(--text-base);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        width: 48px;
        height: 48px;
    }
    
    .testimonials-slider .swiper-button-next,
    .testimonials-slider .swiper-button-prev {
        display: none;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.5rem;
    }
    
    .gallery-large {
        grid-row: span 1;
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-caption {
        padding: 0.75rem;
    }
    
    .gallery-caption h4 {
        font-size: var(--text-xs);
    }
    
    .gallery-caption p {
        font-size: var(--text-xs);
        display: none;
    }
    
    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .event-featured {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .event-card {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }
    
    .event-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
        padding: 0.4rem 0.875rem;
    }
    
    .event-day {
        font-size: var(--text-lg);
    }
    
    .event-month {
        font-size: var(--text-xs);
    }
    
    .event-body h4 {
        font-size: var(--text-sm);
    }
    
    .event-body p {
        font-size: var(--text-xs);
    }
    
    .event-meta {
        font-size: var(--text-xs);
        gap: 0.5rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
        justify-content: center;
        font-size: var(--text-xs);
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-body {
        padding: 1rem;
    }
    
    .blog-body h4 {
        font-size: var(--text-sm);
    }
    
    .blog-body p {
        font-size: var(--text-xs);
    }
    
    .blog-meta {
        font-size: var(--text-xs);
        gap: 0.5rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: var(--text-sm);
        padding: 0.875rem 1rem;
    }
    
    .faq-answer p {
        font-size: var(--text-sm);
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* CTA */
    .cta-wrapper {
        padding: 2rem 1.25rem;
        border-radius: var(--radius-lg);
    }
    
    .cta-title {
        font-size: var(--text-2xl);
    }
    
    .cta-description {
        font-size: var(--text-sm);
    }
    
    .cta-badge {
        font-size: var(--text-xs);
        padding: 0.3rem 0.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: var(--text-sm);
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 0.25rem;
        font-size: var(--text-xs);
    }
    
    .cta-avatars {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .cta-avatars img {
        width: 32px;
        height: 32px;
    }
    
    .cta-avatars span {
        font-size: var(--text-xs);
    }
    
    .cta-float-shape {
        display: none;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: var(--text-sm);
    }
    
    .footer-col ul li a {
        font-size: var(--text-xs);
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: var(--text-xs);
        gap: 0.5rem;
    }
    
    .footer-contact li svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-form input {
        font-size: var(--text-xs);
        padding: 0.5rem 0.75rem;
    }
    
    .newsletter-form .btn-primary {
        font-size: var(--text-xs);
        padding: 0.5rem;
    }
    
    .footer-logo .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-logo .logo-main {
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom-content p {
        font-size: var(--text-xs);
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        font-size: var(--text-xs);
        gap: 0.5rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================ */
/* VERY SMALL SCREENS - Below 360px */
/* ============================================ */
@media (max-width: 359px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-image-frame {
        max-width: 260px;
    }
    
    .hero-visual .floating-card {
        transform: scale(0.5);
    }
    
    .card-1 { top: -10%; right: -15%; }
    .card-2 { bottom: -5%; left: -15%; }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .bento-grid {
        gap: 0.5rem;
    }
    
    .bento-card {
        padding: 0.75rem;
    }
    
    .program-body {
        padding: 0.75rem;
    }
    
    .cta-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: var(--text-xl);
    }
    
    .footer-grid {
        gap: 1rem;
    }
}

/* ============================================ */
/* TOUCH DEVICE OPTIMIZATIONS */
/* ============================================ */
@media (hover: none) {
    .floating-card {
        animation: none !important;
    }
    
    .bento-card:hover {
        transform: none !important;
    }
    
    .program-card:hover {
        transform: none !important;
    }
    
    .faculty-card:hover {
        transform: none !important;
    }
    
    .faculty-overlay {
        opacity: 1 !important;
        background: linear-gradient(0deg, rgba(79,70,229,0.9) 0%, transparent 60%);
        justify-content: flex-end;
        padding-bottom: 1.5rem;
    }
    
    .faculty-social {
        display: none;
    }
    
    .faculty-overlay .btn {
        display: none;
    }
    
    .gallery-caption {
        opacity: 1 !important;
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
    }
    
    .event-card:hover {
        transform: none !important;
    }
    
    .blog-card:hover {
        transform: none !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
}

/* ============================================ */
/* LANDSCAPE ORIENTATION OPTIMIZATIONS */
/* ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1rem 0 2rem;
    }
    
    .hero-wrapper {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-image-frame {
        max-width: 300px;
    }
    
    .hero-visual .floating-card {
        transform: scale(0.5);
    }
    
    .card-1 { top: 5%; right: 0%; }
    .card-2 { bottom: 5%; left: 0%; }
    .card-3 { display: none; }
    .card-4 { display: none; }
}

/* ============================================ */
/* PRINT STYLES - Mobile Override */
/* ============================================ */
@media print and (max-width: 768px) {
    .container {
        padding: 0 0.5rem !important;
    }
    
    .hero-section {
        padding: 1rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .hero-image-frame {
        max-width: 250px !important;
    }
    
    .section {
        padding: 1.5rem 0 !important;
    }
}