        /* ========================================
           LIFE ON CAMPUS - COLOR PALETTE
           "Community & Belonging" Theme
           Soft Teal + Warm Lavender + Sunlit Gold
           ======================================== */
        :root {
            --loc-deep: #1e3a4a;
            --loc-navy: #2a4d5e;
            --loc-teal: #3d8b8b;
            --loc-teal-light: #5ba8a8;
            --loc-lavender: #7b68a6;
            --loc-lavender-light: #9d8dc0;
            --loc-gold: #e8b923;
            --loc-gold-light: #f4cf56;
            --loc-peach: #f4a574;
            --loc-cream: #fdfbf7;
            --loc-stone: #f5f1eb;
            --loc-warm-white: #fffdfb;
            --loc-text: #1e2a32;
            --loc-text-light: #5a6b75;
            --loc-border: rgba(30, 58, 74, 0.1);
            --loc-gradient-hero: linear-gradient(145deg, #1e3a4a 0%, #2a4d5e 35%, #3d8b8b 75%, #5ba8a8 100%);
            --loc-gradient-teal: linear-gradient(135deg, #3d8b8b 0%, #5ba8a8 100%);
            --loc-gradient-lavender: linear-gradient(135deg, #7b68a6 0%, #9d8dc0 100%);
            --loc-gradient-warm: linear-gradient(135deg, #e8b923 0%, #f4cf56 50%, #f4a574 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - LIFE ON CAMPUS
           ======================================== */
        .loc-hero {
            position: relative;
            min-height: 680px;
            background: var(--loc-gradient-hero);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Gradient overlays */
        .loc-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(123, 104, 166, 0.2) 0%, transparent 60%);
            pointer-events: none;
            animation: locOrbFloat 10s ease-in-out infinite;
        }

        .loc-hero::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(232, 185, 35, 0.12) 0%, transparent 60%);
            pointer-events: none;
            animation: locOrbFloat 12s ease-in-out infinite 2s;
        }

        @keyframes locOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -20px) scale(1.05); }
        }

        /* Decorative grid */
        .loc-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 70px 70px;
            pointer-events: none;
        }

        /* Floating community icons */
        .loc-hero-icons {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .loc-float-icon {
            position: absolute;
            opacity: 0.08;
            color: #fff;
            animation: locIconFloat 8s ease-in-out infinite;
        }

        .loc-float-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        .loc-float-icon-1 { width: 80px; height: 80px; top: 15%; right: 25%; animation-delay: 0s; }
        .loc-float-icon-2 { width: 60px; height: 60px; top: 35%; right: 15%; animation-delay: 1s; }
        .loc-float-icon-3 { width: 70px; height: 70px; top: 55%; right: 30%; animation-delay: 2s; }
        .loc-float-icon-4 { width: 50px; height: 50px; top: 70%; right: 20%; animation-delay: 0.5s; }
        .loc-float-icon-5 { width: 65px; height: 65px; top: 25%; right: 40%; animation-delay: 1.5s; }

        @keyframes locIconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
            50% { transform: translateY(-15px) rotate(5deg); opacity: 0.12; }
        }

        /* Hero container */
        .loc-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        /* Left content */
        .loc-hero-content {
            color: #ffffff;
        }

        .loc-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 28px;
        }

        .loc-hero-badge-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loc-hero-badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--loc-gold);
        }

        .loc-hero-badge span {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--loc-gold-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .loc-hero-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin: 0 0 24px;
        }

        .loc-hero-title .accent {
            background: var(--loc-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-hero-subtitle {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
            margin: 0 0 20px;
            max-width: 580px;
        }

        .loc-hero-text {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin: 0;
            max-width: 560px;
        }

        /* Right side: Experience cards */
        .loc-hero-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .loc-exp-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 28px 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: locCardSlide 0.6s ease-out both;
        }

        .loc-exp-card:nth-child(1) { animation-delay: 0.1s; }
        .loc-exp-card:nth-child(2) { animation-delay: 0.2s; }
        .loc-exp-card:nth-child(3) { animation-delay: 0.3s; }
        .loc-exp-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes locCardSlide {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .loc-exp-card:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-6px);
            border-color: rgba(255,255,255,0.25);
        }

        .loc-exp-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .loc-exp-card-icon svg {
            width: 26px;
            height: 26px;
            stroke-width: 1.8;
        }

        .loc-exp-card-icon.teal {
            background: var(--loc-gradient-teal);
        }
        .loc-exp-card-icon.teal svg { stroke: #fff; }

        .loc-exp-card-icon.lavender {
            background: var(--loc-gradient-lavender);
        }
        .loc-exp-card-icon.lavender svg { stroke: #fff; }

        .loc-exp-card-icon.gold {
            background: var(--loc-gradient-warm);
        }
        .loc-exp-card-icon.gold svg { stroke: #fff; }

        .loc-exp-card-icon.peach {
            background: linear-gradient(135deg, #f4a574 0%, #f8c49b 100%);
        }
        .loc-exp-card-icon.peach svg { stroke: #fff; }

        .loc-exp-card-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
        }

        .loc-exp-card-text {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .loc-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .loc-hero-visual {
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .loc-hero {
                padding: 120px 24px 80px;
                min-height: auto;
            }
            .loc-hero-title {
                font-size: 2.4rem;
            }
            .loc-hero-subtitle {
                font-size: 1.1rem;
            }
            .loc-hero-visual {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           COMMON SECTION STYLES
           ======================================== */
        .loc-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(61, 139, 139, 0.08) 0%, rgba(123, 104, 166, 0.06) 100%);
            border: 1px solid rgba(61, 139, 139, 0.15);
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .loc-section-badge span {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--loc-teal);
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .loc-section-title {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--loc-deep);
            line-height: 1.2;
            margin: 0 0 20px;
        }

        .loc-section-title .accent {
            background: var(--loc-gradient-teal);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .loc-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .loc-btn:hover svg {
            transform: translateX(4px);
        }

        .loc-btn-primary {
            background: var(--loc-gradient-teal);
            color: #fff;
            box-shadow: 0 8px 25px rgba(61, 139, 139, 0.25);
        }

        .loc-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(61, 139, 139, 0.35);
            color: #fff;
        }

        .loc-btn-secondary {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
        }

        .loc-btn-secondary:hover {
            background: rgba(255,255,255,0.18);
            color: #fff;
            transform: translateY(-3px);
        }

        /* ========================================
           SECTION 1 - GLOBAL NETWORK
           ======================================== */
        .loc-network {
            padding: 100px 60px;
            background: var(--loc-cream);
            position: relative;
            overflow: hidden;
        }

        .loc-network::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(61, 139, 139, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .loc-network-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .loc-network-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .loc-network-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .loc-env-card {
            background: #fff;
            border-radius: 24px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(30, 58, 74, 0.06);
            border: 1px solid rgba(30, 58, 74, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .loc-env-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            border-radius: 24px 24px 0 0;
            transition: height 0.3s ease;
        }

        .loc-env-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(30, 58, 74, 0.12);
        }

        .loc-env-card:hover::before {
            height: 8px;
        }

        .loc-env-card.main::before { background: var(--loc-gradient-teal); }
        .loc-env-card.offcampus::before { background: var(--loc-gradient-lavender); }
        .loc-env-card.atf::before { background: var(--loc-gradient-warm); }
        .loc-env-card.coe::before { background: linear-gradient(135deg, var(--loc-deep) 0%, var(--loc-navy) 100%); }

        .loc-env-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .loc-env-card-icon svg {
            width: 34px;
            height: 34px;
            stroke: #fff;
            stroke-width: 1.6;
        }

        .loc-env-card.main .loc-env-card-icon { background: var(--loc-gradient-teal); }
        .loc-env-card.offcampus .loc-env-card-icon { background: var(--loc-gradient-lavender); }
        .loc-env-card.atf .loc-env-card-icon { background: var(--loc-gradient-warm); }
        .loc-env-card.coe .loc-env-card-icon { background: linear-gradient(135deg, var(--loc-deep) 0%, var(--loc-navy) 100%); }

        .loc-env-card-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--loc-deep);
            margin: 0 0 14px;
        }

        .loc-env-card-text {
            font-size: 0.95rem;
            color: var(--loc-text-light);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 1100px) {
            .loc-network-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .loc-network { padding: 70px 24px; }
            .loc-network-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 2 - LIVING & BELONGING
           ======================================== */
        .loc-living {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--loc-stone) 0%, var(--loc-warm-white) 100%);
            position: relative;
        }

        .loc-living-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .loc-living-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .loc-living-header p {
            font-size: 1.1rem;
            color: var(--loc-text-light);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        .loc-living-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .loc-living-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(30, 58, 74, 0.07);
            border: 1px solid rgba(30, 58, 74, 0.06);
            transition: all 0.4s ease;
        }

        .loc-living-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(30, 58, 74, 0.12);
        }

        .loc-living-card-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .loc-living-card-body {
            padding: 24px;
        }

        .loc-living-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            margin-top: -45px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .loc-living-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .loc-living-card-icon.teal { background: var(--loc-gradient-teal); }
        .loc-living-card-icon.lavender { background: var(--loc-gradient-lavender); }
        .loc-living-card-icon.gold { background: var(--loc-gradient-warm); }
        .loc-living-card-icon.peach { background: linear-gradient(135deg, #f4a574 0%, #f8c49b 100%); }

        .loc-living-card-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--loc-deep);
            margin: 0 0 10px;
        }

        .loc-living-card-text {
            font-size: 0.9rem;
            color: var(--loc-text-light);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 1100px) {
            .loc-living-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .loc-living { padding: 70px 24px; }
            .loc-living-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 3 - OFF-CAMPUS (PARIS)
           ======================================== */
        .loc-paris {
            padding: 100px 60px;
            background: var(--loc-gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .loc-paris::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(123, 104, 166, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .loc-paris-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .loc-paris-content {
            color: #fff;
        }

        .loc-paris-content .loc-section-badge {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.15);
        }

        .loc-paris-content .loc-section-badge span {
            color: var(--loc-gold-light);
        }

        .loc-paris-content .loc-section-title {
            color: #fff;
        }

        .loc-paris-content .loc-section-title .accent {
            background: var(--loc-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-paris-text {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 30px;
        }

        .loc-paris-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .loc-paris-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 14px 18px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .loc-paris-feature:hover {
            background: rgba(255,255,255,0.14);
            transform: translateX(4px);
        }

        .loc-paris-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--loc-gold);
            flex-shrink: 0;
        }

        .loc-paris-feature span {
            font-size: 0.92rem;
            font-weight: 500;
            color: #fff;
        }

        .loc-paris-visual {
            position: relative;
        }

        .loc-paris-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .loc-paris-overlay {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .loc-paris-overlay-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--loc-gradient-lavender);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loc-paris-overlay-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
        }

        .loc-paris-overlay-text h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 4px;
        }

        .loc-paris-overlay-text span {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }

        @media (max-width: 1000px) {
            .loc-paris-container { grid-template-columns: 1fr; gap: 40px; }
            .loc-paris-img { height: 350px; }
        }

        @media (max-width: 600px) {
            .loc-paris { padding: 70px 24px; }
            .loc-paris-features { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 4 - ATFs
           ======================================== */
        .loc-atf {
            padding: 100px 60px;
            background: var(--loc-warm-white);
            position: relative;
        }

        .loc-atf-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 70px;
            align-items: center;
        }

        .loc-atf-visual {
            position: relative;
        }

        .loc-atf-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 15px 50px rgba(30, 58, 74, 0.12);
        }

        .loc-atf-badge-float {
            position: absolute;
            top: 20px;
            right: -20px;
            background: var(--loc-gradient-warm);
            border-radius: 14px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(232, 185, 35, 0.3);
        }

        .loc-atf-badge-float svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
        }

        .loc-atf-badge-float span {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }

        .loc-atf-content h2 {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--loc-deep);
            margin: 0 0 16px;
            line-height: 1.2;
        }

        .loc-atf-content h2 .accent {
            background: var(--loc-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-atf-intro {
            font-size: 1.05rem;
            color: var(--loc-text-light);
            line-height: 1.8;
            margin: 0 0 30px;
        }

        .loc-atf-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .loc-atf-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(232, 185, 35, 0.06) 0%, rgba(244, 165, 116, 0.04) 100%);
            border: 1px solid rgba(232, 185, 35, 0.15);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .loc-atf-item:hover {
            background: linear-gradient(135deg, rgba(232, 185, 35, 0.1) 0%, rgba(244, 165, 116, 0.06) 100%);
            transform: translateX(6px);
        }

        .loc-atf-item svg {
            width: 22px;
            height: 22px;
            stroke: var(--loc-gold);
            flex-shrink: 0;
        }

        .loc-atf-item span {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--loc-deep);
        }

        @media (max-width: 1000px) {
            .loc-atf-container { grid-template-columns: 1fr; gap: 40px; }
        }

        @media (max-width: 600px) {
            .loc-atf { padding: 70px 24px; }
        }

        /* ========================================
           SECTION 5 - CENTERS OF EXCELLENCE
           ======================================== */
        .loc-coe {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--loc-deep) 0%, var(--loc-navy) 100%);
            position: relative;
            overflow: hidden;
        }

        .loc-coe::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(61, 139, 139, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .loc-coe-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .loc-coe-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .loc-coe-header .loc-section-badge {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.12);
        }

        .loc-coe-header .loc-section-badge span {
            color: var(--loc-gold-light);
        }

        .loc-coe-header .loc-section-title {
            color: #fff;
        }

        .loc-coe-header .loc-section-title .accent {
            background: var(--loc-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-coe-header p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.75);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .loc-coe-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .loc-coe-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            padding: 28px 22px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .loc-coe-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-6px);
            border-color: rgba(255,255,255,0.2);
        }

        .loc-coe-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--loc-gradient-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .loc-coe-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
            stroke-width: 1.6;
        }

        .loc-coe-card-title {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        @media (max-width: 1100px) {
            .loc-coe-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            .loc-coe { padding: 70px 24px; }
            .loc-coe-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ========================================
           SECTION 6 - VIRTUAL CAMPUS
           ======================================== */
        .loc-virtual {
            padding: 100px 60px;
            background: var(--loc-cream);
            position: relative;
            overflow: hidden;
        }

        .loc-virtual::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(123, 104, 166, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .loc-virtual-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
        }

        .loc-virtual-content h2 {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--loc-deep);
            margin: 0 0 16px;
            line-height: 1.2;
        }

        .loc-virtual-content h2 .accent {
            background: var(--loc-gradient-lavender);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-virtual-intro {
            font-size: 1.05rem;
            color: var(--loc-text-light);
            line-height: 1.8;
            margin: 0 0 30px;
        }

        .loc-virtual-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .loc-virtual-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: #fff;
            border: 1px solid var(--loc-border);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .loc-virtual-feature:hover {
            box-shadow: 0 8px 25px rgba(123, 104, 166, 0.12);
            transform: translateY(-3px);
            border-color: rgba(123, 104, 166, 0.2);
        }

        .loc-virtual-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--loc-lavender);
            flex-shrink: 0;
        }

        .loc-virtual-feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--loc-deep);
        }

        .loc-virtual-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .loc-virtual-card {
            background: #fff;
            border-radius: 18px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(30, 58, 74, 0.06);
            border: 1px solid var(--loc-border);
            transition: all 0.3s ease;
        }

        .loc-virtual-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 58, 74, 0.1);
        }

        .loc-virtual-card:nth-child(1) { grid-column: span 2; }

        .loc-virtual-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .loc-virtual-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .loc-virtual-card-icon.lavender { background: var(--loc-gradient-lavender); }
        .loc-virtual-card-icon.teal { background: var(--loc-gradient-teal); }
        .loc-virtual-card-icon.gold { background: var(--loc-gradient-warm); }

        .loc-virtual-card-title {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--loc-deep);
            margin: 0;
        }

        @media (max-width: 1000px) {
            .loc-virtual-container { grid-template-columns: 1fr; gap: 40px; }
        }

        @media (max-width: 600px) {
            .loc-virtual { padding: 70px 24px; }
            .loc-virtual-features { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 7 - EVENTS
           ======================================== */
        .loc-events {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--loc-stone) 0%, var(--loc-cream) 100%);
            position: relative;
        }

        .loc-events-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .loc-events-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .loc-events-header p {
            font-size: 1.1rem;
            color: var(--loc-text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .loc-events-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .loc-event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(30, 58, 74, 0.06);
            border: 1px solid var(--loc-border);
            transition: all 0.4s ease;
            text-align: center;
        }

        .loc-event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(30, 58, 74, 0.12);
        }

        .loc-event-card-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }

        .loc-event-card-body {
            padding: 20px 16px;
        }

        .loc-event-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -38px auto 12px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }

        .loc-event-card-icon svg {
            width: 22px;
            height: 22px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .loc-event-card-icon.teal { background: var(--loc-gradient-teal); }
        .loc-event-card-icon.lavender { background: var(--loc-gradient-lavender); }
        .loc-event-card-icon.gold { background: var(--loc-gradient-warm); }
        .loc-event-card-icon.peach { background: linear-gradient(135deg, #f4a574 0%, #f8c49b 100%); }
        .loc-event-card-icon.navy { background: linear-gradient(135deg, var(--loc-deep) 0%, var(--loc-navy) 100%); }

        .loc-event-card-title {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--loc-deep);
            margin: 0;
        }

        .loc-events-cta {
            text-align: center;
        }

        @media (max-width: 1100px) {
            .loc-events-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            .loc-events { padding: 70px 24px; }
            .loc-events-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ========================================
           SECTION 8 - SAFETY & WELLBEING
           ======================================== */
        .loc-safety {
            padding: 80px 60px;
            background: linear-gradient(135deg, rgba(61, 139, 139, 0.06) 0%, rgba(123, 104, 166, 0.04) 100%);
            border-top: 1px solid rgba(61, 139, 139, 0.1);
            border-bottom: 1px solid rgba(61, 139, 139, 0.1);
        }

        .loc-safety-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .loc-safety-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--loc-gradient-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px rgba(61, 139, 139, 0.25);
        }

        .loc-safety-icon svg {
            width: 32px;
            height: 32px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .loc-safety h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--loc-deep);
            margin: 0 0 16px;
        }

        .loc-safety p {
            font-size: 1.05rem;
            color: var(--loc-text-light);
            line-height: 1.8;
            margin: 0 0 28px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 600px) {
            .loc-safety { padding: 60px 24px; }
        }

        /* ========================================
           SECTION 9 - FINAL CTA
           ======================================== */
        .loc-final-cta {
            padding: 100px 60px;
            background: var(--loc-gradient-hero);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .loc-final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(232, 185, 35, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        .loc-final-cta-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .loc-final-cta h2 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 30px;
            line-height: 1.2;
        }

        .loc-final-cta h2 .accent {
            background: var(--loc-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .loc-final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .loc-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .loc-cta-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .loc-cta-btn:hover svg {
            transform: translateX(4px);
        }

        .loc-cta-btn.primary {
            background: var(--loc-gradient-warm);
            color: #fff;
            box-shadow: 0 8px 30px rgba(232, 185, 35, 0.35);
        }

        .loc-cta-btn.primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(232, 185, 35, 0.45);
            color: #fff;
        }

        .loc-cta-btn.secondary {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
        }

        .loc-cta-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
            color: #fff;
            transform: translateY(-4px);
        }

        .loc-final-cta-micro {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
        }

        @media (max-width: 768px) {
            .loc-final-cta { padding: 70px 24px; }
            .loc-final-cta h2 { font-size: 2rem; }
            .loc-final-cta-buttons { flex-direction: column; align-items: center; }
        }