@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;700&display=swap');
        
        :root {
            --primary-flame: #FF6B35;
            --secondary-flame: #FFA500;
            --accent-orange: #FF8C42;
            --dark-navy: #1A1B2E;
            --light-bg: #FFF8F3;
            --text-dark: #2C2C2C;
            --text-light: #666666;
            --white: #FFFFFF;
            --success-green: #27AE60;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: scale(1.05);
        }
        
        .logo-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--dark-navy);
            line-height: 1.2;
        }
        
        .logo-text p {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-flame), var(--secondary-flame));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-flame);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }

        /* ── Courses Dropdown ── */
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown > a {
            display: flex; align-items: center; gap: 0.3rem;
        }
        .nav-dropdown > a .chevron {
            font-size: 0.65rem; transition: transform 0.3s; margin-top: 1px;
            display: inline-block;
        }
        .nav-dropdown:hover > a .chevron { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 14px); left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: #fff; border-radius: 18px; min-width: 230px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 0 0 1px rgba(255,107,53,0.08);
            opacity: 0; visibility: hidden; pointer-events: none;
            transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
            z-index: 999; overflow: hidden;
        }
        /* Invisible bridge to prevent gap-flicker */
        .nav-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: -20px;
            right: -20px;
            height: 20px;
        }
        .dropdown-menu::before {
            content: ''; position: absolute; top: -7px; left: 50%;
            transform: translateX(-50%);
            border-left: 7px solid transparent; border-right: 7px solid transparent;
            border-bottom: 7px solid #fff;
        }
        .nav-dropdown:hover .dropdown-menu {
            opacity: 1; visibility: visible; pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-header {
            padding: 0.9rem 1.4rem 0.5rem;
            font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--text-light);
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .dropdown-item {
            display: flex; align-items: center; gap: 0.9rem;
            padding: 0.9rem 1.4rem; text-decoration: none;
            transition: background 0.2s;
        }
        .dropdown-item:last-child { border-radius: 0 0 18px 18px; }
        .dropdown-item:hover { background: var(--light-bg); }
        .dropdown-item:hover .di-name { color: var(--primary-flame); }
        .di-icon {
            width: 36px; height: 36px; flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            border-radius: 10px; display: flex; align-items: center;
            justify-content: center; font-size: 1rem;
            box-shadow: 0 4px 10px rgba(255,107,53,0.25);
        }
        .di-content {}
        .di-name { font-size: 0.9rem; font-weight: 700; color: var(--dark-navy); line-height: 1.2; }
        .di-seats { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
        }
        
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--dark-navy);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled + .mobile-nav,
        .navbar.scrolled ~ .mobile-nav {
            top: 60px;
        }

        /* Mobile Nav Open State */
        .mobile-menu.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .mobile-menu.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Nav Panel */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 1.5rem 2rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            flex-direction: column;
            gap: 0;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .mobile-nav.open {
            opacity: 1;
            transform: translateY(0);
        }
        .mobile-nav a {
            display: block;
            padding: 0.9rem 0;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            transition: color 0.2s;
        }
        .mobile-nav a:hover { color: var(--primary-flame); }
        .mobile-nav .mobile-apply-btn {
            margin-top: 1.2rem;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 1rem;
            border-radius: 50px;
            text-align: center;
            font-weight: 700;
            border-bottom: none;
            box-shadow: 0 4px 15px rgba(255,107,53,0.3);
        }
        /* Mobile dropdown sub-items */
        .mobile-nav .mobile-sub {
            padding-left: 1rem;
            font-size: 0.95rem;
            color: var(--text-light);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-50px, -50px) rotate(180deg); }
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
        }
        
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .primary-btn {
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
        }
        
        .secondary-btn {
            background: transparent;
            color: var(--primary-flame);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-flame);
            transition: all 0.3s ease;
        }
        
        .secondary-btn:hover {
            background: var(--primary-flame);
            color: white;
            transform: translateY(-3px);
        }
        
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-image-container {
            position: relative;
            background: white;
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }
        
        /* Features Section */
        .features {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            color: var(--primary-flame);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--dark-navy);
            margin-bottom: 1rem;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }
        
        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-navy);
        }
        
        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        /* Courses Section */
        .courses {
            padding: 6rem 0;
            background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .course-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(255, 107, 53, 0.2);
            border-color: var(--primary-flame);
        }
        
        .course-header {
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            padding: 2.5rem;
            text-align: center;
            position: relative;
        }
        
        .course-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid var(--secondary-flame);
        }
        
        .course-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .course-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .course-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }
        
        .course-body {
            padding: 3rem 2rem 2rem;
        }
        
        .course-details {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .course-details li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .course-details li:last-child {
            border-bottom: none;
        }
        
        .detail-label {
            color: var(--text-light);
            font-weight: 500;
        }
        
        .detail-value {
            color: var(--dark-navy);
            font-weight: 700;
        }
        
        .seats-available {
            background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .seats-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--success-green);
        }
        
        .seats-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        .course-apply-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 1rem;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            display: block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }
        
        .course-apply-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }
        
        /* Affiliations Section */
        .affiliations {
            padding: 6rem 0;
            background: var(--dark-navy);
            color: white;
        }
        
        .affiliations-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .affiliation-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 30px;
            border: 2px solid rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
        }
        
        .affiliation-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: var(--primary-flame);
        }
        
      /*  .affiliation-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        */
        .affiliation-icon {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 12px;
            display: inline-block;
        }

            .affiliation-icon img {
                width: 110px;
                height: auto;
                object-fit: contain;
            }
        .affiliation-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary-flame);
        }
        
        .affiliation-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--light-bg);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-item-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-item-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
        }
        
        .contact-item-content p {
            color: var(--text-light);
        }
        
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-flame);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }
        
        /* Footer */
        .footer {
            background: var(--dark-navy);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-flame);
        }
        
        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--secondary-flame);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-visual {
                order: -1;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .contact-grid,
            .affiliations-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links,
            .cta-button {
                display: none;
            }
            
            
            .mobile-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .primary-btn,
            .secondary-btn {
                text-align: center;
            }
        }
        
        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fallback: if JS is slow/disabled, show content after a delay via CSS */
        @media (prefers-reduced-motion: reduce) {
            .fade-in {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }


/* =============================================================
   ABOUT PAGE — SEPARATE CSS
   ============================================================= */

/* ── Shared About-page utilities ─────────────────────────────── */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section-tag {
    color: var(--primary-flame);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.about-section-tag--light {
    color: var(--secondary-flame);
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-section-title--white {
    color: white;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-delay-1 { transition-delay: 0.15s; }
.about-delay-2 { transition-delay: 0.3s; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.about-page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2b4a 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,165,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-page-hero__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.about-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: var(--secondary-flame);
}

.about-breadcrumb__sep {
    color: rgba(255,255,255,0.3);
}

.about-breadcrumb__current {
    color: var(--secondary-flame);
}

.about-page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-page-hero__title span {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 2px;
    margin: 1.5rem 0;
}

.about-page-hero__desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    line-height: 1.9;
}

/* ── ABOUT INTRO ──────────────────────────────────────────────── */
.about-intro {
    padding: 7rem 0;
    background: var(--white);
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro__text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro__text p strong {
    color: var(--dark-navy);
}

.about-intro__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-block {
    background: linear-gradient(135deg, var(--light-bg), white);
    border: 2px solid rgba(255,107,53,0.12);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
}

.about-stat-block:hover {
    border-color: var(--primary-flame);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,107,53,0.12);
}

.about-stat-block--tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat-block__emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.about-stat-block__num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-block__lbl {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-building-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}
.about-intro__build {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── VISION & MISSION ─────────────────────────────────────────── */
.about-vmo {
    padding: 7rem 0;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.about-vmo::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-vmo__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-vmo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Vision spans full left column */
.about-vmo__vision-card {
    grid-row: span 2;
}

/* Shared card base */
.about-vmo__vision-card,
.about-vmo__mission-card,
.about-vmo__values-card {
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-vmo__vision-card {
    background: linear-gradient(160deg, rgba(255,107,53,0.15), rgba(255,165,0,0.05));
    border: 2px solid rgba(255,107,53,0.35);
}

.about-vmo__vision-card:hover {
    border-color: var(--primary-flame);
    box-shadow: 0 0 60px rgba(255,107,53,0.15);
    transform: translateY(-4px);
}

.about-vmo__mission-card,
.about-vmo__values-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
}

.about-vmo__mission-card:hover,
.about-vmo__values-card:hover {
    border-color: rgba(255,165,0,0.4);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(255,165,0,0.08);
}

.about-vmo__icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 12px 30px rgba(255,107,53,0.3);
}

.about-vmo__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.about-vmo__card-sub {
    font-size: 0.85rem;
    color: var(--secondary-flame);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
}

.about-vmo__card-text {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.about-vmo__card-text strong {
    color: rgba(255,255,255,0.95);
}

.about-vmo__highlight {
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,165,0,0.1));
    border-left: 4px solid var(--primary-flame);
    padding: 1.2rem 1.5rem;
    border-radius: 0 16px 16px 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.about-vmo__mission-list {
    list-style: none;
    margin-top: 1rem;
}

.about-vmo__mission-list li {
    display: flex;
    gap: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.about-vmo__bullet {
    color: var(--secondary-flame);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-vmo__values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.about-vmo__value-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    transition: background 0.25s;
}

.about-vmo__value-chip:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
}

.about-vmo__value-icon {
    font-size: 1.5rem;
}

.about-vmo__value-label {
    color: var(--secondary-flame);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── CHAIRMAN / PRINCIPAL MESSAGE ────────────────────────────── */
.about-message {
    padding: 7rem 0;
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
}

.about-message--alt {
    background: var(--white);
}

.about-message__header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-message__wrapper {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 340px 1fr;
}

/* Reverse layout for Principal */
.about-message__wrapper--reverse {
    grid-template-columns: 1fr 340px;
}

.about-message__wrapper--reverse .about-message__content {
    order: 1;
}

.about-message__wrapper--reverse .about-message__sidebar {
    order: 2;
}

.about-message__sidebar {
    background: linear-gradient(160deg, var(--dark-navy) 0%, #2a2b4a 60%, #1a2240 100%);
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-message__sidebar::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-message__photo-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    padding: 4px;
    box-shadow: 0 0 0 10px rgba(255,107,53,0.15);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.about-message__photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2b4a, var(--dark-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-message__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-message__initials {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    opacity: 0.9;
    line-height: 1;
}

.about-message__badge {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.about-message__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.about-message__role {
    color: var(--secondary-flame);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.about-message__creds {
    list-style: none;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-message__creds li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    line-height: 1.5;
}

.about-message__creds li:last-child {
    border-bottom: none;
}

.about-message__cred-icon {
    color: var(--secondary-flame);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-message__content {
    padding: 4rem;
}

.about-message__quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--primary-flame);
    opacity: 0.12;
    margin-bottom: -0.5rem;
    display: block;
}

.about-message__heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.about-message__tagline {
    font-size: 1rem;
    color: var(--primary-flame);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
}

.about-message__body p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.95;
    margin-bottom: 1.4rem;
}

.about-message__body p strong {
    color: var(--dark-navy);
}

.about-message__body p em {
    color: var(--primary-flame);
    font-style: italic;
}

.about-message__signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-message__sig-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-flame), transparent);
}

.about-message__sig-line--rev {
    background: linear-gradient(90deg, transparent, var(--primary-flame));
}

.about-message__sig-text {
    text-align: center;
    flex-shrink: 0;
}

.about-message__sig-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark-navy);
}

.about-message__sig-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ── OVERVIEW (Courses, Facilities, Development) ─────────────── */
.about-overview {
    padding: 7rem 0;
    background: var(--light-bg);
}

.about-overview__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-overview__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-overview__col {
    background: white;
    border-radius: 28px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 2px solid rgba(255,107,53,0.1);
    transition: all 0.3s ease;
}

.about-overview__col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255,107,53,0.12);
    border-color: rgba(255,107,53,0.3);
}

.about-overview__col-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.about-overview__col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.2rem;
}

