        /* CSS RESET & VARIABLES */
        :root {
            --primary: #F62440;
            --dark-accent: #003049;
            --secondary: #BBD5DA;
            --overlay: #443199;
            --bg: #FFFFFF;
            --text-dark: #111111;
            --text-light: #FFFFFF;
            --font-main: "Open Sans", sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button, input, textarea {
            font-family: inherit;
            border: none;
            outline: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* UTILITY REVEAL STYLES */
        .reveal-node {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition-smooth);
        }
        .reveal-node.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* GLOBAL TOP BAR */
        .global-top-bar {
            background-color: var(--primary);
            color: var(--text-light);
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            font-size: 13px;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            width: 80%;
            margin-left: 10rem;
            z-index: 1000;
            transition: transform 0.4s ease;
        }
        .global-top-bar.hide {
            transform: translateY(-100%);
        }
        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .info-item {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .divider-v {
            width: 1px;
            background-color: rgba(255, 255, 255, 0.4);
        }
        .top-bar-right {
            position: relative;
        }
        .follow-capsule {
            background-color: var(--text-light);
            color: var(--text-dark);
            padding: 15px 24px;
            margin-top: -1rem;
            width: 40%;
            margin-left: 45rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateY(6px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        .follow-capsule span {
            font-size: 11px;
            margin-right: 4px;
        }
        .follow-capsule a {
            transition: color 0.2s ease;
        }
        .follow-capsule a:hover {
            color: var(--primary);
        }

        /* MAIN HERO HEADER */
        .main-header {
            position: fixed;
            top: 44px;
            left: 0;
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            z-index: 999;
            transition: all 0.4s ease;
            background: transparent;
        }
        body.scrolled .main-header {
            top: 0;
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            backdrop-filter: blur(10px);
        }
        body.scrolled .main-header .nav-links a {
            color: var(--text-dark);
        }
        .logo-text {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-light);
            transition: color 0.4s ease;
        }
        body.scrolled .logo-text {
            color: var(--text-dark);
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
            position: relative;
            padding: 6px 0;
            cursor: pointer;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition-smooth);
        }
        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }
        .btn-ticket {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 14px 28px;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            border-radius: 0px 30px 30px 0px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .btn-ticket:hover {
            opacity: 0.9;
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: transparent;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: var(--text-light);
            transition: var(--transition-smooth);
        }
        body.scrolled .hamburger span {
            background-color: var(--text-dark);
        }

        /* APP PAGES CONTAINER */
        .app-page {
            display: none;
            padding-top: 124px;
        }
        .app-page.active-page {
            display: block;
        }
        #home-page {
            padding-top: 0px !important;
        }

        /* SECTION LAYOUTS GENERICS */
        section {
            position: relative;
            padding: 140px 6%;
            background-color: var(--bg);
            overflow: hidden;
        }

        /* HOME HERO SLIDESHOW */
        .hero-slideshow-container {
            height: 100vh;
            width: 100vw;
            position: relative;
            overflow: hidden;
            background-color: #000;
            padding: 0;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateY(100%);
            transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s ease;
            z-index: 1;
        }
        .hero-slide.active {
            opacity: 1;
            transform: translateY(0);
            z-index: 2;
        }
        .hero-slide.prev {
            transform: translateY(-100%);
            opacity: 0.3;
        }
        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.45);
            transform: scale(1);
            transition: transform 8s linear;
        }
        .hero-slide.active .hero-bg-img {
            transform: scale(1.15);
        }
        .hero-content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 5;
            color: var(--text-light);
            padding: 0 10%;
        }
        .hero-heading-stack {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .hero-row-1, .hero-row-3 {
            font-size: 75px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -2px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.4s;
        }
        .hero-row-2 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.6s;
        }
        .hero-capsule-filled {
            background-color: var(--primary);
            color: var(--text-light);
            font-size: 55px;
            font-weight: 800;
            padding: 4px 40px;
            border-radius: 0 40px 40px 0;
            text-transform: uppercase;
        }
        .hero-text-outlined {
            font-size: 55px;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 2px var(--text-light);
            text-transform: uppercase;
        }
        .hero-paragraph {
            font-size: 20px;
            max-width: 800px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.8s;
            color: rgba(255,255,255,0.9);
        }
        .hero-slide.active .hero-row-1,
        .hero-slide.active .hero-row-3,
        .hero-slide.active .hero-row-2,
        .hero-slide.active .hero-paragraph {
            opacity: 1;
            transform: translateY(0);
        }

        /* SECTION 2 - MARQUEE CUTTING SEPARATOR */
        .marquee-cutting-container {
            padding: 0;
            height: 60px;
            background: var(--bg);
            position: relative;
            z-index: 10;
            margin-top: -30px;
        }
        .cutting-svg {
            width: 100%;
            height: 60px;
            display: block;
            fill: var(--bg);
            stroke: var(--primary);
            stroke-width: 3px;
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
        }
        .cutting-svg.animate-draw {
            animation: drawLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }

        .sec2-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .sec2-left-composition {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .rotating-png {
            width: 120px;
            height: 120px;
            animation: slowRotate 25s linear infinite;
        }
        @keyframes slowRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .tall-editorial-img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.06);
        }
        .floating-scroller-png {
            width: 90px;
            position: absolute;
            bottom: -40px;
            left: 30%;
            pointer-events: none;
            transition: transform 0.1s ease-out;
        }
        .editorial-heading-large {
            font-size: 55px;
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: -1.5px;
        }
        .editorial-heading-large span {
            color: var(--primary);
        }
        .editorial-paragraph-long {
            font-size: 18px;
            color: #444;
            font-weight: 400;
            max-width: 600px;
        }

        /* SECTION 3 - THREE MARQUEES */
        .section-marquees {
            padding: 100px 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            background-color: #fafafa;
        }
        .marquee-row {
            width: 100vw;
            overflow: hidden;
            white-space: nowrap;
            padding: 24px 0;
            display: flex;
        }
        .marquee-m1 {
            background-color: var(--text-dark);
            transform: rotate(-1deg);
        }
        .marquee-m2 {
            background-color: var(--primary);
            transform: rotate(3deg) scale(1.05);
            z-index: 5;
        }
        .marquee-m3 {
            background-color: var(--text-dark);
            transform: rotate(-0.5deg);
        }
        .marquee-track {
            display: flex;
            align-items: center;
            animation: marqueeAnimation 25s linear infinite;
        }
        .marquee-track-reverse {
            display: flex;
            align-items: center;
            animation: marqueeAnimationReverse 25s linear infinite;
        }
        @keyframes marqueeAnimation {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }
        @keyframes marqueeAnimationReverse {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0%); }
        }
        .marquee-word {
            font-size: 45px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 0 20px;
            color: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 30px;
        }
        .marquee-m1 .marquee-word, .marquee-m3 .marquee-word {
            -webkit-text-stroke: 1.5px var(--text-light);
        }
        .marquee-m2 .marquee-word {
            -webkit-text-stroke: 1.5px var(--text-light);
        }
        .marquee-word:hover {
            color: var(--text-light) !important;
        }
        .plus-icon {
            font-weight: 300;
            -webkit-text-stroke: 1px var(--text-light);
        }

        /* SECTION 4 - THREE EDITORIAL CARDS */
        .sec4-header {
            text-align: center;
            margin-bottom: 80px;
        }
        .cards-row-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .editorial-card-premium {
            background: var(--text-light);
            border: 1px solid #eee;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 2;
            transition: var(--transition-smooth);
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 12%);
        }
        .editorial-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--text-dark);
            z-index: -1;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .editorial-card-premium:hover::before {
            height: 100%;
        }
        .editorial-card-premium:hover {
            color: var(--text-light);
            transform: translateY(-10px);
            box-shadow: 0 40px 60px rgba(0,0,0,0.15);
        }
        .card-img-wrapper {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        .editorial-card-premium:hover .card-img-wrapper img {
            transform: scale(1.08);
        }
        .card-body-content {
            padding: 40px;
        }
        .card-body-content p {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
        }
        .overlapping-section-png {
            position: absolute;
            bottom: -60px;
            right: 10%;
            width: 140px;
            z-index: 10;
            pointer-events: none;
        }

        /* SECTION 5 - ALTERNATING BORDERED CARDS */
        .sec5-alternating-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        .bordered-box-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 2px solid var(--text-dark);
            align-items: center;
            background: var(--text-light);
        }
        .bordered-box-img-side {
            height: 450px;
            overflow: hidden;
        }
        .bordered-box-img-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bordered-box-text-side {
            padding: 60px;
        }

        /* SECTION 6 - PURPLE OVERLAY AND MOVEMENT */
        .section-purple-parallax {
            background-size: cover;
            background-position: center;
            padding: 200px 6%;
        }
        .purple-overlay-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay);
            opacity: 0.85;
            z-index: 1;
        }
        .purple-inner-content {
            position: relative;
            z-index: 5;
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .purple-bottom-flex {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: 100px;
        }
        .outlined-word-huge {
            font-size: 90px;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 2px var(--text-light);
            text-transform: uppercase;
            letter-spacing: -2px;
        }
        .white-half-circle-bottom {
            width: 240px;
            height: 120px;
            background-color: var(--text-light);
            border-radius: 240px 240px 0 0;
            transform: translateY(140px);
        }

        /* SECTION 7 - FOUR DOT SLIDER GALLERY */
        .gallery-outer-wrapper {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        .gallery-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            width: 100%;
        }
        .gallery-group {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .square-gallery-card {
            position: relative;
            background: var(--text-light);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .square-gallery-card-img-holder {
            width: 100%;
            aspect-ratio: 1;
            position: relative;
            overflow: hidden;
            border-top: 6px solid transparent;
            border-left: 6px solid transparent;
            transition: var(--transition-smooth);
        }
        .square-gallery-card:hover .square-gallery-card-img-holder {
            border-top-color: var(--primary);
            border-left-color: var(--primary);
        }
        .square-gallery-card-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .square-gallery-card:hover {
            transform: translate(-10px, -10px);
        }
        .gallery-caption {
            margin-top: 15px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .gallery-navigation-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .dot-nav {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .dot-nav.active-dot {
            background-color: var(--primary);
            transform: scale(1.3);
        }

        /* SECTION 8 - TRANSLUCENT PANEL */
        .sec8-panel {
            background-size: cover;
            background-position: center;
            padding: 180px 10%;
        }
        .translucent-center-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 80px;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        .corner-floating-icon {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 90px;
        }
        .split-reveal-heading {
            font-size: 48px;
            font-weight: 800;
            text-transform: uppercase;
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            letter-spacing: -1px;
            color: rgba(17, 17, 17, 0.2);
            transition: color 0.8s ease;
        }
        .split-reveal-heading.darkened {
            color: rgba(17, 17, 17, 1);
        }
        .split-left-part, .split-right-part {
            transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .split-left-part { transform: translateX(-50px); }
        .split-right-part { transform: translateX(50px); }
        .revealed .split-left-part, .revealed .split-right-part {
            transform: translateX(0);
        }

        /* SECTION 9 - COUNTER SLIDER */
        .sec9-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .sec9-text-side {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .reveal-scroll-text {
            font-size: 38px;
            font-weight: 800;
            color: #ccc;
            transition: color 0.5s ease;
        }
        .reveal-scroll-text.active-dark {
            color: var(--text-dark);
        }
        .slider-paragraph-window {
            height: 120px;
            position: relative;
            overflow: hidden;
        }
        .slide-p-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
        }
        .slide-p-item.active-p {
            opacity: 1;
            transform: translateY(0);
        }
        .slider-controls-counter {
            display: flex;
            align-items: center;
            gap: 20px;
            font-weight: 800;
            font-size: 18px;
        }
        .arrow-btn {
            cursor: pointer;
            background: #eee;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 16px;
            user-select: none;
            transition: var(--transition-smooth);
        }
        .arrow-btn:hover {
            background: var(--primary);
            color: var(--text-light);
        }

        /* SECTION 10 - NO MARGIN FOUR COLUMNS */
        .section-four-columns {
            padding: 0;
            display: flex;
            width: 100vw;
            height: 550px;
        }
        .col-card {
            flex: 1;
            height: 100%;
            position: relative;
            overflow: hidden;
            background-color: var(--secondary);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .col-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .col-card-content {
            position: relative;
            z-index: 5;
            color: var(--text-dark);
            transition: var(--transition-smooth);
        }
        .col-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--text-dark);
            transition: var(--transition-smooth);
            z-index: 1;
        }
        .col-card:not(.img-card):hover::before {
            height: 100%;
        }
        .col-card:not(.img-card):hover .col-card-content {
            color: var(--text-light);
        }
        .col-card h3 {
            font-size: 28px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        /* SECTION 11 - FORMS SYSTEM */
        .sec11-upper {
            padding: 80px 6% 40px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .sec11-lower {
            padding: 100px 6% 200px 6%;
            background-size: cover;
            background-position: center;
        }
        .forms-twin-container {
            display: flex;
            max-width: 1100px;
            margin: 0 auto;
            align-items: flex-start;
        }
        .form-card-box {
            flex: 1;
            padding: 60px;
            color: var(--text-light);
        }
        .form-card-box.sub-box {
            background-color: var(--dark-accent);
        }
        .form-card-box.unsub-box {
            background-color: var(--primary);
            padding-bottom: 140px; /* Make it taller */
            margin-bottom: -100px;
            position: relative;
            z-index: 5;
        }
        .form-card-box h3 {
            font-size: 32px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }
        .input-group-editorial {
            margin-bottom: 20px;
        }
        .input-group-editorial label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
        .input-group-editorial input, .input-group-editorial textarea {
            width: 100%;
            padding: 14px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-light);
            font-size: 15px;
            border-radius: 2px;
        }
        .input-group-editorial input:focus {
            background: rgba(255,255,255,0.18);
            border-color: var(--text-light);
        }
        .form-submit-btn {
            width: 100%;
            padding: 16px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 1px;
            transition: var(--transition-smooth);
            margin-top: 10px;
        }
        .sub-box .form-submit-btn {
            background-color: var(--primary);
            color: var(--text-light);
        }
        .unsub-box .form-submit-btn {
            background-color: var(--dark-accent);
            color: var(--text-light);
        }
        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .form-feedback {
            margin-top: 15px;
            font-size: 14px;
            font-weight: 600;
            display: none;
        }

        /* SECTION 12 - CINEMATIC ENDING */
        .sec12-cinematic {
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* GLOBAL STANDALONE PAGE LAYOUTS */
        .editorial-page-header {
            background-color: var(--dark-accent);
            color: var(--text-light);
            padding: 120px 6% 80px 6%;
            text-align: center;
        }
        .editorial-page-header h1 {
            font-size: 60px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -2px;
        }
        .editorial-document-body {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        .editorial-document-body h2 {
            font-size: 28px;
            font-weight: 800;
            text-transform: uppercase;
            margin: 40px 0 20px 0;
            color: var(--dark-accent);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
        }
        .editorial-document-body p {
            font-size: 16px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* ACCORDION */
        .faq-accordion-wrapper {
            max-width: 800px;
            margin: 40px auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .accordion-item {
            border: 1px solid #ddd;
            background: #fff;
        }
        .accordion-trigger {
            width: 100%;
            padding: 24px;
            text-align: left;
            background: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 24px;
        }
        .accordion-content p {
            padding-bottom: 24px;
            color: #555;
        }

        /* GRID TEMPLATES FOR INNER PAGES */
        .inner-page-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        .inner-showcase-card {
            border: 1px solid #eee;
            background: #fff;
        }
        .inner-showcase-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .inner-showcase-content {
            padding: 30px;
        }

        /* FOOTER */
        footer {
            background-color: var(--dark-accent);
            color: var(--text-light);
            padding: 100px 6% 40px 6%;
            font-size: 15px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.51fr 1fr 1fr 1.5fr;
            gap: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            color: var(--primary);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: var(--text-light);
            padding-left: 5px;
        }
        .footer-newsletter-input-box {
            display: flex;
            margin-top: 20px;
        }
        .footer-newsletter-input-box input {
            padding: 14px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            flex: 1;
        }
        .footer-newsletter-input-box button {
            background-color: var(--primary);
            color: #fff;
            padding: 0 24px;
            cursor: pointer;
        }
        .footer-bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }
        .footer-legal-links {
            display: flex;
            gap: 25px;
        }
        .footer-legal-links a {
            cursor: pointer;
        }
        .footer-legal-links a:hover {
            color: #fff;
        }

        /* RESPONSIVE DESIGN MEDIA QUERIES */
        @media (max-width: 1024px) {
            .cards-row-container, .inner-page-grid-3, .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sec2-grid, .sec5-bordered-box-row, .sec9-grid {
                grid-template-columns: 1fr;
            }
            .hero-row-1, .hero-row-3 { font-size: 50px; }
            .hero-capsule-filled, .hero-text-outlined { font-size: 36px; }
            .gallery-group { grid-template-columns: 1fr 1fr; }
            .section-four-columns { flex-direction: column; height: auto; }
            .col-card { height: 350px; }
        }

        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background-color: var(--dark-accent);
                flex-direction: column;
                padding: 100px 40px;
                transition: var(--transition-smooth);
                z-index: 998;
            }
            .nav-links.mobile-open {
                right: 0;
            }
            .nav-links a {
                color: var(--text-light) !important;
                font-size: 22px;
            }
            .cards-row-container, .inner-page-grid-3, .footer-grid, .gallery-group, .forms-twin-container {
                grid-template-columns: 1fr;
                flex-direction: column;
            }
            .top-bar-left { display: none; }
            .editorial-heading-large { font-size: 36px; }
            .outlined-word-huge { font-size: 50px; }
            .split-reveal-heading { font-size: 30px; }
        }
