 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Montserrat',sans-serif !important;

    overflow-x: hidden;
    background: #000;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(203, 32, 36, 0.3);
    border-top: 4px solid #CB2024;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================================
   HERO SECTION - ORIGINAL HEIGHTS KEPT
   ================================================ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 40px;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 25s infinite;
}

.slide:nth-child(1) { background-image: url('stand/po9.webp');  animation-delay: 0s; }
.slide:nth-child(2) { background-image: url('stand/po10.webp'); animation-delay: 5s; }
.slide:nth-child(3) { background-image: url('stand/po11.webp'); animation-delay: 10s; }
.slide:nth-child(4) { background-image: url('stand/po4.webp');  animation-delay: 15s; }
.slide:nth-child(5) { background-image: url('stand/po5.webp');  animation-delay: 20s; }

@keyframes fade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    20%  { opacity: 1; }
    24%  { opacity: 0; }
    100% { opacity: 0; }
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text p {
    font-size: clamp(14px, 4vw, 1.4rem);
    line-height: 1.5;
    margin-top: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hollow-text {
   font-size: clamp(2rem, 5vw, 2.3rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.5),
                 0px 8px 13px rgba(0,0,0,0.2),
                 0px 18px 23px rgba(0,0,0,0.15);
    position: relative;
    margin-bottom: 10px;
}

/* ================================================
   HERO SEARCH BOX
   ================================================ */
.hero-search-container {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 30px;
}

.hero-search-form {
    width: 100%;
}

.search-inputs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 18px;
    border: 2px solid rgba(203, 32, 36, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.hero-form-group {
    position: relative;
}

.hero-form-group select {
    width: 100%;
    padding: 18px 45px 18px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 22px;
}

.hero-form-group select:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(203, 32, 36, 0.6);
}

.hero-form-group select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #CB2024;
    box-shadow: 0 0 0 3px rgba(203, 32, 36, 0.2);
}

.hero-form-group select option {
    background: #1a1a1a;
    color: white;
    font-size: 15px;
}

.hero-search-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #da1515, #ca2e2e);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(203, 32, 36, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 180px;
}

.hero-search-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-search-btn:hover:not(:disabled)::before { width: 300px; height: 300px; }
.hero-search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 32, 36, 0.6);
}
.hero-search-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ================================================
   IMPACT SECTION
   ================================================ */
.impact-section {
    padding: 100px 50px;
    position: relative;
}

.impact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.impact-title h2 {
    font-size: clamp(22px, 4vw, 34px);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.impact-title h2 span {
    color: #CB2024;
    font-weight: 800;
    display: block;
}

.impact-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    margin: 30px 0;
    color: #CB2024;
    font-weight: 600;
}

.impact-description {
    font-size: clamp(13px, 1.8vw, 16px);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.impact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.impact-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(203, 32, 36, 0.3);
}

.impact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.impact-image-wrapper:hover .image-overlay { transform: translateY(0); }

.overlay-content h4 {
    color: #CB2024;
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 10px;
}

.overlay-content p {
    color: white;
    font-size: clamp(14px, 2vw, 16px);
}

/* ================================================
   STATS GRID
   ================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.stat-item {
    text-align: center;
    padding: 22px 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(203, 32, 36, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.stat-item:hover::after { width: 300px; height: 300px; }
.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(203, 32, 36, 0.3);
}

.counter {
    font-size: clamp(20px, 3.5vw, 38px) !important;
    color: #CB2024;
    font-weight: 900;
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.stat-item:hover .counter {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(203, 32, 36, 0.8);
}

.stat-item p {
    position: relative;
    z-index: 1;
    font-size: clamp(9px, 1.2vw, 12px);
    margin-top: 6px;
    line-height: 1.3;
    color: #333;
}

/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section {
    padding: 80px 40px;
    text-align: center;
}

.clients-header h2 {
    font-size: clamp(28px, 7vw, 62px);
    font-weight: 400;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: 10px;
}

.clients-header h2 span {
    color: #CB2024;
    font-weight: 700;
    font-size: clamp(30px, 7vw, 64px);
}

.clients-subtitle {
    font-size: clamp(14px, 2.5vw, 22px);
    color: #e0e0e0;
    margin: 20px 0 50px;
}

.alumni-section {
    padding: 30px 0;
    text-align: center;
}

.slider-row {
    overflow: hidden;
    margin: 15px 0;
}

.slide-track {
    display: flex;
    width: calc(200%);
    animation: scroll-left 20s linear infinite;
}

.slider-right .slide-track {
    animation: scroll-right 20s linear infinite;
}

.slide-item {
    flex: 0 0 auto;
    width: clamp(100px, 18vw, 160px);
    margin: 0 15px;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid black;
    border-radius: 25px;
    padding: 8px;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.cta-button {
    background: #CB2024;
    color: white;
    padding: 14px 35px;
    font-size: clamp(13px, 2vw, 1rem);
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 25px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 32, 36, 0.5);
}


/* ================================================
   EXHIBITION SECTION
   ================================================ */
.exhibition-section {
    padding: 70px 0;
    overflow: hidden;
    background: #000;
}

.exhibition-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.title-light {
    font-size: clamp(24px, 5vw, 64px);
    font-weight: 200;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 12px);
    margin-bottom: 8px;
}

.title-bold {
   font-size: clamp(20px, 2vw, 30px);
    font-weight: 700;
    color: #CB2024;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    margin: 5px 0 15px;
}

.subtitle {
    font-size: clamp(13px, 1.8vw, 20px);
    color: #fff;
}

.rotating-gallery.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    height: clamp(160px, 18vw, 280px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 20px 50px rgba(203, 32, 36, 0.6);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.12) rotate(1deg); }

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px 12px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h4 {
    color: #CB2024;
    font-size: clamp(12px, 1.8vw, 16px);
    margin-bottom: 3px;
    font-weight: 700;
}

.gallery-overlay p {
    color: white;
    font-size: clamp(10px, 1.2vw, 13px);
}

/* ================================================
   IMAGE MODAL
   ================================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.modal.show-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: block;
    margin: auto;
    width: 90%;
    max-width: 1000px;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.modal-caption {
    text-align: center;
    color: white;
    padding: 12px;
    font-size: clamp(13px, 2vw, 18px);
}

.modal-caption h4 {
    color: #CB2024;
    font-size: clamp(15px, 2.5vw, 22px);
    margin-bottom: 4px;
}

/* ================================================
   COMPLETE FIX - CLOSE, PREV, NEXT BUTTONS
   ================================================ */

/* ================================================
   IMAGE MODAL - COMPLETE REBUILD
   ================================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.modal.show-modal {
    display: block;
}

/* CLOSE BUTTON - top right, always visible */
.modal-close-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999999;
    width: 46px;
    height: 46px;
    background: #CB2024;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    padding: 0;
}

.modal-close-btn:hover {
    background: #a01a1a;
    transform: rotate(90deg) scale(1.1);
}

/* PREV BUTTON - left center */
.modal-prev-btn {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999;
    width: 46px;
    height: 46px;
    background: #CB2024;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    padding: 0;
    user-select: none;
}

/* NEXT BUTTON - right center */
.modal-next-btn {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999;
    width: 46px;
    height: 46px;
    background: #CB2024;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    padding: 0;
    user-select: none;
}

.modal-prev-btn:hover,
.modal-next-btn:hover {
    background: #a01a1a;
    transform: translateY(-50%) scale(1.1);
}

/* CENTER CONTENT */
.modal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    text-align: center;
}