.about-overview__col-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-flame);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.about-overview__list {
    list-style: none;
}

.about-overview__list li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.about-overview__list li::before {
    content: '→';
    color: var(--primary-flame);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-overview__list li:last-child {
    border-bottom: none;
}

.about-overview__list--sm li {
    font-size: 0.9rem;
}

/* ── OBJECTIVES ───────────────────────────────────────────────── */
.about-objectives {
    padding: 7rem 0;
    background: white;
}

.about-objectives__layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

.about-objectives__intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 1.5rem;
}

.about-objectives__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-objective-item {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-objective-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-flame), var(--secondary-flame));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-objective-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,53,0.2);
    box-shadow: 0 20px 50px rgba(255,107,53,0.1);
    background: white;
}

.about-objective-item:hover::before {
    opacity: 1;
}

.about-objective-item__num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.about-objective-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.6rem;
}

.about-objective-item p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── CAREER / ADMISSIONS CTA STRIP ───────────────────────────── */
.about-cta-strip {
    padding: 6rem 0;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.about-cta-strip::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-cta-strip__col {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.about-cta-strip__col:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,53,0.4);
    transform: translateY(-5px);
}

.about-cta-strip__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-strip__col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--secondary-flame);
    margin-bottom: 0.6rem;
}

.about-cta-strip__col > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-strip__list {
    list-style: none;
}

