@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
/* =====================================================
   ASMITA THEATRE - ROOT VARIABLES
   ===================================================== */

:root {
    /* Brand Colors */
    --primary-red: #d62828;
    --accent-orange: #f77f00;
    --accent-green: #2ec4b6;
    --accent-purple: #9d4edd;
    --accent-gold: #d4af37;

    /* Base Colors */
    --white: #f5f5f5;
    --text-gray: #bfbfbf;
    --dark: #0a0a0a;
    --dark-soft: #111;
    --dark-medium: #1a1a1a;
    --dark-light: #2a2a2a;
    --border-dark: #222;
    --border-light: #3a3a3a;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-elegant: 'Playfair Display', serif;

    /* Standardized Spacing */
    --section-padding: 120px;
    --container-padding: 20px;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

section {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   STANDARDIZED SECTIONS
   ===================================================== */

.section-standard {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.section-dark {
    background: var(--dark-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.text-accent {
    color: var(--primary-red);
}

.divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-red), var(--accent-orange), transparent);
    margin: 1.5rem 0;
}

/* =====================================================
   NAVBAR
   ===================================================== */

.main-nav {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition-normal);
    z-index: 1021;
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.footer .logo {
    display: block;
    width: fit-content;
    background: var(--dark);
    padding: 4px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.logo img {
    width: 110px;
    transition: var(--transition-fast);
}

.main-nav.scrolled .logo img {
    width: 90px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 35px;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
    }
}


/* Dropdown */
.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle .fa-angle-down {
    color: var(--white);
    font-size: 0.75rem;
    transition: var(--transition-fast);
    margin-left: 0.25rem;
}

.dropdown:hover .dropdown-toggle .fa-angle-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: var(--dark-soft);
    border: 1px solid var(--border-dark);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--white);
    padding: 0.75rem 1.25rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* CTA Button */
.btn-quote {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    /* border-radius: 4px; */
    transition: var(--transition-fast);
    display: block;
    text-align: center;
}

.btn-quote:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 127, 0, 0.4);
    color: var(--white);
}

@media (max-width: 991.98px) {
    .main-nav {
        backdrop-filter: blur(10px);
        box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 20px;
        background: rgba(10, 10, 10, 0.95);
        padding: 0 !important;
    }

    .main-nav .navbar-collapse.show {
        height: 100vh;
    }

    .logo img {
        width: 90px;
        transition: var(--transition-fast);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

/* Hero Slide Layers */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* Cinematic Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgb(10, 10, 10) 0%,
            rgb(10, 10, 10) 10%,
            rgba(10, 10, 10, 0.008) 65%,
            rgb(10, 10, 10) 100%),
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0) 60%,
            rgba(10, 10, 10, 0.49) 85%,
            rgb(10, 10, 10) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 7.875rem;
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

.btn-showreel {
    background: var(--primary-red);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* border-radius: 4px; */
    display: inline-block;
    transition: var(--transition-fast);
    margin-top: 2rem;
}

.btn-showreel:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 127, 0, 0.4);
    color: var(--white);
}

/* Hero Right Content */
.hero-right {
    color: var(--white);
}

.avatars {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.avatars img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    margin-left: -12px;
    object-fit: cover;
    transition: var(--transition-fast);
}

.avatars img:first-child {
    margin-left: 0;
}

.plus {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    box-shadow: 0 0 15px rgba(214, 40, 40, 0.6);
}

.hero-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.875rem;
    font-size: 0.9375rem;
}

.socials {
    display: flex;
    gap: 0.625rem;
}

.socials a {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.5);
}




/* =====================================================
   PARTNERS SECTION
   ===================================================== */

.partners-section {
    padding: 200px 0 0;
    overflow: hidden;
    position: relative;
}

.partners-header {
    text-align: left;
    margin-bottom: 3rem;
}

.partners-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.partners-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 0;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: slideLogos 30s linear infinite;
    width: max-content;
    padding: 10px;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.partner-logo:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(2);    */
    transition: var(--transition-fast);
}