.modal-content {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.modal-caption {
    text-align: center;
    color: white;
    padding: 12px 0 0;
    font-size: clamp(13px, 2vw, 18px);
}

.modal-caption h4 {
    color: #CB2024;
    font-size: clamp(15px, 2.5vw, 22px);
    margin-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-close-btn { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 22px; }
    .modal-prev-btn  { left: 8px;  width: 38px; height: 38px; font-size: 18px; }
    .modal-next-btn  { right: 8px; width: 38px; height: 38px; font-size: 18px; }
    .modal-inner     { width: 88%; }
    .modal-content   { max-height: 75vh; }
}

@media (max-width: 480px) {
    .modal-close-btn { top: 8px; right: 8px; width: 34px; height: 34px; font-size: 20px; }
    .modal-prev-btn  { left: 5px;  width: 34px; height: 34px; font-size: 16px; }
    .modal-next-btn  { right: 5px; width: 34px; height: 34px; font-size: 16px; }
    .modal-inner     { width: 92%; }
    .modal-content   { max-height: 70vh; }
}

@media (max-width: 360px) {
    .modal-close-btn { width: 30px; height: 30px; font-size: 17px; }
    .modal-prev-btn,
    .modal-next-btn  { width: 30px; height: 30px; font-size: 14px; }
}
/* ================================================
   VIDEO GALLERY SECTION
   ================================================ */
.video-gallery-section {
    padding: 80px 40px;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-title-light {
    font-size: clamp(18px, 4vw, 44px);
    font-weight: 400;
    color: #a4a4a4;
    text-transform: uppercase;
    letter-spacing: clamp(5px, 1.5vw, 12px);
}

.video-title-bold {
    font-size: clamp(24px, 5vw, 56px);
    font-weight: 700;
    color: #CB2024;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 6px);
    margin: 8px 0 20px;
}

.video-subtitle {
    font-size: clamp(14px, 2.5vw, 26px);
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.exhibition-video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.exhibition-video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(203, 32, 36, 0.4);
}

.exhibition-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.exhibition-thumbnail {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.exhibition-play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.exhibition-video-card:hover .exhibition-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.exhibition-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.exhibition-video-card:hover .exhibition-play-btn {
    transform: scale(1.12);
}

.exhibition-play-triangle {
    width: 0; height: 0;
    border-left: 22px solid #dc143c;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    margin-left: 4px;
}

.exhibition-video-caption {
    padding: 20px;
    background: #fff;
    border-top: 2px solid #CB2024;
}

.exhibition-video-caption h4 {
    font-size: clamp(14px, 2vw, 17px);
    color: #333;
    font-weight: 600;
}

/* ================================================
   VIDEO FULLSCREEN MODAL
   ================================================ */
.exhibition-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.exhibition-fullscreen-modal.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exhibition-modal-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 10;
}

.exhibition-modal-title {
    color: #CB2024;
    font-size: clamp(16px, 3vw, 26px);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.exhibition-modal-close {
    background: #CB2024;
    border: none;
    color: white;
    width: clamp(42px, 7vw, 52px);
    height: clamp(42px, 7vw, 52px);
    border-radius: 50%;
    font-size: clamp(26px, 5vw, 36px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-modal-close:hover {
    background: #a01a1a;
    transform: rotate(90deg) scale(1.1);
}

.exhibition-modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-modal-video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(203, 32, 36, 0.3);
    border: 2px solid rgba(203, 32, 36, 0.3);
}

.exhibition-modal-nav {
    position: absolute;
    background: rgba(203, 32, 36, 0.9);
    border: none;
    color: white;
    width: clamp(42px, 7vw, 58px);
    height: clamp(42px, 7vw, 58px);
    border-radius: 50%;
    font-size: clamp(26px, 5vw, 38px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.exhibition-modal-nav:hover {
    background: #CB2024;
    transform: scale(1.1);
}

.exhibition-modal-prev { left: clamp(8px, 2vw, 18px); }
.exhibition-modal-next { right: clamp(8px, 2vw, 18px); }

.exhibition-modal-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #CB2024;
    padding: 8px 22px;
    border-radius: 22px;
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 600;
    border: 2px solid #CB2024;
    z-index: 10;
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.portfolio-section {
    padding: 70px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.left-content {
    padding: 30px;
    position: sticky;
    top: 60px;
    height: fit-content;
}

.portfolio-header { margin-bottom: 25px; }

.portfolio-header p {
    color: #CB2024;
    font-size: clamp(18px, 3.5vw, 2rem);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 800;
}

.portfolio-header h2 {
    font-size: clamp(18px, 3.5vw, 2.5rem);
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.key-aspects { margin: 15px 0; }

.key-aspects ul {
    list-style: none;
    padding-left: 0;
    color: white;
}

.key-aspects li {
    padding: 7px 0 7px 20px;
    position: relative;
    color: white;
}

.key-aspects li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #CB2024;
    font-size: 18px;
}

.key-aspects p {
    font-size: clamp(12px, 1.8vw, 15px);
    color: #e0e0e0;
    margin-top: 4px;
}

.key-aspects strong { font-size: clamp(13px, 1.8vw, 15px); }

.view-more-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 28px;
    background: #CB2024;
    color: #fff;
    text-decoration: none;
    border: 1px solid #CB2024;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-size: clamp(13px, 1.8vw, 1rem);
    font-weight: 800;
}

.view-more-btn:hover {
    background: #fff;
    color: #000;
    border-color: #CB2024;
}

.right-content { padding: 30px 0; }

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media (max-width: 768px) {
    .portfolio-section {
        grid-template-columns: 1fr !important;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-item {
        height: 250px !important;
        min-height: unset !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        height: 220px !important;
    }
}
.portfolio-item {
    position: relative;
    height: 38vh;
    min-height: 260px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    border-radius: 12px;
}

.portfolio-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
#testimonials {
    padding: 70px 20px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

#testimonials .container {
    max-width: 1400px;
    margin: 0 auto;
}

#testimonials h2 {
    color: #CB2024;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: clamp(24px, 5vw, 48px);
    text-align: center;
}

#testimonials p.subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 35px;
    font-size: clamp(14px, 2vw, 20px);
}

.testimonial-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0 50px;
}

.testimonial-carousel-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-item {
    background: white;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 28px 22px;
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    user-select: none;
    min-width: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-item:hover {
    box-shadow: 0 20px 50px rgba(203, 32, 36, 0.3);
    transform: translateY(-8px);
}

.testimonial-item img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}

.testimonial-item p {
    flex-grow: 1;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-item h6 {
    font-weight: 700;
    color: #CB2024;
    font-size: clamp(14px, 1.5vw, 17px);
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(203, 32, 36, 0.85);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.custom-prev:hover,
.custom-next:hover { background: #CB2024; }

.custom-prev { left: 5px; }
.custom-next { right: 5px; }

/* ================================================
   PROCESS / TRANSFORM SECTION
   ================================================ */
.transform-section {
    padding: 70px 40px;
}

.transform-header {
    text-align: center;
    margin-bottom: 5px;
}

.transform-title-bold {
    font-size: clamp(26px, 5.5vw, 56px);
    font-weight: 700;
    color: #CB2024;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.transform-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: #fff;
    margin: 10px 0 20px !important;
    text-align: center;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 35px auto 0;
}

.transform-item {
    background: #0d0d0d;
    padding: 30px 22px;
    border-radius: 15px;
    border: 1px solid rgba(203, 32, 36, 0.2);
    transition: all 0.4s;
    min-width: 0;
}

.transform-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(203, 32, 36, 0.3);
}

.transform-item h3 {
    font-size: clamp(14px, 1.8vw, 20px);
    color: #CB2024;
    margin-bottom: 12px;
    line-height: 1.3;
}

.transform-item p {
    font-size: clamp(12px, 1.4vw, 15px);
    color: #ddd;
    line-height: 1.6;
}

/* ================================================
   ANIMATION CLASSES
   ================================================ */
.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

body.modal-open { overflow: hidden; }

/* ================================================
   REVIEWS / FEEDBACK SECTION
   ================================================ */
.reviews-showcase { padding: 80px 20px; }

.reviews-heading-block {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.reviews-heading-light {
    font-size: clamp(13px, 2.5vw, 1rem);
    color: #f9f5f5;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.reviews-heading-bold {
    font-size: clamp(24px, 5vw, 2.5rem);
    color: #CB2024;
    font-weight: 700;
}

.feedback-carousel {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
}

.feedback-carousel.dragging { cursor: grabbing; }

.carousel-container {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.feedback-box {
    border-radius: 15px;
    flex-shrink: 0;
    height: 197px;
    transition: all 0.3s;
}

.feedback-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image { width: 90%; height: 100%; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dot.is-active {
    background: #CB2024;
    width: 28px;
    border-radius: 6px;
}

/* ================================================
   CONNECT BANNER
   ================================================ */
.connect-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 80px 0;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.2);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(203,32,36,0.3) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 50px;
    color: white;
}

.connect-banner h2 {
    font-size: clamp(26px, 4.5vw, 48px);
    font-weight: 700;
    color: #fdfafa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.connect-banner p {
    font-size: clamp(14px, 2vw, 20px);
    color: #e0e0e0;
    line-height: 1.6;
}

.banner-btn {
    padding: 14px 28px;
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #CB2024;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #CB2024;
    color: white;
    margin-top: 25px;
    display: inline-block;
}

.banner-btn:hover {
    background: #a01a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(203, 32, 36, 0.6);
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .rotating-gallery.grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* --- 1024px: iPad Pro --- */
@media (max-width: 1024px) {
    /* Hero stays full height */
    .hero { height: 100vh; min-height: 550px; }

    /* Search box stacks on iPad */
    .hero-search-container { max-width: 96%; margin-top: 16px; padding: 0 20px; }
    .search-inputs-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 22px;
        background: rgba(0, 0, 0, 0.6);
    }
    .hero-form-group select { padding: 15px 38px 15px 18px; font-size: 15px; }
    .hero-search-btn { width: 100%; min-width: auto; padding: 15px; font-size: 15px; }

    /* Impact stacks */
    .impact-section { padding: 70px 30px; }
    .impact-content-wrapper { grid-template-columns: 1fr; gap: 30px; }

    /* Stats 2 columns */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-item { padding: 22px 12px; }
    .counter { font-size: clamp(22px, 5vw, 34px) !important; }

    /* Gallery 2 columns */
    .rotating-gallery.grid-layout { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 20px; }
    .gallery-item { height: 200px; }
    .gallery-item .gallery-overlay { transform: translateY(0); background: linear-gradient(transparent 30%, rgba(0,0,0,0.85)); }

    /* Services 3 columns */
    .services-section { padding: 60px 25px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

    /* Videos 2 columns */
    .video-gallery-section { padding: 60px 25px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 10px; }

    /* Process 2 columns */
    .transform-section { padding: 60px 25px; }
    .transform-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 25px; }

    /* Portfolio stacks */
    .portfolio-section { grid-template-columns: 1fr; gap: 20px; padding: 60px 25px; }
    .left-content { position: relative; top: 0; padding: 15px; }
    .right-content { padding: 0; }
    .portfolio-item { height: 32vh; min-height: 220px; }

    /* Testimonials 2 cards */
    .testimonial-carousel-wrapper { padding: 0 44px; }
    .testimonial-item { flex: 0 0 calc(50% - 10px); }

    /* Connect banner */
    .connect-banner { margin: 60px 0; min-height: 180px; }
    .banner-content { padding: 30px 30px; }
}

/* --- 768px: Mobile --- */
@media (max-width: 768px) {
    /* HERO - small as original */
    .hero { height: 60vh; min-height: 420px; max-height: 520px; margin-top: 40px; }
    .hero-text { top: 50%; transform: translateY(-50%); padding: 0 18px; }
    .hollow-text { font-size: clamp(1rem, 4vw, 2rem); margin-bottom: 6px; }
    .hero-text p { font-size: clamp(13px, 3vw, 16px); margin-top: 8px; }
    .hero-search-container { margin-top: 14px; padding: 0 14px; }
    .search-inputs-wrapper { padding: 16px 18px; gap: 10px; background: rgba(0,0,0,0.65); }
    .hero-form-group select { padding: 13px 35px 13px 15px; font-size: 14px; }
    .hero-search-btn { padding: 13px; font-size: 14px; }

    /* Impact */
    .impact-section { padding: 50px 18px; }
    .impact-content-wrapper { gap: 22px; }

    /* Stats 2 columns */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
    .stat-item { padding: 16px 8px; border-radius: 10px; }
    .counter { font-size: clamp(18px, 6vw, 28px) !important; }
    .stat-item p { font-size: 10px; margin-top: 4px; }

   

    /* Gallery 2 columns */
    .exhibition-section { padding: 50px 10px; }
    .rotating-gallery.grid-layout { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 12px; }
    .gallery-item { height: 150px; }

    /* Videos 1 column */
    .video-gallery-section { padding: 50px 15px; }
    .video-grid { grid-template-columns: 1fr; gap: 18px; padding: 8px; }

    /* Process 1 column */
    .transform-section { padding: 50px 15px; }
    .transform-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
    .transform-item { padding: 22px 18px; }
    .transform-item h3 { font-size: 15px; }
    .transform-item p { font-size: 13px; }

    /* Portfolio */
    .portfolio-section { grid-template-columns: 1fr; padding: 45px 15px; gap: 18px; }
    .left-content { padding: 10px; position: relative; top: 0; }
    .portfolio-item { height: 28vh; min-height: 200px; }

    /* Testimonials 1 card */
    .testimonial-carousel-wrapper { padding: 0 40px; }
    .testimonial-item { flex: 0 0 100%; padding: 22px 18px; }

    /* Clients */
    .clients-section { padding: 50px 15px; }

    /* Connect banner */
    .connect-banner { margin: 50px 0; }
    .banner-content { padding: 25px 20px; }
    .connect-banner h2 { font-size: clamp(22px, 5.5vw, 34px); }
    .connect-banner p { font-size: clamp(12px, 2.5vw, 15px); }

    /* Modal */
    .modal-content { width: 88%; max-height: 72vh; }
    .exhibition-modal-nav { display: none; }
}

/* --- 480px: Small Mobile --- */
@media (max-width: 480px) {
    /* HERO - small as original */
    .hero { height: 55vh; min-height: 400px; max-height: 490px; }
    .hero-text { padding: 0 14px; }
    .hollow-text { font-size: clamp(1rem, 4.5vw, 2rem); margin-top: 10px; }
    .hero-text p { font-size: clamp(12px, 3.2vw, 15px); }
    .hero-search-container { padding: 0 12px; margin-top: 10px; }
    .search-inputs-wrapper { padding: 14px 15px; gap: 9px; border-radius: 13px; }
    .hero-form-group select { padding: 12px 32px 12px 13px; font-size: 13px; }
    .hero-search-btn { padding: 12px; font-size: 13px; letter-spacing: 1px; }

    /* Impact */
    .impact-section { padding: 40px 14px; }

    /* Stats 2 columns tight */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 14px; }
    .stat-item { padding: 14px 6px; border-radius: 9px; }
    .counter { font-size: clamp(17px, 7vw, 24px) !important; }
    .stat-item p { font-size: 9px; margin-top: 3px; line-height: 1.2; }

   

    /* Gallery 2 columns small */
    .exhibition-section { padding: 40px 8px; }
    .rotating-gallery.grid-layout { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 8px; }
    .gallery-item { height: 130px; }

    /* Videos 1 column */
    .video-gallery-section { padding: 40px 12px; }
    .video-grid { padding: 5px; gap: 14px; }

    /* Process 1 column */
    .transform-section { padding: 40px 12px; }
    .transform-title-bold { font-size: clamp(22px, 7vw, 36px); }
    .transform-subtitle { font-size: clamp(12px, 3.2vw, 16px); }
    .transform-grid { gap: 10px; margin-top: 15px; }
    .transform-item { padding: 18px 14px; border-radius: 12px; }
    .transform-item h3 { font-size: 14px; margin-bottom: 8px; }
    .transform-item p { font-size: 12px; line-height: 1.5; }

    /* Portfolio */
    .portfolio-section { padding: 35px 12px; }
    .portfolio-item { height: 26vh; min-height: 180px; }

    /* Testimonials */
    #testimonials { padding: 40px 10px; }
    .testimonial-carousel-wrapper { padding: 0 34px; }
    .testimonial-item { padding: 18px 14px; }
    .testimonial-item img { width: 44px; height: 44px; margin-bottom: 12px; }
    .testimonial-item p { font-size: 12px; }
    .testimonial-item h6 { font-size: 13px; }
    .custom-prev, .custom-next { width: 32px; height: 32px; font-size: 16px; }

    /* Clients */
    .clients-section { padding: 40px 12px; }
    .slide-item { width: clamp(80px, 22vw, 120px); margin: 0 10px; }

    /* Connect banner */
    .connect-banner { margin: 40px 0; min-height: 170px; }
    .banner-content { padding: 20px 16px; }
    .connect-banner h2 { font-size: clamp(18px, 5.5vw, 28px); letter-spacing: 1px; margin-bottom: 10px; }
    .connect-banner p { font-size: clamp(11px, 2.8vw, 14px); }
    .banner-btn { padding: 11px 20px; font-size: 12px; margin-top: 14px; }

    /* Modal */
    .modal-content { width: 95%; max-height: 62vh; }
}

/* --- 360px: Extra Small --- */
@media (max-width: 360px) {
    /* HERO - small */
    .hero { height: 50vh; min-height: 380px; max-height: 450px; }
    .hollow-text { font-size: clamp(1rem, 4vw, 1rem); }
    .search-inputs-wrapper { padding: 12px 13px; gap: 8px; }
    .hero-form-group select { padding: 11px 28px 11px 12px; font-size: 12px; }
    .hero-search-btn { padding: 11px; font-size: 12px; }

    /* Stats */
    .stats-grid { gap: 7px; }
    .stat-item { padding: 12px 5px; }
    .counter { font-size: 16px !important; }
    .stat-item p { font-size: 8px; }

    /* Process */
    .transform-item { padding: 15px 12px; }
    .transform-item h3 { font-size: 13px; }
    .transform-item p { font-size: 11px; }

    /* Gallery */
    .gallery-item { height: 115px; }

    /* Testimonials */
    .testimonial-carousel-wrapper { padding: 0 28px; }
    .custom-prev, .custom-next { width: 28px; height: 28px; font-size: 14px; }
    .testimonial-item { padding: 15px 11px; }
    .testimonial-item p { font-size: 11px; }

    /* Connect banner */
    .banner-content { padding: 18px 14px; }
    .connect-banner h2 { font-size: 17px; }
}

/* Touch hover fallbacks */
@media (hover: none) {
    .gallery-item .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
    }
    .gallery-item:active { transform: scale(0.98); }
    .prev-button:active,
    .next-button:active { background-color: #CB2024; }
}
.proposal-btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #cc0000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.proposal-btn:hover {
    background-color: #aa0000;
}
/* ================================================
   EMERGENCY MODAL BUTTON FIX - ADD AT BOTTOM
   ================================================ */
#fullscreen-modal .modal-close-btn,
#fullscreen-modal .modal-prev-btn,
#fullscreen-modal .modal-next-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#fullscreen-modal .modal-close-btn {
    position: fixed !important;
    top: 90px !important;
    right: 20px !important;
    z-index: 2147483647 !important;
    width: 48px !important;
    height: 48px !important;
    background: #CB2024 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 28px !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 0 0 3px white, 0 4px 20px rgba(0,0,0,0.8) !important;
}

#fullscreen-modal .modal-prev-btn {
    position: fixed !important;
    left: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2147483647 !important;
    width: 48px !important;
    height: 48px !important;
    background: #CB2024 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 0 3px white, 0 4px 20px rgba(0,0,0,0.8) !important;
}

#fullscreen-modal .modal-next-btn {
    position: fixed !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2147483647 !important;
    width: 48px !important;
    height: 48px !important;
    background: #CB2024 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 0 3px white, 0 4px 20px rgba(0,0,0,0.8) !important;
}

@media (max-width: 768px) {
    #fullscreen-modal .modal-close-btn { top: 70px !important; right: 12px !important; width: 40px !important; height: 40px !important; font-size: 22px !important; }
    #fullscreen-modal .modal-prev-btn  { left: 8px !important;  width: 40px !important; height: 40px !important; }
    #fullscreen-modal .modal-next-btn  { right: 8px !important; width: 40px !important; height: 40px !important; }
}

@media (max-width: 480px) {
    #fullscreen-modal .modal-close-btn { top: 60px !important; right: 8px !important; width: 36px !important; height: 36px !important; font-size: 20px !important; }
    #fullscreen-modal .modal-prev-btn  { left: 5px !important;  width: 36px !important; height: 36px !important; }
    #fullscreen-modal .modal-next-btn  { right: 5px !important; width: 36px !important; height: 36px !important; }
}
.ps-para-section {
    padding: 50px 60px;
    background: #0a0a0a;
    position: relative;
}

.ps-para-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 32, 36, 0.4), transparent);
}