.about-cta-strip__list li {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.about-cta-strip__list li::before {
    content: '✦';
    color: var(--primary-flame);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-cta-strip__list li:last-child {
    border-bottom: none;
}

.about-cta-strip__btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

.about-cta-strip__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.45);
}

/* ── WHY CHOOSE US PILLS ──────────────────────────────────────── */
.about-why {
    padding: 5rem 0;
    background: var(--light-bg);
}

.about-why__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-why__pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-why__pill {
    background: white;
    border: 2px solid rgba(255,107,53,0.18);
    border-radius: 50px;
    padding: 0.85rem 1.75rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.about-why__pill span {
    font-size: 1.3rem;
}

.about-why__pill:hover {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-vmo__grid {
        grid-template-columns: 1fr;
    }

    .about-vmo__vision-card {
        grid-row: span 1;
    }

    .about-message__wrapper,
    .about-message__wrapper--reverse {
        grid-template-columns: 1fr;
    }

    .about-message__wrapper--reverse .about-message__content,
    .about-message__wrapper--reverse .about-message__sidebar {
        order: unset;
    }

    .about-message__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: flex-start;
        padding: 2.5rem;
    }

    .about-message__photo-ring {
        margin-bottom: 0;
        width: 130px;
        height: 130px;
    }

    .about-overview__cols {
        grid-template-columns: 1fr 1fr;
    }

    .about-objectives__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-cta-strip__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-page-hero__title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-intro__visual {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat-block--tall {
        grid-row: span 1;
    }

    .about-vmo__values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-message__content {
        padding: 2.5rem 1.5rem;
    }

    .about-message__quote-mark {
        font-size: 5rem;
    }

    .about-message__heading {
        font-size: 1.6rem;
    }

    .about-overview__cols {
        grid-template-columns: 1fr;
    }

    .about-objectives__grid {
        grid-template-columns: 1fr;
    }

    .about-cta-strip__grid {
        grid-template-columns: 1fr;
    }

    .about-why__pill {
        font-size: 0.88rem;
        padding: 0.75rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-page-hero {
        padding: 5rem 0 3.5rem;
    }

    .about-page-hero__title {
        font-size: 2rem;
    }

    .about-vmo__values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-intro__visual {
        grid-template-columns: 1fr;
    }

    .about-stat-block--tall {
        display: block;
    }
}
/* =============================================================
   BBA PAGE — SEPARATE CSS
 
   ============================================================= */

/* ── Shared BBA-page utilities ───────────────────────────────── */
.bba-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bba-section {
    padding: 6rem 0;
}

.bba-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bba-section-tag {
    color: var(--primary-flame);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.bba-section-tag--light {
    color: var(--secondary-flame);
}

.bba-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bba-section-title--white {
    color: white;
}

.bba-section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bba-section-desc--light {
    color: rgba(255, 255, 255, 0.72);
}

.bba-delay-1 { transition-delay: 0.15s; }
.bba-delay-2 { transition-delay: 0.3s; }

/* ── PRIMARY & SECONDARY BUTTONS ─────────────────────────────── */
.bba-primary-btn {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.bba-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.bba-secondary-btn {
    background: transparent;
    color: var(--secondary-flame);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-flame);
    transition: all 0.3s ease;
    display: inline-block;
}

.bba-secondary-btn:hover {
    background: var(--secondary-flame);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* ── COURSE HERO ──────────────────────────────────────────────── */
.bba-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2b4a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bba-hero::before {
    content: '📊';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 22rem;
    opacity: 0.03;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
    line-height: 1;
}

.bba-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.bba-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.bba-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.bba-breadcrumb a:hover {
    color: var(--secondary-flame);
}

.bba-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
}

.bba-breadcrumb__current {
    color: var(--secondary-flame);
}

/* Hero grid */
.bba-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bba-course-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bba-hero__text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bba-hero__text h1 span {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bba-hero__text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bba-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero stat boxes */
.bba-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bba-stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bba-stat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-5px);
}

.bba-stat-box__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.bba-stat-box__value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.bba-stat-box__label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ── OVERVIEW ─────────────────────────────────────────────────── */
.bba-overview {
    background: var(--white);
}

.bba-overview__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bba-overview__content p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.bba-overview__content strong {
    color: var(--dark-navy);
}

/* Quick facts sidebar */
.bba-quick-facts {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.bba-quick-facts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bba-fact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bba-fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bba-fact-item__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bba-fact-item__details h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
    font-size: 0.93rem;
}

.bba-fact-item__details p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── HIGHLIGHTS ───────────────────────────────────────────────── */
.bba-highlights {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
}

.bba-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bba-highlight-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.bba-highlight-card:hover {
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.bba-highlight-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.bba-highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
}

.bba-highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── CURRICULUM ───────────────────────────────────────────────── */
.bba-curriculum {
    background: var(--white);
}

/* Year tabs */
.bba-year-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bba-year-tab {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.97rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bba-year-tab:hover {
    border-color: var(--primary-flame);
    color: var(--primary-flame);
}

.bba-year-tab--active {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border-color: transparent;
}

.bba-year-tab--active:hover {
    color: white;
}

/* Subject cards grid */
.bba-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bba-subjects-grid--hidden {
    display: none;
}

.bba-subject-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 1.8rem;
    border-left: 4px solid var(--primary-flame);
    transition: all 0.3s ease;
}

.bba-subject-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.bba-subject-card h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.bba-subject-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
}

.bba-curriculum__note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

.bba-curriculum__note strong {
    color: var(--dark-navy);
}

/* ── CAREERS ──────────────────────────────────────────────────── */
.bba-careers {
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.bba-careers::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bba-careers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.bba-career-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bba-career-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.bba-career-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bba-career-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-flame);
    margin-bottom: 0.8rem;
}