/* Responsive Partners Section */
@media (max-width: 768px) {
    .partners-header h3 {
        font-size: 2rem;
    }

    .partners-header p {
        font-size: 1rem;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-logo {
        min-width: 140px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .partners-header h3 {
        font-size: 1.5rem;
    }

    .partners-track {
        gap: 1.5rem;
    }

    .partner-logo {
        min-width: 120px;
        height: 50px;
    }
}






/* =====================================================
   PRODUCTION/COURSE CARDS
   ===================================================== */

.production-card {
    background: var(--dark-soft);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.production-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(214, 40, 40, 0.3);
}

.production-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.production-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.production-card:hover .production-image img {
    transform: scale(1.1);
}

.production-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.production-card:hover .production-overlay {
    opacity: 1;
}

.btn-view-production {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    /* border-radius: 4px; */
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-view-production:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.4);
    color: var(--white);
}

.production-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.production-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.production-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.production-description {
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

/* =====================================================
   ABOUT / QUOTE SECTION
   ===================================================== */

.portrait-container {
    position: relative;
}

.portrait-frame {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
    position: relative;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-red);
    pointer-events: none;
    z-index: 1;
}

.portrait-img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) contrast(1.1);
    position: relative;
    z-index: 2;
}

.quote-content {
    padding-left: 2.5rem;
}

.quote-text {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 3rem;
}

.author-line {
    width: 80px;
    height: 2px;
    background: var(--primary-red);
    display: inline-block;
}

.author-name {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
}

/* =====================================================
   TEAM CARDS
   ===================================================== */

.team-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 50px;
    background: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.team-card:hover .team-info {
    background: var(--primary-red);
}

.member-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    margin: 0;
}

.member-role {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.team-card:hover .social-icons a {
    background: var(--white);
    color: var(--primary-red);
}

.social-icons a:hover {
    transform: translateY(-4px);
}

/* =====================================================
   ACHIEVEMENTS / STAGE SECTION
   ===================================================== */

.stage-intro {
    padding-right: 2rem;
}

.stage-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-show-all {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    /* border-radius: 4px; */
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-fast);
}

.btn-show-all:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

.stage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.stage-card {
    background: var(--dark-soft);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
}

.stage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(214, 40, 40, 0.3);
}

.stage-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.stage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.stage-card:hover .stage-card-image img {
    transform: scale(1.1);
}

.stage-card-content {
    padding: 1.75rem;
}

.stage-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stage-card-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.stage-card-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* =====================================================
   HORIZONTAL EVENT CARD DESIGN
   ===================================================== */

.event-card-horizontal {
    display: grid;
    grid-template-columns: 150px 350px 1fr 200px;
    align-items: center;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid #2a2a2a;
    transition: 0.4s ease;
    margin-bottom: 1rem;
}

.event-card-horizontal:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(214, 40, 40, 0.2);
}

/* Date */
.event-date {
    text-align: center;
    border-right: 1px solid #333;
    padding-right: 1.5rem;
}

.event-date h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: "Fraunces", serif;
}

.event-date p {
    color: #aaa;
    font-size: 1rem;
}

/* Image */
.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Details */
.event-details {
    padding: 0 2rem;
}

.event-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    color: var(--white);
}

.event-details p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Button */
.event-action {
    text-align: center;
}

.btn-ticket {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    /* border-radius: 4px; */
    transition: 0.3s ease;
}