.ps-para-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 32, 36, 0.4), transparent);
}

.ps-para-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ps-para-text {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #a0a0a0;
    line-height: 1.9;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 768px) {
    .ps-para-section {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .ps-para-section {
        padding: 35px 15px;
    }

    .ps-para-text {
        font-size: 14px;
        line-height: 1.8;
    }
}

 .gallery-view-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #CB2024;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(203, 32, 36, 0.4);
}

.gallery-view-more-btn:hover {
    background: #a01a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(203, 32, 36, 0.6);
}
        /* VIDEO SECTION */
        .video-gallery-section {
            padding: 100px 50px;
        }

        .video-gallery-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .video-title-light {
            font-size: clamp(32px, 7vw, 64px);
            font-weight: 400;
            color: #a4a4a4;
            text-transform: uppercase;
            letter-spacing: clamp(6px, 1.5vw, 12px);
        }

        .video-title-bold {
            font-size: clamp(15px, 4vw, 30px);
            font-weight: 700;
            color: #CB2024;
            text-transform: uppercase;
            letter-spacing: clamp(3px, 1vw, 6px);
            margin: 10px 0 30px;
        }

        .video-subtitle {
            font-size: clamp(16px, 3vw, 26px);
            color: #fff;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px;
        }

        .exhibition-video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.5s;
            cursor: pointer;
            position: relative;
        }

        .exhibition-video-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(203, 32, 36, 0.4);
        }

        .exhibition-video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            overflow: hidden;
        }

        .exhibition-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .exhibition-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .exhibition-video-card:hover .exhibition-play-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .exhibition-play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .exhibition-video-card:hover .exhibition-play-btn {
            transform: scale(1.15);
            background: #fff;
            box-shadow: 0 6px 30px rgba(203, 32, 36, 0.4);
        }

        .exhibition-play-triangle {
            width: 0;
            height: 0;
            border-left: 25px solid #dc143c;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .exhibition-video-caption {
            padding: 25px;
            background: #fff;
            border-top: 2px solid #CB2024;
        }

        .exhibition-video-caption h4 {
            font-size: clamp(16px, 2.5vw, 18px);
            color: #333;
            margin-bottom: 0;
            font-weight: 600;
        }

        /* FULLSCREEN VIDEO MODAL */
        .exhibition-fullscreen-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 10000;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .exhibition-fullscreen-modal.is-active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .exhibition-modal-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
            z-index: 10;
        }

        .exhibition-modal-title {
            color: #CB2024;
            font-size: clamp(18px, 3vw, 28px);
            font-weight: 700;
            text-transform: uppercase;
            margin: 0;
        }

        .exhibition-modal-close {
            background: #CB2024;
            border: none;
            color: white;
            width: clamp(45px, 7vw, 55px);
            height: clamp(45px, 7vw, 55px);
            border-radius: 50%;
            font-size: clamp(28px, 5vw, 38px);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            box-shadow: 0 4px 15px rgba(203, 32, 36, 0.4);
        }

        .exhibition-modal-close:hover {
            background: #a01a1a;
            transform: rotate(90deg) scale(1.1);
        }

        .exhibition-modal-content {
            position: relative;
            width: 90%;
            max-width: 1400px;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .exhibition-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .exhibition-modal-video {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(203, 32, 36, 0.3);
            border: 2px solid rgba(203, 32, 36, 0.3);
        }

        .exhibition-modal-nav {
            position: absolute;
            background: rgba(203, 32, 36, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: clamp(45px, 7vw, 60px);
            height: clamp(45px, 7vw, 60px);
            border-radius: 50%;
            font-size: clamp(28px, 5vw, 40px);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            z-index: 10;
        }

        .exhibition-modal-nav:hover {
            background: #CB2024;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(203, 32, 36, 0.6);
        }

        .exhibition-modal-prev {
            left: clamp(10px, 2vw, 20px);
        }

        .exhibition-modal-next {
            right: clamp(10px, 2vw, 20px);
        }

        .exhibition-modal-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: #CB2024;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: clamp(14px, 2.5vw, 18px);
            font-weight: 600;
            border: 2px solid #CB2024;
            z-index: 10;
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 15px;
            }
            
            .exhibition-modal-nav {
                display: none;
            }
            
            .exhibition-modal-content {
                width: 95%;
                height: 70vh;
            }
        }

        @media (max-width: 768px) {
            .video-gallery-section {
                padding: 60px 20px;
            }
            
            .exhibition-modal-header {
                padding: 15px 20px;
            }
            
            .exhibition-modal-content {
                height: 60vh;
            }
        }

        @media (max-width: 480px) {
            .exhibition-play-btn {
                width: 60px;
                height: 60px;
            }
            
            .exhibition-play-triangle {
                border-left: 18px solid #dc143c;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }
            
            .exhibition-modal-close {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }
        .video-cta-banner {
    width: 100%;
    background: linear-gradient(135deg, #0d0d0d, #1a0000, #0d0d0d);
    border-top: 1px solid rgba(203, 32, 36, 0.3);
    border-bottom: 1px solid rgba(203, 32, 36, 0.3);
    padding: 45px 50px;
    box-sizing: border-box;
}

.video-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.video-cta-title {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-cta-desc {
    font-size: clamp(13px, 1.4vw, 16px);
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

.video-cta-btn {
    flex-shrink: 0;
    padding: 16px 28px;
    background: #CB2024;
    color: #fff;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(203, 32, 36, 0.4);
}

.video-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(203, 32, 36, 0.6);
    background: #a01a1a;
}

@media (max-width: 1024px) {
    .video-cta-banner { padding: 40px 30px; }
    .video-cta-content { flex-direction: column; text-align: center; gap: 25px; }
}

@media (max-width: 768px) {
    .video-cta-banner { padding: 35px 20px; }
    .video-cta-btn { width: 100%; padding: 14px 20px; }
}

@media (max-width: 480px) {
    .video-cta-banner { padding: 30px 15px; }
    .video-cta-title { font-size: 17px; }
    .video-cta-desc { font-size: 13px; }
    .video-cta-btn { font-size: 12px; padding: 13px 16px; }
}
/* ================================================
   SERVICES SECTION - COMPLETE FIX
   ================================================ */
#services.services-section {
    padding: 80px 50px;
    /* Override animated-section opacity issue */
}

/* Fix: heading must be visible regardless of animation state */
#services .services-header {
    text-align: center;
    margin-bottom: 50px;
}

#services .services-title-bold {
    font-size: clamp(18px, 4vw, 38px) !important;
    font-weight: 700;
    color: #CB2024;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 6px);
    margin: 0 0 12px 0;
    line-height: 1.2;
    /* Force visible */
    opacity: 1 !important;
    transform: none !important;
}

#services .services-tagline {
    font-size: clamp(14px, 2vw, 20px) !important;
    color: #e0e0e0;
    margin: 0;
    font-weight: 400;
}

/* Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cards */
.service-item-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Red bottom line on hover */
.service-item-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #CB2024;
    transition: width 0.4s ease;
}

.service-item-new:hover::after {
    width: 100%;
}

.service-item-new:hover {
    background: rgba(203, 32, 36, 0.08);
    border-color: rgba(203, 32, 36, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(203, 32, 36, 0.2);
}

/* Icon box */
.service-icon-new {
    width: 56px;
    height: 56px;
    background: rgba(203, 32, 36, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item-new:hover .service-icon-new {
    background: rgba(203, 32, 36, 0.3);
    transform: scale(1.08);
}

.service-icon-new img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Text */
.service-item-new h3 {
    font-size: clamp(15px, 1.6vw, 18px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-item-new p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #a0a0a0;
    line-height: 1.75;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Large Desktop: 4 columns */
@media (min-width: 1201px) {
    .services-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* iPad Pro / Small Laptop: 2 columns */
@media (max-width: 1200px) {
    #services.services-section {
        padding: 70px 30px;
    }
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* iPad / Tablet: 2 columns */
@media (max-width: 1024px) {
    #services.services-section {
        padding: 60px 25px;
    }
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .service-item-new {
        padding: 28px 20px;
    }
}

/* Mobile Landscape: 2 columns */
/* ================================================
   SERVICE CARDS MOBILE FIX
   Layout: Icon → Heading → Description (stacked)
   ================================================ */

@media (max-width: 768px) {

    .services-grid-new {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .service-item-new {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 22px 18px !important;
        gap: 0 !important;
    }

    .service-icon-new {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 12px !important;
        flex-shrink: 0 !important;
    }

    .service-icon-new img {
        width: 24px !important;
        height: 24px !important;
    }

    .service-item-new h3 {
        font-size: 15px !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }

    .service-item-new p {
        font-size: 13px !important;
        line-height: 1.65 !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {

    .services-grid-new {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .service-item-new {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 20px 16px !important;
        gap: 0 !important;
    }

    .service-icon-new {
        width: 46px !important;
        height: 46px !important;
        margin-bottom: 10px !important;
    }

    .service-icon-new img {
        width: 22px !important;
        height: 22px !important;
    }

    .service-item-new h3 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }

    .service-item-new p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 360px) {

    .service-item-new {
        padding: 16px 14px !important;
    }

    .service-icon-new {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 8px !important;
    }

    .service-icon-new img {
        width: 20px !important;
        height: 20px !important;
    }

    .service-item-new h3 {
        font-size: 13px !important;
    }

    .service-item-new p {
        font-size: 11px !important;
    }
}
.city-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.city-cta-btn {
    display: inline-block;
    padding: 14px 25px;
    background: #CB2024;
    color: #fff;
    font-size: clamp(8px, 1vw, 10px);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(203, 32, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.city-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.city-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}


.city-cta-btn:hover {
    background: #a01a1a;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(203, 32, 36, 0.6);
}

@media (max-width: 768px) {
    .city-cta-wrapper { margin-top: 35px; }
    .city-cta-btn { padding: 15px 30px; font-size: 13px; }
}

@media (max-width: 480px) {
    .city-cta-wrapper { margin-top: 28px; }
    .city-cta-btn { padding: 14px 22px; font-size: 12px; letter-spacing: 1px; width: 100%; }
}

/* ========== GLOBAL PRESENCE SECTION ========== */
.global-presence-section {
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.global-title-light {
    font-size: clamp(15px, 4vw, 42px);
    font-weight: 200;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.8vw, 8px);
    margin-bottom: 8px;
}

.global-title-bold {
    font-size: clamp(15px, 4vw, 42px);
    font-weight: 700;
    color: #CB2024;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.8vw, 6px);
    margin: 8px 0 15px;
}

.global-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: gray;
    margin: 15px 0;
    line-height: 1.5;
}

.global-map-container {
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

#global-three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.global-map-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.global-city-thumbnail {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    padding: 0;
    outline: none;
}

.global-city-thumbnail:hover {
    transform: translateY(-10px) scale(1.05);
}

.global-thumbnail-box {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.95);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.global-city-thumbnail:hover .global-thumbnail-box {
    box-shadow: 0 20px 50px rgba(203, 32, 36, 0.4);
}

.global-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(40%) brightness(0.7);
}

.global-city-thumbnail:hover .global-thumbnail-image {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1);
}

.global-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0;
}

.global-city-thumbnail:hover .global-thumbnail-overlay {
    opacity: 1;
}

.global-city-name {
    color: #ffffff;
    font-size: clamp(14px, 2.2vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.global-city-thumbnail:hover .global-city-name {
    transform: translateY(0);
}

.global-city-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #CB2024;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: clamp(9px, 1.3vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(203, 32, 36, 0.5);
    z-index: 3;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.global-city-thumbnail:hover .global-city-badge {
    background: #a01a1a;
    transform: scale(1.05);
}

/* City Gallery Modal */
.city-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.city-gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-gallery-content {
    max-width: 1400px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    padding: clamp(20px, 4vw, 40px);
    box-shadow: 0 25px 60px rgba(203, 32, 36, 0.3);
    border: 2px solid rgba(203, 32, 36, 0.3);
}

.city-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(20px, 4vw, 40px);
    padding-bottom: clamp(15px, 3vw, 25px);
    border-bottom: 2px solid rgba(203, 32, 36, 0.3);
}

.city-gallery-header h2 {
    color: #CB2024;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    text-transform: uppercase;
}

.city-close-btn {
    background: #CB2024;
    border: none;
    color: white;
    width: clamp(38px, 6vw, 48px);
    height: clamp(38px, 6vw, 48px);
    border-radius: 50%;
    font-size: clamp(22px, 3.5vw, 28px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(203, 32, 36, 0.4);
    flex-shrink: 0;
}

.city-close-btn:hover {
    background: #a01a1a;
    transform: rotate(90deg) scale(1.1);
}

.city-gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.city-gallery-image {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(40, 40, 40, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.city-gallery-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(203, 32, 36, 0.3);
}

.city-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.city-gallery-image:hover img {
    transform: scale(1.1);
}

/* City Fullscreen Viewer */
.city-fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10002;
    backdrop-filter: blur(10px);
}

.city-fullscreen-viewer.active {
    display: block;
}

.city-viewer-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px;
}

.city-viewer-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(15px, 3vw, 25px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    gap: 15px;
}

.city-viewer-title {
    color: #CB2024;
    font-size: clamp(16px, 3.5vw, 28px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.city-viewer-counter {
    color: #CB2024;
    font-size: clamp(13px, 2.5vw, 18px);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    border-radius: 20px;
    border: 2px solid #CB2024;
    white-space: nowrap;
}

.city-close-viewer-btn {
    background: #CB2024;
    border: none;
    color: white;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    font-size: clamp(24px, 4vw, 32px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(203, 32, 36, 0.4);
    position: absolute;
    top: clamp(15px, 3vw, 25px);
    right: clamp(15px, 3vw, 25px);
    z-index: 11;
}

.city-close-viewer-btn:hover {
    background: #a01a1a;
    transform: rotate(90deg) scale(1.1);
}

.city-image-slider {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.city-slide-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.city-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.city-slide-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(203, 32, 36, 0.3);
    border: 2px solid rgba(203, 32, 36, 0.3);
}

.city-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(35px, 6vw, 50px);
    height: clamp(35px, 6vw, 50px);
    background: rgba(203, 32, 36, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: clamp(18px, 3.5vw, 28px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(203, 32, 36, 0.4);
}

.city-slide-nav:hover {
    background: #CB2024;
    transform: translateY(-50%) scale(1.1);
}

.city-prev-slide {
    left: clamp(10px, 2vw, 20px);
}

.city-next-slide {
    right: clamp(10px, 2vw, 20px);
}

/* Tablet Responsive (iPad, etc.) */
@media (max-width: 1024px) {
    .global-presence-section {
        padding: 80px 30px;
    }

    .global-header {
        margin-bottom: 50px;
    }
    
    .global-map-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .city-gallery-images {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .city-gallery-image {
        height: 160px;
    }
}

/* Mobile Landscape & Small Tablet */
@media (max-width: 768px) {
    .global-presence-section {
        padding: 60px 20px;
    }
    
    .global-header {
        margin-bottom: 40px;
    }

    .global-title-light {
        font-size: clamp(18px, 4vw, 36px);
        letter-spacing: clamp(1.5px, 0.6vw, 6px);
    }

    .global-title-bold {
        font-size: clamp(20px, 5vw, 40px);
        letter-spacing: clamp(1.5px, 0.6vw, 5px);
    }

    .global-subtitle {
        font-size: clamp(13px, 2.5vw, 18px);
    }
    
    .global-map-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .global-map-container {
        padding: 20px;
    }

    .global-city-name {
        font-size: clamp(13px, 2vw, 16px);
    }

    .global-city-badge {
        padding: 4px 8px;
        font-size: clamp(8px, 1.2vw, 10px);
    }

    /* Show city name on mobile without hover */
    .global-thumbnail-overlay {
        opacity: 1;
    }

    .global-city-name {
        transform: translateY(0);
    }
    
    .city-gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .city-gallery-image {
        height: 140px;
    }

    .city-gallery-header h2 {
        font-size: clamp(18px, 4vw, 28px);
    }
    
   
    .city-viewer-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .city-image-slider {
        height: calc(100% - 60px);
        margin-top: 60px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .global-presence-section {
        padding: 50px 15px;
    }

    .global-header {
        margin-bottom: 35px;
    }

    .global-title-light {
        font-size: clamp(16px, 5vw, 28px);
        margin-bottom: 6px;
    }

    .global-title-bold {
        font-size: clamp(18px, 6vw, 32px);
        margin: 6px 0 12px;
    }

    .global-subtitle {
        font-size: clamp(12px, 3vw, 16px);
        margin: 12px 0;
    }

    .global-map-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .global-map-container {
        padding: 15px;
        border-radius: 15px;
    }

    .global-thumbnail-box {
        border-radius: 12px;
    }

    .global-city-name {
        font-size: clamp(12px, 3vw, 14px);
        letter-spacing: 1px;
    }

    .global-city-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .city-gallery-content {
        width: 98%;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .city-gallery-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .city-gallery-header h2 {
        font-size: clamp(16px, 5vw, 24px);
        flex: 1;
        min-width: 150px;
    }

    .city-close-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .city-gallery-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .city-gallery-image {
        height: 200px;
    }

    .city-viewer-header {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .city-viewer-title {
        font-size: clamp(14px, 4vw, 20px);
    }

    .city-viewer-counter {
        font-size: clamp(12px, 3vw, 16px);
        padding: 5px 12px;
    }

    .city-close-viewer-btn {
        width: 38px;
        height: 38px;
        font-size: 22px;
        top: 12px;
        right: 12px;
    }

    .city-image-slider {
        height: calc(100% - 100px);
        margin-top: 90px;
    }

    .city-slide {
        padding: 5px;
    }

    .city-slide-image {
        border-radius: 6px;
        border-width: 1px;
    }
}

/* Extra Small Mobile (iPhone SE, etc.) */
@media (max-width: 360px) {
    .global-presence-section {
        padding: 40px 12px;
    }

    .global-header {
        margin-bottom: 30px;
    }

    .global-title-light {
        font-size: 16px;
    }

    .global-title-bold {
        font-size: 18px;
    }

    .global-subtitle {
        font-size: 12px;
    }

    .global-map-container {
        padding: 12px;
    }

    .city-gallery-image {
        height: 180px;
    }
}

/* Scrollbar Styling for Gallery Modal */
.city-gallery-content::-webkit-scrollbar {
    width: 8px;
}

.city-gallery-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.city-gallery-content::-webkit-scrollbar-thumb {
    background: #CB2024;
    border-radius: 10px;
}

.city-gallery-content::-webkit-scrollbar-thumb:hover {
    background: #a01a1a;
}
/* ================================================
   MOBILE RESPONSIVE FIX - Complete Fix
   Fixes: Horizontal overflow + Large headings
   ================================================ */

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.content-wrapper {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* ================================================
   HEADING SIZES - MOBILE FIX
   ================================================ */

@media (max-width: 768px) {

    /* Hero heading */
    .hollow-text {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .hero-text p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-top: 8px !important;
    }

    /* Exhibition section headings */
    .title-light {
        font-size: 18px !important;
        letter-spacing: 3px !important;
    }

    .title-bold {
        font-size: 16px !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
    }

    /* Video section headings */
    .video-title-light {
        font-size: 18px !important;
        letter-spacing: 3px !important;
    }

    .video-title-bold {
        font-size: 16px !important;
        letter-spacing: 1px !important;
    }

    .video-subtitle {
        font-size: 13px !important;
    }

    /* Impact section */
    .impact-title h2 {
        font-size: 18px !important;
        letter-spacing: 1px !important;
    }

    .impact-subtitle {
        font-size: 16px !important;
    }

    /* Services section */
    #services .services-title-bold {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }

    #services .services-tagline {
        font-size: 13px !important;
    }

    /* Process section */
    .transform-title-bold {
        font-size: 22px !important;
        letter-spacing: 2px !important;
    }

    .transform-subtitle {
        font-size: 13px !important;
    }

    /* Why Propshop */
    .why-title {
        font-size: 18px !important;
        letter-spacing: 1px !important;
        margin-bottom: 25px !important;
    }

    /* Global presence */
    .global-title-light {
        font-size: 16px !important;
        letter-spacing: 2px !important;
    }

    .global-title-bold {
        font-size: 18px !important;
        letter-spacing: 1px !important;
    }

    .global-subtitle {
        font-size: 12px !important;
    }

    /* Testimonials */
    #testimonials h2 {
        font-size: 22px !important;
    }

    #testimonials p.subtitle {
        font-size: 13px !important;
    }

    /* Clients section */
    .clients-header h2 {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }

    .clients-header h2 span {
        font-size: 22px !important;
    }

    .clients-subtitle {
        font-size: 13px !important;
    }

    /* FAQ section */
    .faq-title {
        font-size: 16px !important;
        letter-spacing: 1px !important;
        margin-bottom: 25px !important;
    }

    .faq-eyebrow {
        font-size: 10px !important;
    }

    /* Connect banner */
    .connect-banner h2 {
        font-size: 16px !important;
        letter-spacing: 1px !important;
    }

    .connect-banner p {
        font-size: 12px !important;
    }

    /* Video CTA banner */
    .video-cta-title {
        font-size: 16px !important;
        letter-spacing: 0.5px !important;
    }

    .video-cta-desc {
        font-size: 12px !important;
    }

    /* Why section cards */
    .why-card-body h3 {
        font-size: 13px !important;
    }

    /* Paragraph text general */
    .impact-description {
        font-size: 13px !important;
        
    }

    .ps-para-text {
        font-size: 13px !important;
    }

    /* ── General overflow fixes ── */
    section,
    .hero,
    .impact-section,
    .exhibition-section,
    .video-gallery-section,
    .services-section,
    #services,
    .transform-section,
    .why-propshop-section,
    .global-presence-section,
    .clients-section,
    .alumni-section,
    .faq-section,
    .connect-banner,
    .video-cta-banner,
    .ps-para-section,
    #testimonials {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .rotating-gallery.grid-layout,
    .video-grid,
    .services-grid-new,
    .transform-grid,
    .why-propshop-grid,
    .global-map-grid,
    .global-map-container,
    .stats-grid,
    .impact-content-wrapper,
    .testimonial-carousel-wrapper,
    .hero-search-container,
    .search-inputs-wrapper,
    .why-bottom,
    .banner-content,
    .video-cta-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    #canvas-container canvas {
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

/* ================================================
   480px - Small Mobile
   ================================================ */
@media (max-width: 480px) {

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .hollow-text {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .title-light {
        font-size: 15px !important;
        letter-spacing: 2px !important;
    }

    .title-bold {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .video-title-light {
        font-size: 15px !important;
        letter-spacing: 2px !important;
    }

    .video-title-bold {
        font-size: 14px !important;
    }

    .impact-title h2 {
        font-size: 16px !important;
    }

    #services .services-title-bold {
        font-size: 18px !important;
        letter-spacing: 1.5px !important;
    }

    .transform-title-bold {
        font-size: 18px !important;
    }

    .why-title {
        font-size: 15px !important;
    }

    .global-title-light {
        font-size: 14px !important;
    }

    .global-title-bold {
        font-size: 16px !important;
    }

    #testimonials h2 {
        font-size: 18px !important;
    }

    .clients-header h2 {
        font-size: 16px !important;
    }

    .clients-header h2 span {
        font-size: 18px !important;
    }

    .faq-title {
        font-size: 14px !important;
    }

    .connect-banner h2 {
        font-size: 14px !important;
    }

    .video-cta-title {
        font-size: 14px !important;
    }

    /* All grids overflow fix */
    .rotating-gallery.grid-layout,
    .services-grid-new,
    .transform-grid,
    .why-propshop-grid,
    .global-map-grid,
    .video-grid,
    .stats-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
}

/* ================================================
   360px - Extra Small Mobile
   ================================================ */
@media (max-width: 360px) {

    .hollow-text {
        font-size: 0.95rem !important;
    }

    .title-bold,
    .video-title-bold {
        font-size: 13px !important;
    }

    .title-light,
    .video-title-light {
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
    }

    #services .services-title-bold {
        font-size: 16px !important;
    }

    .transform-title-bold {
        font-size: 16px !important;
    }

    .why-title {
        font-size: 14px !important;
    }

    .global-title-bold {
        font-size: 14px !important;
    }

    .global-title-light {
        font-size: 12px !important;
    }

    #testimonials h2 {
        font-size: 16px !important;
    }

    .clients-header h2 {
        font-size: 14px !important;
    }

    .clients-header h2 span {
        font-size: 15px !important;
    }

    .faq-title {
        font-size: 13px !important;
    }

    .connect-banner h2 {
        font-size: 13px !important;
    }

    .video-cta-title {
        font-size: 13px !important;
    }

    .impact-title h2 {
        font-size: 14px !important;
    }
}
.why-propshop-section {
    padding: 80px 50px;
    background: #000;
    position: relative;
}

.why-propshop-section::before,
.why-propshop-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203,32,36,0.4), transparent);
}
.why-propshop-section::before { top: 0; }
.why-propshop-section::after  { bottom: 0; }

.why-propshop-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Header ── */
.why-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #CB2024;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.why-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.25;
    margin: 0 0 50px;
}

.why-title span {
    color: #CB2024;
}

/* ── Grid ── */
.why-propshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(203,32,36,0.15);
    border: 1px solid rgba(203,32,36,0.15);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 50px;
}

/* ── Cards ── */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 36px 28px;
    background: #0a0a0a;
    position: relative;
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #CB2024;
    transition: width 0.4s ease;
}

.why-card:hover::after { width: 100%; }

.why-card:hover {
    background: #110000;
    box-shadow: inset 0 0 40px rgba(203,32,36,0.07);
}

/* Number */
.why-num {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    color: rgba(203,32,36,0.2);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.35s ease;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.why-card:hover .why-num {
    color: rgba(203,32,36,0.5);
}

/* Card body */
.why-card-body { padding-top: 6px; }

.why-card-body h3 {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    color: #d0d0d0;
    line-height: 1.5;
    margin: 0 0 14px;
    transition: color 0.3s ease;
}

.why-card:hover .why-card-body h3 { color: #fff; }

.why-line {
    width: 28px;
    height: 2px;
    background: rgba(203,32,36,0.35);
    border-radius: 2px;
    transition: width 0.4s ease, background 0.4s ease;
}

.why-card:hover .why-line {
    width: 48px;
    background: #CB2024;
}

/* ── Bottom strip ── */
.why-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    border: 1px solid rgba(203,32,36,0.2);
    border-radius: 12px;
      background: linear-gradient(135deg, #0d0d0d, #1a0000, #0d0d0d);
}

.why-desc {
    font-size: clamp(12px, 1vw, 15px);
    color: #888;
    line-height: 1.8;
    margin: 0;
    max-width: 780px !important;
}

.why-cta-btn {
    flex-shrink: 0;
    padding: 15px 30px;
    background: #CB2024;
    color: #fff;
    font-size: clamp(10px, 1vw, 10px);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(203,32,36,0.4);
    white-space: nowrap;
}

.why-cta-btn:hover {
    background: #a01a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(203,32,36,0.6);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .why-propshop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .why-propshop-section { padding: 65px 30px; }
    .why-bottom { flex-direction: column; text-align: center; padding: 28px 24px; gap: 24px; }
    .why-desc { max-width: 100%; }
    .why-cta-btn { width: 100%; }
}

@media (max-width: 768px) {
    .why-propshop-section { padding: 50px 18px; }
    .why-propshop-grid { grid-template-columns: 1fr; }
    .why-card { padding: 26px 20px; gap: 14px; }
    .why-num { font-size: 34px; }
    .why-card-body h3 { font-size: 14px; }
    .why-title { margin-bottom: 35px; }
}

@media (max-width: 480px) {
    .why-propshop-section { padding: 40px 14px; }
    .why-title { font-size: clamp(18px, 5.5vw, 26px); }
    .why-card { padding: 20px 16px; gap: 12px; }
    .why-num { font-size: 28px; }
    .why-card-body h3 { font-size: 13px; margin-bottom: 10px; }
    .why-bottom { padding: 22px 16px; }
    .why-desc { font-size: 13px; }
    .why-cta-btn { font-size: 12px; padding: 13px 20px; }
}

@media (max-width: 360px) {
    .why-propshop-section { padding: 35px 12px; }
    .why-num { font-size: 24px; }
    .why-card-body h3 { font-size: 12px; }
}
/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: 90px 50px;
    background: #000;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203,32,36,0.4), transparent);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.faq-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #CB2024;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.faq-title {
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0 0 55px;
}

.faq-title span {
    color: #CB2024;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(203,32,36,0.2);
    border-radius: 14px;
    overflow: hidden;
}

/* Each Item */
.faq-item {
    border-bottom: 1px solid rgba(203,32,36,0.15);
    transition: background 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.is-open {
    background: rgba(203,32,36,0.04);
}

/* Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(203,32,36,0.04);
}

.faq-question span {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.is-open .faq-question span {
    color: #fff;
}

/* Icon */
.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(203,32,36,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    background: transparent;
}

.faq-item.is-open .faq-icon {
    background: #CB2024;
    border-color: #CB2024;
    transform: rotate(45deg);
}

.faq-plus {
    font-size: 22px;
    font-weight: 300;
    color: #CB2024;
    line-height: 1;
    display: block;
    transition: color 0.3s ease;
}

.faq-item.is-open .faq-plus {
    color: #fff;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.35s ease;
    padding: 0 35px;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding: 0 35px 28px;
}

.faq-answer p {
    font-size: clamp(13px, 1.3vw, 15px);
    color: #888;
    line-height: 1.8;
    margin: 0;
    padding-left: 0;
    border-left: 2px solid #CB2024;
    padding-left: 18px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .faq-section { padding: 70px 30px; }
}

@media (max-width: 768px) {
    .faq-section { padding: 55px 18px; }
    .faq-question { padding: 22px 22px; }
    .faq-answer { padding: 0 22px; }
    .faq-item.is-open .faq-answer { padding: 0 22px 22px; }
    .faq-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .faq-section { padding: 45px 14px; }
    .faq-question { padding: 18px 18px; gap: 14px; }
    .faq-question span { font-size: 13px; }
    .faq-answer { padding: 0 18px; }
    .faq-item.is-open .faq-answer { padding: 0 18px 18px; }
    .faq-icon { width: 30px; height: 30px; }
    .faq-plus { font-size: 18px; }
    .faq-title { font-size: clamp(17px, 5vw, 22px); margin-bottom: 30px; }
}

@media (max-width: 360px) {
    .faq-section { padding: 35px 12px; }
    .faq-question { padding: 16px 15px; }
    .faq-question span { font-size: 12px; }
    .faq-answer p { font-size: 12px; }
}
.connect-banner {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 50px 0;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.2);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(100deg, rgba(0,0,0,0.85) 0%, rgba(203,32,36,0.2) 100%);
    z-index: 2;
}

.connect-banner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: #CB2024;
    z-index: 4;
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
}

.banner-text { flex: 1; }

.connect-banner h2 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.connect-banner p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.banner-button { flex-shrink: 0; }

.banner-btn {
    padding: 11px 26px;
    background: #CB2024;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(203,32,36,0.4);
    white-space: nowrap;
}

.banner-btn:hover {
    background: #a01a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203,32,36,0.6);
}

@media (max-width: 768px) {
    .connect-banner { margin: 35px 0; min-height: 100px; }
    .banner-content { flex-direction: column; text-align: center; padding: 25px 20px; gap: 16px; }
    .banner-btn { width: 100%; }
}

@media (max-width: 480px) {
    .banner-content { padding: 22px 16px; }
    .connect-banner h2 { font-size: 15px; }
    .connect-banner p { font-size: 12px; }
    .banner-btn { font-size: 12px; padding: 10px 20px; }
}