.bba-career-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ── ELIGIBILITY ──────────────────────────────────────────────── */
.bba-eligibility {
    background: var(--light-bg);
}

.bba-eligibility__content {
    max-width: 900px;
    margin: 0 auto;
}

.bba-eligibility__box {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bba-eligibility__box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bba-requirement {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bba-requirement:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bba-requirement__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.bba-requirement__content h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.bba-requirement__content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── FEE STRUCTURE ────────────────────────────────────────────── */
.bba-fee {
    background: var(--white);
}

.bba-fee__wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bba-fee__table {
    width: 100%;
    border-collapse: collapse;
}

.bba-fee__table thead {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
}

.bba-fee__table th {
    padding: 1.2rem;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
}

.bba-fee__table th:first-child {
    border-radius: 15px 0 0 0;
}

.bba-fee__table th:last-child {
    border-radius: 0 15px 0 0;
}

.bba-fee__table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    font-size: 0.97rem;
}

.bba-fee__table tbody tr:last-child td {
    border-bottom: none;
}

.bba-fee__table tbody tr:hover {
    background: white;
}

.bba-fee__total-row {
    font-weight: 700;
    font-size: 1.08rem;
    background: rgba(255, 107, 53, 0.07);
}

.bba-fee__total-row td {
    padding: 1.5rem 1.2rem;
}

.bba-fee__note {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.bba-fee__note strong {
    color: var(--dark-navy);
}

/* ── CTA SECTION ──────────────────────────────────────────────── */
.bba-cta {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bba-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.bba-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.bba-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bba-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.bba-cta__btn {
    display: inline-block;
    background: white;
    color: var(--primary-flame);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.bba-cta__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--accent-orange);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bba-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bba-hero__stats {
        order: -1;
    }

    .bba-overview__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bba-quick-facts {
        position: static;
    }
}

@media (max-width: 768px) {
    .bba-hero__text h1 {
        font-size: 2.4rem;
    }

    .bba-section-title {
        font-size: 2rem;
    }

    .bba-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bba-hero__buttons {
        flex-direction: column;
    }

    .bba-primary-btn,
    .bba-secondary-btn {
        text-align: center;
    }

    .bba-cta h2 {
        font-size: 2.2rem;
    }

    .bba-year-tabs {
        gap: 0.75rem;
    }

    .bba-year-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .bba-eligibility__box {
        padding: 2rem 1.5rem;
    }

    .bba-fee__wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .bba-hero {
        padding: 4rem 0;
    }

    .bba-hero__text h1 {
        font-size: 2rem;
    }

    .bba-stat-box {
        padding: 1.5rem 1rem;
    }

    .bba-stat-box__value {
        font-size: 1.8rem;
    }

    .bba-cta h2 {
        font-size: 1.8rem;
    }

    .bba-cta__btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .bba-fee__table th,
    .bba-fee__table td {
        padding: 0.9rem 0.75rem;
        font-size: 0.9rem;
    }
}
/* =============================================================
   BCOM PAGE — SEPARATE CSS
   ---------------------------------------------------------------

   ============================================================= */

/* ── Shared BCom-page utilities ──────────────────────────────── */
.bcom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bcom-section {
    padding: 6rem 0;
}

.bcom-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bcom-section-tag {
    color: var(--primary-flame);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.bcom-section-tag--light {
    color: var(--secondary-flame);
}

.bcom-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bcom-section-title--white {
    color: white;
}

.bcom-section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bcom-section-desc--light {
    color: rgba(255, 255, 255, 0.72);
}

.bcom-delay-1 { transition-delay: 0.15s; }
.bcom-delay-2 { transition-delay: 0.3s; }

/* ── PRIMARY & SECONDARY BUTTONS ─────────────────────────────── */
.bcom-primary-btn {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.bcom-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.bcom-secondary-btn {
    background: transparent;
    color: var(--secondary-flame);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-flame);
    transition: all 0.3s ease;
    display: inline-block;
}

.bcom-secondary-btn:hover {
    background: var(--secondary-flame);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* ── COURSE HERO ──────────────────────────────────────────────── */
.bcom-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2b4a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bcom-hero::before {
    content: '💼';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 22rem;
    opacity: 0.03;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
    line-height: 1;
}

.bcom-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.bcom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.bcom-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.bcom-breadcrumb a:hover {
    color: var(--secondary-flame);
}

.bcom-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
}

.bcom-breadcrumb__current {
    color: var(--secondary-flame);
}

/* Hero grid */
.bcom-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bcom-course-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bcom-hero__text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bcom-hero__text h1 span {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bcom-hero__text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bcom-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero stat boxes */
.bcom-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bcom-stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bcom-stat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-5px);
}

.bcom-stat-box__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.bcom-stat-box__value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.bcom-stat-box__label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ── OVERVIEW ─────────────────────────────────────────────────── */
.bcom-overview {
    background: var(--white);
}

.bcom-overview__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bcom-overview__content p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.bcom-overview__content strong {
    color: var(--dark-navy);
}

/* Quick facts sidebar */
.bcom-quick-facts {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.bcom-quick-facts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bcom-fact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bcom-fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bcom-fact-item__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bcom-fact-item__details h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
    font-size: 0.93rem;
}

.bcom-fact-item__details p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── HIGHLIGHTS ───────────────────────────────────────────────── */
.bcom-highlights {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
}

.bcom-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bcom-highlight-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.bcom-highlight-card:hover {
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.bcom-highlight-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.bcom-highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
}

.bcom-highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── CURRICULUM ───────────────────────────────────────────────── */
.bcom-curriculum {
    background: var(--white);
}

/* Year tabs */
.bcom-year-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bcom-year-tab {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.97rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bcom-year-tab:hover {
    border-color: var(--primary-flame);
    color: var(--primary-flame);
}

.bcom-year-tab--active {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border-color: transparent;
}

.bcom-year-tab--active:hover {
    color: white;
}

/* Subject cards grid */
.bcom-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bcom-subjects-grid--hidden {
    display: none;
}

.bcom-subject-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 1.8rem;
    border-left: 4px solid var(--primary-flame);
    transition: all 0.3s ease;
}

.bcom-subject-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.bcom-subject-card h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.bcom-subject-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
}

.bcom-curriculum__note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

.bcom-curriculum__note strong {
    color: var(--dark-navy);
}

/* ── CAREERS ──────────────────────────────────────────────────── */
.bcom-careers {
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.bcom-careers::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bcom-careers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.bcom-career-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bcom-career-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.bcom-career-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bcom-career-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-flame);
    margin-bottom: 0.8rem;
}