.btn-ticket:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Large Tablets */
@media (max-width: 1200px) {
    .event-card-horizontal {
        grid-template-columns: 120px 250px 1fr 160px;
        padding: 1.5rem;
    }

    .event-image img {
        height: 200px;
    }

    .event-title {
        font-size: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .event-card-horizontal {
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }

    .event-date {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        padding-bottom: 1rem;
        text-align: left;
    }

    .event-image {
        grid-column: span 2;
    }

    .event-details {
        padding: 0;
    }

    .event-action {
        grid-column: span 2;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .event-card-horizontal {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
    }

    .event-date {
        border: none;
        padding: 0;
        margin-bottom: 1rem;
        text-align: left;
    }

    .event-date h2 {
        font-size: 2.2rem;
    }

    .event-image img {
        height: 180px;
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .event-details {
        padding: 0;
        text-align: justify;
    }

    .event-title {
        font-size: 1.3rem;
    }

    .event-action {
        margin-top: 1rem;
        text-align: left;
        width: 100%;
    }

    .btn-ticket {
        width: 100%;
        text-align: center;
        padding: 0.9rem;
        display: block;
    }
}


/* =====================================================
   VIDEO LIBRARY SECTION
   ===================================================== */

.video-library-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-playlist-sidebar {
    background: var(--dark-soft);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
}

.playlist-header {
    padding: 2rem;
    border-bottom: 1px solid var(--primary-red);
}

.playlist-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.playlist-count {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.playlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 500px;
}

.playlist-items::-webkit-scrollbar {
    width: 2px;
}

.playlist-items::-webkit-scrollbar-track {
    background: var(--dark-medium);
}

.playlist-items::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    /* border-radius: 4px; */
}

.playlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-medium);
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.playlist-item:hover {
    background: var(--dark-light);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.playlist-item.active {
    background: var(--dark);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.playlist-thumbnail {
    position: relative;
    width: 120px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.playlist-item:hover .playlist-thumbnail img {
    transform: scale(1.1);
}

.playlist-play-icon {
    position: absolute;
    inset: 0;
    background: rgba(214, 40, 40, 0.195);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.playlist-item:hover .playlist-play-icon,
.playlist-item.active .playlist-play-icon {
    opacity: 1;
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-video-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}



.video-player-main {
    padding: 2rem;
}

.main-video-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-details {
    padding: 1.5rem 0;
}

.current-video-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.video-description {
    line-height: 1.8;
    color: var(--text-gray);
}

.btn-youtube-channel {
    background: var(--primary-red);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    /* border-radius: 4px; */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
}

.btn-youtube-channel:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 127, 0, 0.4);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--primary-red);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--dark);
    transform: translateX(5px);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu-link:hover {
    color: var(--dark);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* border-radius: 4px; */
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.btn-subscribe {
    background: var(--white);
    color: var(--primary-red);
    padding: 1rem 2rem;
    border: none;
    /* border-radius: 4px; */
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-subscribe:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-brand-large {
    margin: 1rem 0;
    position: relative;
}

.footer-brand-large h2 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    margin: 0 -15px 10px;
    border-radius: 20px 0 20px 0;
}

.copyright {
    color: var(--white);
    margin: 0;
}

.footer-bottom-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--dark);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (min-width: 992px) {
    .container-fluid {
        padding: 0 80px !important;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .hero-title {
        font-size: 5.625rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        min-height: auto;
        padding: 170px 0 90px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-right {
        margin-top: 3rem;
    }

    .quote-content {
        padding-left: 0;
        padding-top: 2.5rem;
    }

    .stage-grid {
        grid-template-columns: 1fr;
    }

    .happenings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-library-wrapper {
        grid-template-columns: 1fr;
    }

    .team-img img {
        height: 420px;
    }

    .team-info {
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .happenings-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .float-icon {
        width: 40px;
        height: 40px;
    }

    .btn-showreel {
        width: 100%;
        text-align: center;
    }

    .footer-bottom .row>div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}







/* about-us page */

/* =====================================================
           BREADCRUMB HERO
           ===================================================== */
.breadcrumb-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.breadcrumb-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.breadcrumb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgb(10, 10, 10) 0%,
            rgb(10, 10, 10) 10%,
            rgba(10, 10, 10, 0) 65%,
            rgb(10, 10, 10) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.623) 1%,
            rgba(10, 10, 10, 0.49) 85%,
            rgba(10, 10, 10, 0.81) 100%);
    z-index: 1;
}

.breadcrumb-hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    padding: 80px 80px 40px;
}

.breadcrumb-hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 4px;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1;
    text-transform: uppercase;
}