.bcom-career-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ── ELIGIBILITY ──────────────────────────────────────────────── */
.bcom-eligibility {
    background: var(--light-bg);
}

.bcom-eligibility__content {
    max-width: 900px;
    margin: 0 auto;
}

.bcom-eligibility__box {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bcom-eligibility__box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bcom-requirement {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bcom-requirement:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bcom-requirement__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.bcom-requirement__content h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.bcom-requirement__content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── FEE STRUCTURE ────────────────────────────────────────────── */
.bcom-fee {
    background: var(--white);
}

.bcom-fee__wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bcom-fee__table {
    width: 100%;
    border-collapse: collapse;
}

.bcom-fee__table thead {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
}

.bcom-fee__table th {
    padding: 1.2rem;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
}

.bcom-fee__table th:first-child {
    border-radius: 15px 0 0 0;
}

.bcom-fee__table th:last-child {
    border-radius: 0 15px 0 0;
}

.bcom-fee__table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    font-size: 0.97rem;
}

.bcom-fee__table tbody tr:last-child td {
    border-bottom: none;
}

.bcom-fee__table tbody tr:hover {
    background: white;
}

.bcom-fee__total-row {
    font-weight: 700;
    font-size: 1.08rem;
    background: rgba(255, 107, 53, 0.07);
}

.bcom-fee__total-row td {
    padding: 1.5rem 1.2rem;
}

.bcom-fee__note {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.bcom-fee__note strong {
    color: var(--dark-navy);
}

/* ── CTA SECTION ──────────────────────────────────────────────── */
.bcom-cta {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bcom-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.bcom-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.bcom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bcom-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.bcom-cta__btn {
    display: inline-block;
    background: white;
    color: var(--primary-flame);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.bcom-cta__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--accent-orange);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bcom-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bcom-hero__stats {
        order: -1;
    }

    .bcom-overview__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bcom-quick-facts {
        position: static;
    }
}

@media (max-width: 768px) {
    .bcom-hero__text h1 {
        font-size: 2.4rem;
    }

    .bcom-section-title {
        font-size: 2rem;
    }

    .bcom-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bcom-hero__buttons {
        flex-direction: column;
    }

    .bcom-primary-btn,
    .bcom-secondary-btn {
        text-align: center;
    }

    .bcom-cta h2 {
        font-size: 2.2rem;
    }

    .bcom-year-tabs {
        gap: 0.75rem;
    }

    .bcom-year-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .bcom-eligibility__box {
        padding: 2rem 1.5rem;
    }

    .bcom-fee__wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .bcom-hero {
        padding: 4rem 0;
    }

    .bcom-hero__text h1 {
        font-size: 2rem;
    }

    .bcom-stat-box {
        padding: 1.5rem 1rem;
    }

    .bcom-stat-box__value {
        font-size: 1.8rem;
    }

    .bcom-cta h2 {
        font-size: 1.8rem;
    }

    .bcom-cta__btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .bcom-fee__table th,
    .bcom-fee__table td {
        padding: 0.9rem 0.75rem;
        font-size: 0.9rem;
    }
}
/* =============================================================
   BSW SOCIAL WORK PAGE — SEPARATE CSS
   ---------------------------------------------------------------

   ============================================================= */

/* ── Shared BSW-page utilities ───────────────────────────────── */
.bsw-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bsw-section {
    padding: 6rem 0;
}

.bsw-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bsw-section-tag {
    color: var(--primary-flame);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.bsw-section-tag--light {
    color: var(--secondary-flame);
}

.bsw-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bsw-section-title--white {
    color: white;
}

.bsw-section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bsw-section-desc--light {
    color: rgba(255, 255, 255, 0.72);
}

.bsw-delay-1 { transition-delay: 0.15s; }
.bsw-delay-2 { transition-delay: 0.3s; }

/* ── PRIMARY & SECONDARY BUTTONS ─────────────────────────────── */
.bsw-primary-btn {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.bsw-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.bsw-secondary-btn {
    background: transparent;
    color: var(--secondary-flame);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-flame);
    transition: all 0.3s ease;
    display: inline-block;
}

.bsw-secondary-btn:hover {
    background: var(--secondary-flame);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* ── COURSE HERO ──────────────────────────────────────────────── */
.bsw-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2b4a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bsw-hero::before {
    content: '🤝';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 22rem;
    opacity: 0.03;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
    line-height: 1;
}

.bsw-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.bsw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.bsw-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.bsw-breadcrumb a:hover {
    color: var(--secondary-flame);
}

.bsw-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
}

.bsw-breadcrumb__current {
    color: var(--secondary-flame);
}

/* Hero grid */
.bsw-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bsw-course-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bsw-hero__text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bsw-hero__text h1 span {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bsw-hero__text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bsw-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero stat boxes */
.bsw-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bsw-stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bsw-stat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-5px);
}

.bsw-stat-box__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.bsw-stat-box__value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.bsw-stat-box__label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ── OVERVIEW ─────────────────────────────────────────────────── */
.bsw-overview {
    background: var(--white);
}

.bsw-overview__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bsw-overview__content p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.bsw-overview__content strong {
    color: var(--dark-navy);
}

/* Quick facts sidebar */
.bsw-quick-facts {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.bsw-quick-facts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bsw-fact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bsw-fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bsw-fact-item__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bsw-fact-item__details h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
    font-size: 0.93rem;
}

.bsw-fact-item__details p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── HIGHLIGHTS ───────────────────────────────────────────────── */
.bsw-highlights {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8DC 100%);
}

.bsw-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bsw-highlight-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.bsw-highlight-card:hover {
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.bsw-highlight-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.bsw-highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
}

.bsw-highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── CURRICULUM ───────────────────────────────────────────────── */
.bsw-curriculum {
    background: var(--white);
}

/* Year tabs */
.bsw-year-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bsw-year-tab {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.97rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bsw-year-tab:hover {
    border-color: var(--primary-flame);
    color: var(--primary-flame);
}

.bsw-year-tab--active {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border-color: transparent;
}

.bsw-year-tab--active:hover {
    color: white;
}

/* Subject cards grid */
.bsw-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bsw-subjects-grid--hidden {
    display: none;
}

.bsw-subject-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 1.8rem;
    border-left: 4px solid var(--primary-flame);
    transition: all 0.3s ease;
}

.bsw-subject-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.bsw-subject-card h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.bsw-subject-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
}

.bsw-curriculum__note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

.bsw-curriculum__note strong {
    color: var(--dark-navy);
}

/* ── CAREERS ──────────────────────────────────────────────────── */
.bsw-careers {
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.bsw-careers::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bsw-careers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.bsw-career-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bsw-career-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-flame);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.bsw-career-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bsw-career-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-flame);
    margin-bottom: 0.8rem;
}

.bsw-career-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ── ELIGIBILITY ──────────────────────────────────────────────── */
.bsw-eligibility {
    background: var(--light-bg);
}

.bsw-eligibility__content {
    max-width: 900px;
    margin: 0 auto;
}

.bsw-eligibility__box {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bsw-eligibility__box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.bsw-requirement {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.bsw-requirement:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bsw-requirement__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.bsw-requirement__content h4 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.bsw-requirement__content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── FEE STRUCTURE ────────────────────────────────────────────── */
.bsw-fee {
    background: var(--white);
}

.bsw-fee__wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.08);
}

.bsw-fee__table {
    width: 100%;
    border-collapse: collapse;
}

.bsw-fee__table thead {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
}

.bsw-fee__table th {
    padding: 1.2rem;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
}

.bsw-fee__table th:first-child {
    border-radius: 15px 0 0 0;
}

.bsw-fee__table th:last-child {
    border-radius: 0 15px 0 0;
}

.bsw-fee__table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    font-size: 0.97rem;
}

.bsw-fee__table tbody tr:last-child td {
    border-bottom: none;
}

.bsw-fee__table tbody tr:hover {
    background: white;
}

.bsw-fee__total-row {
    font-weight: 700;
    font-size: 1.08rem;
    background: rgba(255, 107, 53, 0.07);
}

.bsw-fee__total-row td {
    padding: 1.5rem 1.2rem;
}

.bsw-fee__note {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.bsw-fee__note strong {
    color: var(--dark-navy);
}

/* ── CTA SECTION ──────────────────────────────────────────────── */
.bsw-cta {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bsw-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.bsw-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.bsw-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bsw-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.bsw-cta__btn {
    display: inline-block;
    background: white;
    color: var(--primary-flame);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.bsw-cta__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--accent-orange);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bsw-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bsw-hero__stats {
        order: -1;
    }

    .bsw-overview__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bsw-quick-facts {
        position: static;
    }
}

@media (max-width: 768px) {
    .bsw-hero__text h1 {
        font-size: 2.4rem;
    }

    .bsw-section-title {
        font-size: 2rem;
    }

    .bsw-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bsw-hero__buttons {
        flex-direction: column;
    }

    .bsw-primary-btn,
    .bsw-secondary-btn {
        text-align: center;
    }

    .bsw-cta h2 {
        font-size: 2.2rem;
    }

    .bsw-year-tabs {
        gap: 0.75rem;
    }

    .bsw-year-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .bsw-eligibility__box {
        padding: 2rem 1.5rem;
    }

    .bsw-fee__wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .bsw-hero {
        padding: 4rem 0;
    }

    .bsw-hero__text h1 {
        font-size: 2rem;
    }

    .bsw-stat-box {
        padding: 1.5rem 1rem;
    }

    .bsw-stat-box__value {
        font-size: 1.8rem;
    }

    .bsw-cta h2 {
        font-size: 1.8rem;
    }

    .bsw-cta__btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .bsw-fee__table th,
    .bsw-fee__table td {
        padding: 0.9rem 0.75rem;
        font-size: 0.9rem;
    }
}
/* =============================================================
   CONTACT US PAGE — SEPARATE CSS
   ---------------------------------------------------------------
   ============================================================= */

/* ── CSS custom props only for this page ────────────────────── */
.ct-form-input.error,
.ct-form-select.error,
.ct-form-textarea.error {
    border-color: #E53935;
    box-shadow: 0 0 0 4px rgba(229,57,53,.08);
}

.ct-form-input.success,
.ct-form-select.success,
.ct-form-textarea.success {
    border-color: #27AE60;
    box-shadow: 0 0 0 4px rgba(39,174,96,.08);
}

/* ── Shared utilities ────────────────────────────────────────── */
.ct-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ct-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ct-section-tag {
    color: var(--primary-flame);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.ct-section-tag--gold { color: var(--secondary-flame); }

.ct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ct-section-title--white { color: white; }

.ct-d1 { transition-delay: 0.12s; }
.ct-d2 { transition-delay: 0.24s; }
.ct-d3 { transition-delay: 0.36s; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.ct-hero {
    margin-top: 80px;
    background: linear-gradient(140deg, var(--dark-navy) 0%, #1e1f38 55%, #2a1a0e 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255,107,53,.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ct-hero::after {
    content: '📬';
    position: absolute;
    right: 6%;
    bottom: -20px;
    font-size: 18rem;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}

.ct-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .3s; }
.ct-breadcrumb a:hover { color: var(--secondary-flame); }
.ct-breadcrumb__sep { color: rgba(255,255,255,.25); }
.ct-breadcrumb__cur { color: var(--secondary-flame); }

.ct-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,107,53,.18);
    border: 1px solid rgba(255,107,53,.38);
    color: var(--secondary-flame);
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.ct-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.ct-hero h1 span {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-hero__divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-flame), var(--secondary-flame));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.ct-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    max-width: 620px;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.ct-hero__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.ct-hql {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.82);
    padding: .55rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

.ct-hql:hover {
    background: rgba(255,107,53,.2);
    border-color: rgba(255,107,53,.4);
    color: white;
}

/* ── INFO STRIP ───────────────────────────────────────────────── */
.ct-info-strip {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.ct-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
}

.ct-strip-item {
    flex: 1 1 200px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border-right: 1px solid rgba(0,0,0,.06);
    transition: background .25s;
}

.ct-strip-item:last-child { border-right: none; }
.ct-strip-item:hover { background: var(--light-bg); }

.ct-strip-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 18px rgba(255,107,53,.28);
}