.breadcrumb-hero-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb-hero-nav a {
    color: rgba(245, 245, 245, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-hero-nav a:hover {
    color: var(--white);
}

.breadcrumb-hero-nav .bc-sep {
    color: rgba(245, 245, 245, 0.5);
    font-size: 0.7rem;
}

.breadcrumb-hero-nav .bc-current {
    color: var(--white);
    font-weight: 500;
}

/* =====================================================
           ABOUT SECTION
           ===================================================== */
.about-section {
    padding: var(--section-padding) 0;
    /* overflow: hidden; */
}



.about-lead {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-body {
    font-size: 0.875rem;
    color: rgba(191, 191, 191, 0.75);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.btn-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    transition: var(--transition-fast);
}

.btn-read-more:hover {
    color: var(--primary-red);
}

.btn-read-more:hover::after {
    background: var(--primary-red);
}

/* Image Collage */
.about-collage {
    position: relative;
    height: 320px;
}

.about-collage .img-back {
    position: absolute;
    top: -40px;
    left: 0px;
    width: 300px;
    /* height: 270px; */
    object-fit: cover;
    z-index: 1;
    display: block;
}

.about-collage .img-front {
    position: absolute;
    /* top: 30px; */
    bottom: -80px;
    right: 0;
    width: 235px;
    height: 350px;
    object-fit: cover;
    z-index: 2;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -130px;
    left: 10px;
    z-index: 3;
    background: var(--dark-light);
    padding: 30px 41px;
    text-align: center;
    min-width: 155px;
}

.experience-badge .exp-number {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
}

.experience-badge .exp-number sup {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
    top: -2px;
}

.experience-badge .exp-label {
    font-size: 0.725rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-top: 7px;
}

.why-trust-section {
    background: var(--dark-soft);
}

/* =====================================================
           RESPONSIVE
           ===================================================== */
@media (max-width: 992px) {
    .breadcrumb-hero {
        height: 200px;
    }

    .breadcrumb-hero-content {
        padding-right: 40px;
    }

    .breadcrumb-hero-content h1 {
        font-size: 3rem;
    }

    .about-collage {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-hero-content {
        padding-right: 24px;
    }

    .breadcrumb-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .about-section {
        padding: 50px 0 60px;
    }

    .about-heading {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .nav-item {
        margin: 8px 0
    }

    .nav-link::after {
        display: none;
    }

    .btn-quote {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-hero {
        height: 350px;
    }

    .breadcrumb-hero-content h1 {
        font-size: 2rem;
    }

    .about-collage {
        height: 280px;
        margin-bottom: 90px;
    }

    .about-collage .img-back {
        width: 230px;
        height: 360px;
        left: 10px;
    }

    .about-collage .img-front {
        width: 150px;
        height: 270px;
    }

    .experience-badge {
        position: absolute;
        bottom: -71px;
        left: 29px;
        z-index: 3;
        background: var(--dark-light);
        padding: 14px 10px;
        text-align: center;
        min-width: 155px;
    }
}

/* =====================================================
       SERVICES SECTION
       ===================================================== */
.services-section {
    background: var(--dark-soft);
}

.services-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.services-eyebrow::before,
.services-eyebrow::after {
    content: '—';
    color: var(--accent-orange);
    opacity: 0.6;
    margin: 0 6px;
}

.services-main-title {
    font-family: var(--font-elegant);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0;
}

/* Service Card */
.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--dark-medium);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(214, 40, 40, 0.2);
}

.service-icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(214, 40, 40, 0.12);
    border: 1px solid rgba(214, 40, 40, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-red);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

.service-body {
    flex: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* =====================================================
       VIDEO BANNER SECTION
       ===================================================== */
.video-banner-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.62);
}

.video-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 0 12px rgba(214, 40, 40, 0.2),
        0 0 0 24px rgba(214, 40, 40, 0.08);
    padding-left: 4px;
    /* optical centering for play icon */
}

.video-play-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.12);
    box-shadow: 0 0 0 14px rgba(247, 127, 0, 0.2),
        0 0 0 28px rgba(247, 127, 0, 0.08);
}

/* Pulse ring animation */
.video-play-btn::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(214, 40, 40, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.video-banner-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* =====================================================
       RESPONSIVE
       ===================================================== */
@media (max-width: 992px) {
    .services-main-title {
        font-size: 2.25rem;
    }

    .video-banner-section {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-banner-section {
        height: 360px;
    }

    .video-banner-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .video-play-btn {
        width: 68px;
        height: 68px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .services-main-title {
        font-size: 1.75rem;
    }

    .video-banner-section {
        height: 300px;
    }

    .video-banner-title {
        font-size: 1.35rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}


/* =====================================================
       WHY TRUST SECTION
       ===================================================== */

/* Bento Grid */
.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 3px;
    background: #1a1a1a;
    /* gap colour shows through as divider lines */
    border: 3px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

/* ---- Base Card ---- */
.wt-card {
    background: var(--dark-soft);
    padding: 2.5rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.wt-card:hover {
    background: #0f0f0f;
}

/* Watermark number */
.wt-card-number {
    position: absolute;
    right: 16px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: 2px;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-normal);
}

.wt-card:hover .wt-card-number {
    color: rgba(214, 40, 40, 0.07);
}

/* Icon */
.wt-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.wt-card:hover .wt-icon-wrap {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.wt-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.wt-card-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Learn More */
.wt-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.wt-learn-more:hover {
    color: var(--primary-red);
    gap: 12px;
}

.wt-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    flex-shrink: 0;
}

/* ---- CTA Card ---- */
.wt-card--cta {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    row-span: 1;
}

.wt-card--cta:hover {
    background: #0a0a0a;
}

.wt-cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 1rem;
}

.wt-cta-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---- Stat Card ---- */
.wt-card--stat {
    background: var(--dark-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wt-stat-number {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.wt-stat-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Avatars */
.wt-avatars {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.wt-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    object-fit: cover;
    margin-left: -8px;
    transition: var(--transition-fast);
}

.wt-avatars img:first-child {
    margin-left: 0;
}

.wt-avatars-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    margin-left: -8px;
    box-shadow: 0 0 12px rgba(214, 40, 40, 0.5);
}

/* Hover lift on feature cards */
.wt-card--feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* =====================================================
       RESPONSIVE
       ===================================================== */

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wt-cta-title {
        font-size: 2.25rem;
    }

    .wt-stat-number {
        font-size: 4rem;
    }

    /* CTA spans full width on tablet */
    .wt-card--cta {
        grid-column: span 2;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .why-trust-grid {
        grid-template-columns: 1fr;
    }

    .wt-card--cta {
        grid-column: span 1;
    }

    .wt-cta-title {
        font-size: 2rem;
    }

    .wt-stat-number {
        font-size: 3.5rem;
    }

    .wt-card {
        padding: 2rem 1.5rem;
    }
}


/* =====================================================
       CONTACT SECTION
       ===================================================== */

/* ---- Hero Title ---- */
.contact-big-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
    padding-left: 1.25rem;
}

.contact-intro-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    padding-top: 0.5rem;
}

/* ---- Info Panel ---- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.contact-info-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.25;
    transition: var(--transition-fast);
}

a.contact-info-value:hover {
    color: var(--primary-red);
}

/* Social icons */
.contact-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.4);
}

/* ---- Form Panel ---- */
.contact-form-wrap {
    background: var(--dark-soft);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2.75rem 2.5rem 2.25rem;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Field wrapper */
.contact-field-wrap {
    padding: 0 0 0.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
}

.contact-field-wrap:nth-child(odd):not(:last-child):not(.col-12) {
    padding-right: 2rem;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.contact-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    padding: 0.3rem 0;
    caret-color: var(--primary-red);
    transition: var(--transition-fast);
}

.contact-input::placeholder {
    color: transparent;
}

/* Bottom border highlight on focus */
.contact-field-wrap::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-red);
    transition: width var(--transition-normal);
}

.contact-field-wrap:focus-within::after {
    width: 100%;
}

.contact-field-wrap:focus-within .contact-label {
    color: var(--primary-red);
}

/* Select */
.contact-select-wrap {
    position: relative;
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-select option {
    background: var(--dark-soft);
    color: var(--white);
}

.contact-select-arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Textarea */
.contact-textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit button */
.btn-contact-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
}

.btn-contact-submit i {
    transition: var(--transition-fast);
}

.btn-contact-submit:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 127, 0, 0.4);
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

/* =====================================================
       RESPONSIVE
       ===================================================== */
@media (max-width: 992px) {
    .contact-intro-text {
        margin-top: 1.5rem;
    }

    .contact-field-wrap:nth-child(odd):not(:last-child):not(.col-12) {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-big-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .contact-form-wrap {
        padding: 2rem 1.5rem 1.75rem;
        margin-top: 2rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-big-title {
        font-size: 2.5rem;
        padding-left: 1rem;
    }

    .contact-form-wrap {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .btn-contact-submit {
        width: 100%;
        justify-content: center;
    }
}