.ct-strip-label {
    font-size: .72rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: .2rem;
}

.ct-strip-val {
    font-size: .93rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
}

.ct-strip-sub {
    font-size: .77rem;
    color: var(--text-light);
    margin-top: .1rem;
}

/* ── MAIN CONTACT SECTION ─────────────────────────────────────── */
.ct-main {
    padding: 6rem 0;
    background: var(--light-bg);
}

.ct-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* ── INFO PANEL ───────────────────────────────────────────────── */
.ct-info-panel {
    background: linear-gradient(160deg, var(--dark-navy) 0%, #2a2b4a 60%, #1e1a30 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    color: white;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.ct-info-panel::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,107,53,.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ct-info-panel__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.ct-info-panel__sub {
    color: rgba(255,255,255,.6);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ct-ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ct-ci-item:last-of-type { border-bottom: none; }

.ct-ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 16px rgba(255,107,53,.32);
    transition: transform .3s;
}

.ct-ci-item:hover .ct-ci-icon { transform: scale(1.1); }

.ct-ci-lbl {
    font-size: .7rem;
    font-weight: 700;
    color: var(--secondary-flame);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .3rem;
}

.ct-ci-val {
    font-size: .93rem;
    font-weight: 600;
    color: white;
    line-height: 1.6;
}

.ct-ci-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.52);
    margin-top: .15rem;
}

.ct-social-title {
    font-size: .7rem;
    font-weight: 700;
    color: var(--secondary-flame);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 1.8rem 0 .9rem;
}

.ct-social-row { display: flex; gap: .7rem; flex-wrap: wrap; }

.ct-social-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

.ct-social-pill:hover {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,107,53,.3);
}

.ct-admission-notice {
    margin-top: 2rem;
    background: rgba(255,107,53,.12);
    border: 1px solid rgba(255,107,53,.3);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
}

.ct-an-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.ct-an-title { font-size: .85rem; font-weight: 700; color: var(--secondary-flame); margin-bottom: .3rem; }
.ct-an-text { font-size: .82rem; color: rgba(255,255,255,.68); line-height: 1.7; }

/* ── FORM WRAPPER ─────────────────────────────────────────────── */
.ct-form-wrapper {
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 70px rgba(0,0,0,.08);
    overflow: hidden;
}

.ct-form-header {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    padding: 2.5rem 3rem;
}

.ct-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: .4rem;
}

.ct-form-header p { color: rgba(255,255,255,.85); font-size: .97rem; line-height: 1.7; }

.ct-form-steps { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.ct-form-step { display: flex; align-items: center; gap: .6rem; }

.ct-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: 2px solid rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    color: white;
}

.ct-step-lbl { font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 600; }

.ct-form-body { padding: 3rem; }

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ct-form-group { position: relative; }

.ct-full {
    grid-column: span 2;
    margin-bottom: 1.5rem;
}

.ct-privacy-wrap { margin-bottom: 1rem; }

.ct-form-label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: .55rem;
}

.ct-req { color: var(--primary-flame); margin-left: 2px; }
.ct-opt { color: var(--text-light); font-size: .75rem; font-weight: 500; margin-left: 4px; }

.ct-input-wrap { position: relative; }

.ct-input-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.ct-ta-icon { top: 1.1rem; transform: none; }

.ct-form-input,
.ct-form-select,
.ct-form-textarea {
    width: 100%;
    padding: .95rem 1rem .95rem 3rem;
    border: 2px solid #E8E8E8;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .97rem;
    color: var(--text-dark);
    background: white;
    transition: all .3s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.ct-form-textarea {
    padding-left: 3rem;
    min-height: 135px;
    resize: vertical;
}

.ct-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: white;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ct-form-input:focus,
.ct-form-select:focus,
.ct-form-textarea:focus {
    border-color: var(--primary-flame);
    box-shadow: 0 0 0 4px rgba(255,107,53,.1);
    background: #fffaf8;
}

.ct-v-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    display: none;
    pointer-events: none;
}

.ct-v-icon.show { display: block; }

.ct-field-error {
    display: none;
    align-items: center;
    gap: .4rem;
    color: #E53935;
    font-size: .8rem;
    font-weight: 600;
    margin-top: .4rem;
}

.ct-field-error.show { display: flex; }

.ct-field-ok {
    display: none;
    align-items: center;
    gap: .4rem;
    color: #27AE60;
    font-size: .8rem;
    font-weight: 600;
    margin-top: .4rem;
}

.ct-field-ok.show { display: flex; }

.ct-course-err-gap { margin-top: .6rem; }
.ct-privacy-err-gap { margin-top: .5rem; }

.ct-char-count { font-size: .78rem; color: var(--text-light); text-align: right; margin-top: .3rem; }
.ct-char-count.warn { color: var(--secondary-flame); }
.ct-char-count.over { color: #E53935; }

/* Course pills */
.ct-course-pills { display: flex; flex-wrap: wrap; gap: .8rem; }
.ct-c-pill input[type=radio] { display: none; }

.ct-c-pill label {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--light-bg);
    border: 2px solid rgba(255,107,53,.15);
    border-radius: 14px;
    padding: .9rem 1.3rem;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all .3s;
    user-select: none;
}

.ct-p-emoji { font-size: 1.15rem; }

.ct-p-seats {
    font-size: .75rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: .1rem;
}

.ct-c-pill input[type=radio]:checked + label {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255,107,53,.3);
}

.ct-c-pill input[type=radio]:checked + label .ct-p-seats { color: rgba(255,255,255,.8); }
.ct-c-pill label:hover { border-color: var(--primary-flame); }

/* Time checkboxes */
.ct-time-checks { display: flex; flex-wrap: wrap; gap: .6rem; }
.ct-t-check input[type=checkbox] { display: none; }

.ct-t-check label {
    background: var(--light-bg);
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all .3s;
}

.ct-t-check input[type=checkbox]:checked + label {
    background: var(--dark-navy);
    color: white;
    border-color: var(--dark-navy);
}

.ct-t-check label:hover { border-color: var(--primary-flame); }

/* Privacy */
.ct-privacy-row { display: flex; align-items: flex-start; gap: 1rem; margin-top: .5rem; }

.ct-p-check {
    width: 20px;
    height: 20px;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all .3s;
    position: relative;
}

.ct-p-check:checked { background: var(--primary-flame); border-color: var(--primary-flame); }
.ct-p-check:checked::after { content: '✓'; position: absolute; top: -1px; left: 2px; color: white; font-size: .8rem; font-weight: 700; }

.ct-privacy-text { font-size: .88rem; color: var(--text-light); line-height: 1.6; cursor: pointer; }

/* Submit */
.ct-submit-btn {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .5px;
    transition: all .3s;
    box-shadow: 0 8px 25px rgba(255,107,53,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 2rem;
}

.ct-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,53,.45); }
.ct-submit-btn:active { transform: translateY(-1px); }
.ct-submit-btn.loading { opacity: .8; pointer-events: none; }

.ct-btn-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.4);
    border-top-color: white;
    border-radius: 50%;
    animation: ct-spin .8s linear infinite;
    display: none;
}

.ct-submit-btn.loading .ct-btn-spinner { display: block; }

@keyframes ct-spin { to { transform: rotate(360deg); } }

.ct-form-note {
    text-align: center;
    font-size: .82rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

/* ── SUCCESS OVERLAY ──────────────────────────────────────────── */
.ct-success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.ct-success-overlay.show { display: flex; animation: ct-fdIn .4s ease; }

@keyframes ct-fdIn { from { opacity: 0; } to { opacity: 1; } }

.ct-success-card {
    background: white;
    border-radius: 32px;
    padding: 3.5rem 3rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,.25);
    animation: ct-slUp .4s cubic-bezier(.16,1,.3,1);
}

@keyframes ct-slUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

.ct-success-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 0 0 12px rgba(39,174,96,.1);
}

.ct-success-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: .75rem;
}

.ct-success-card > p { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

.ct-success-details {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.ct-sd-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; }
.ct-sd-row:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,.05); }
.ct-sd-key { color: var(--text-light); }
.ct-sd-val { font-weight: 700; color: var(--dark-navy); max-width: 55%; text-align: right; }

.ct-close-success {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(255,107,53,.3);
}

.ct-close-success:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,53,.4); }

.ct-ref-num { font-size: .82rem; color: var(--text-light); margin-top: .75rem; }

/* ── CONTACT CARDS ────────────────────────────────────────────── */
.ct-cards-section {
    padding: 6rem 0;
    background: white;
}

.ct-cards-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ct-cc {
    border-radius: 26px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(255,107,53,.1);
    background: var(--light-bg);
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.ct-cc::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,107,53,.07) 0%, transparent 70%);
    border-radius: 50%;
}

.ct-cc:hover { border-color: var(--primary-flame); transform: translateY(-10px); box-shadow: 0 20px 55px rgba(255,107,53,.13); background: white; }

.ct-cc-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 28px rgba(255,107,53,.3);
    transition: transform .3s;
}

.ct-cc:hover .ct-cc-icon { transform: scale(1.12) rotate(-5deg); }

.ct-cc h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark-navy); margin-bottom: .6rem; }
.ct-cc p { color: var(--text-light); font-size: .92rem; line-height: 1.7; margin-bottom: 1rem; }

.ct-cc-action {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary-flame);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: gap .3s;
}

.ct-cc-action:hover { gap: .9rem; }

.ct-cc-badge {
    display: inline-block;
    background: rgba(255,107,53,.1);
    color: var(--primary-flame);
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 50px;
    margin-top: .6rem;
}

/* ── MAP SECTION ──────────────────────────────────────────────── */
.ct-map-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.ct-map-intro { color: var(--text-light); font-size: 1.05rem; margin-top: .5rem; }

.ct-map-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.ct-map-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    height: 500px;
}

.ct-map-frame iframe { width: 100%; height: 100%; border: none; }

.ct-map-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.ct-map-card {
    background: white;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    border: 2px solid rgba(255,107,53,.08);
    transition: all .3s;
}

.ct-map-card:hover { border-color: rgba(255,107,53,.25); transform: translateX(6px); }

.ct-mc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.ct-mc-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.ct-mc-head h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark-navy); }
.ct-mc-text { font-size: .92rem; color: var(--text-light); line-height: 1.8; }
.ct-mc-text strong { color: var(--text-dark); }

.ct-dir-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    padding: .65rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255,107,53,.3);
    transition: all .3s;
}

.ct-dir-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.4); }

/* ── FAQ SECTION ──────────────────────────────────────────────── */
.ct-faq-section {
    padding: 6rem 0;
    background: var(--dark-navy);
}

.ct-faq-intro { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-top: .5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ct-faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all .3s;
}

.ct-faq-item:hover { border-color: rgba(255,107,53,.3); background: rgba(255,255,255,.06); }

.ct-faq-q {
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.ct-faq-q-text { font-weight: 700; color: white; font-size: .95rem; line-height: 1.5; }

.ct-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255,107,53,.2);
    border: 1px solid rgba(255,107,53,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-flame);
    font-size: 1.2rem;
    font-weight: 700;
    transition: all .3s;
}

.ct-faq-item.open .ct-faq-toggle {
    background: linear-gradient(135deg, var(--primary-flame), var(--secondary-flame));
    color: white;
    transform: rotate(45deg);
}

.ct-faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.ct-faq-item.open .ct-faq-ans { max-height: 300px; }

.ct-faq-ans-inner { padding: 0 1.8rem 1.5rem; color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.8; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .ct-layout,
    .ct-map-layout { grid-template-columns: 1fr; }
    .ct-info-panel { position: static; }
    .ct-map-frame { height: 380px; }
    .ct-cards-grid { grid-template-columns: repeat(2,1fr); }
    .ct-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .ct-hero h1 { font-size: 2.3rem; }
    .ct-section-title { font-size: 2rem; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-full { grid-column: span 1; }
    .ct-form-body { padding: 2rem 1.5rem; }
    .ct-form-header { padding: 2rem 1.5rem; }
    .ct-cards-grid { grid-template-columns: 1fr; }
    .ct-strip-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.06); }
    .ct-success-card { padding: 2.5rem 1.8rem; }
}

@media (max-width: 480px) {
    .ct-hero { padding: 5rem 0 4rem; }
    .ct-hero h1 { font-size: 2rem; }
    .ct-c-pill label { padding: .75rem 1rem; font-size: .85rem; }
    .ct-faq-q { padding: 1.2rem; }
    .ct-faq-ans-inner { padding: 0 1.2rem 1.2rem; }
    .ct-map-frame { height: 280px; }
}
