/* ==================== */
/* CSS Reset & Variables */
/* ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-dark-gray: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-light: #f2d06b;
    --color-gold-dark: #c9a959;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --color-gray-light: #e0e0e0;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

/* ==================== */
/* Background Video & Canvas */
/* ==================== */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

/* Mobile optimization for video background */
@media (max-width: 768px) {
    #background-video {
        display: block;
    }

    .video-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    display: block;
    background: transparent;
}

main, nav, footer {
    position: relative;
    z-index: 1;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== */
/* Typography */
/* ==================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--color-gold-light);
}

/* ==================== */
/* Utility Classes */
/* ==================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support - Disabled for awards ceremony experience */
/* Uncomment below to respect system accessibility settings */
/*
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}
*/

/* ==================== */
/* Navigation */
/* ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    gap: var(--spacing-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo:hover img,
.nav-logo:focus img {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.nav-call-btn:hover,
.nav-call-btn:focus {
    background: var(--color-gold-light);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav-call-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-logo img {
        height: 50px;
    }

    .nav-call-btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: var(--spacing-3xl) var(--spacing-lg);
        padding-top: 80px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-link {
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        display: block;
        font-size: 1.1rem;
        color: var(--color-gray-light);
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--color-gold);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover::before,
    .nav-link:focus::before {
        transform: scaleY(1);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--color-gold);
        padding-left: calc(var(--spacing-md) + 10px);
    }

    .nav-link::after {
        display: none;
    }
}

/* ==================== */
/* Buttons */
/* ==================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-gold-light);
    color: var(--color-black);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* ==================== */
/* Hero Section */
/* ==================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    padding-top: calc(80px + var(--spacing-3xl));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 800px;
    height: 800px;
    background: url('Assets/Images/award.webp') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
    z-index: 99;
}

.hero-section::after {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 800px;
    height: 800px;
    background: url('Assets/Images/award.webp') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
    z-index: 99;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 100;
}

.hero-logo-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.hero-logo-banner img {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.5));
    transition: var(--transition);
}

.hero-logo-banner img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 50px rgba(212, 175, 55, 0.7));
}

.hero-certification-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 89, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.hero-certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold-light);
}

.certification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.certification-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.hero-certification-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    text-align: center;
    background: linear-gradient(
        90deg,
        #d4af37 0%,
        #f2d06b 25%,
        #fff4a3 50%,
        #f2d06b 75%,
        #d4af37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

/* Show line break on both desktop and mobile */
.hero-title .mobile-break {
    display: inline;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    text-align: center;
}

.hero-certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.certificate-item {
    flex: 0 0 auto;
    max-width: 150px;
    transition: var(--transition);
}

.certificate-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: var(--spacing-xs);
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-item:hover img {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-text {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-2xl) var(--spacing-md);
        padding-top: calc(60px + var(--spacing-2xl));
        min-height: auto;
    }

    .hero-section::before,
    .hero-section::after {
        width: 300px;
        height: 300px;
        opacity: 0.08;
    }

    .hero-section::before {
        left: -100px;
    }

    .hero-section::after {
        right: -100px;
    }

    .hero-logo-banner {
        margin-bottom: var(--spacing-lg);
    }

    .hero-logo-banner img {
        max-width: 280px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-tagline {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }

    .hero-certificates {
        gap: var(--spacing-sm);
    }

    .certificate-item {
        max-width: 100px;
    }

    .hero-certification-badge {
        flex-direction: column;
        padding: var(--spacing-md);
        text-align: center;
    }

    .hero-certification-badge span {
        font-size: 0.8rem;
    }

    .award-logo {
        min-height: 150px;
        padding: var(--spacing-md);
    }

    .award-logo img {
        max-width: 140px;
        max-height: 120px;
    }
}

/* ==================== */
/* Section Styles */
/* ==================== */

section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.section-intro {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-gray-light);
    line-height: 1.8;
}

.section-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

/* ==================== */
/* Awards Section */
/* ==================== */

.awards-section {
    padding: var(--spacing-3xl) 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.award-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.award-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(10, 10, 10, 0.4);
    border-radius: var(--border-radius);
    min-height: 200px;
    width: 100%;
}

.award-logo img {
    max-width: 180px;
    max-height: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.award-header {
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: var(--spacing-md);
    text-align: center;
}

.award-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.award-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    font-style: italic;
    text-align: center;
}

.award-body p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-light);
    line-height: 1.8;
}

.award-subheading {
    font-size: 1.25rem;
    color: var(--color-gold-light);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.award-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.award-list li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--color-gray-light);
    line-height: 1.7;
}

.award-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.award-closing {
    font-style: italic;
    color: var(--color-white);
    margin-top: var(--spacing-lg);
}

.award-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* About Section */
/* ==================== */

.about-section {
    padding: var(--spacing-3xl) 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.vm-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.vm-title {
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.vm-card p {
    color: var(--color-gray-light);
    line-height: 1.8;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--color-gray-light);
    line-height: 1.7;
}

.vm-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Directors Section */

.directors-section {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-2xl);
}

.directors-title {
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.director-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(10, 10, 10, 0.4);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.director-image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-name {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
}

.director-position {
    font-size: 1rem;
    color: var(--color-gray-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .director-image {
        width: 150px;
        height: 150px;
    }

    .director-name {
        font-size: 1.25rem;
    }
}

/* ==================== */
/* Videos Section */
/* ==================== */

.videos-section {
    padding: var(--spacing-3xl) 0;
}

.video-content {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-cta {
    text-align: center;
}

/* ==================== */
/* Gallery Section */
/* ==================== */

.gallery-section {
    padding: var(--spacing-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
}

/* ==================== */
/* Lightbox */
/* ==================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-close:focus {
    transform: rotate(90deg);
    color: var(--color-gold-light);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== */
/* Testimonials Display */
/* ==================== */

.testimonials-display-section {
    background: rgba(26, 26, 26, 0.4);
    padding: var(--spacing-3xl) 0;
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    max-width: 952px; /* 2 cards (400px * 2) + gap (32px) + buttons (60px * 2) */
    padding-left: 60px;
    padding-right: 60px;
}

.testimonials-slider {
    /* Swiper handles layout - removed flex properties */
}

.testimonials-slider .testimonial-item {
    flex: 0 0 auto;
    width: 400px;
    height: 400px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.testimonials-slider .testimonial-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 200px;
}

.quote-icon {
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.testimonial-text {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
    flex: 1;
}

.testimonial-text::-webkit-scrollbar {
    width: 6px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 3px;
}

.testimonial-text::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

.testimonial-author {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.author-name {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-align: center;
}

.author-title {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.author-company {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        max-width: 400px; /* 1 card (300px) + buttons (50px * 2) */
        padding-left: 50px;
        padding-right: 50px;
    }
    .testimonials-slider .testimonial-item {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-wrapper {
        max-width: 370px; /* 1 card (280px) + buttons (45px * 2) */
        padding-left: 45px;
        padding-right: 45px;
    }
    .testimonials-slider .testimonial-item {
        width: 280px;
        height: 400px;
    }
}

/* ==================== */
/* Testimonials Form Section */
/* ==================== */

.testimonials-section {
    background: rgba(26, 26, 26, 0.3);
    padding: var(--spacing-3xl) 0;
}

.testimonial-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-form {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.testimonial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonial-form .form-group {
    display: flex;
    flex-direction: column;
}

.testimonial-form label {
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.testimonial-form input,
.testimonial-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-form textarea {
    resize: vertical;
    min-height: 120px;
}

.testimonial-form button[type="submit"] {
    margin-top: var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .testimonial-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* Contact Section */
/* ==================== */

.contact-section {
    background: rgba(26, 26, 26, 0.5);
    padding: var(--spacing-3xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    min-width: 0;
    overflow-wrap: break-word;
}

.contact-label {
    font-size: 1.125rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.contact-item p,
.contact-item a {
    color: var(--color-gray-light);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-social a {
    color: var(--color-gold);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social a:hover {
    color: var(--color-gold-light);
    transform: translateY(-3px);
}

/* Contact Form */

.contact-form {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gold-light);
    font-weight: 500;
}

.required {
    color: var(--color-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================== */
/* Footer */
/* ==================== */

.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--color-gold);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #f2d06b;
    transform: translateY(-3px);
}

.footer-text {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-text a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* ==================== */
/* Toast Notification */
/* ==================== */

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius);
    font-weight: 600;
    z-index: 3000;
    transition: bottom 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.toast.show {
    bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .toast {
        width: calc(100% - 2rem);
        max-width: 400px;
    }
}


/* ==================== */
/* Awards CTA */
/* ==================== */

.awards-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ==================== */
/* News Section */
/* ==================== */

.news-section {
    padding: var(--spacing-3xl) 0;
}

.news-slider-wrapper {
    position: relative;
    max-width: 1214px; /* 3 cards (350px * 3) + gaps (32px * 2) + buttons (50px * 2) */
    overflow: hidden;
    margin: var(--spacing-xl) auto;
    padding: 0 50px;
}

.news-slider {
    /* Swiper handles layout - removed flex properties */
}

.news-slider .news-card {
    min-width: 350px;
    flex-shrink: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-slider .news-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.news-slider .news-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.news-slider .news-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-slider .news-card:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-slider .news-info {
    padding: 1.5rem;
}

.news-slider .news-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slider .news-date {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.news-slider .news-excerpt {
    color: var(--color-gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .news-slider .news-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .news-slider .news-card {
        min-width: 260px;
    }
}

/* ==================== */
/* Video Slider */
/* ==================== */

.video-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: var(--spacing-xl) auto;
    padding: 0 50px;
}

.video-slider {
    /* Swiper handles layout - removed flex properties */
}

.video-slider .video-card {
    min-width: 500px;
    flex-shrink: 0;
    cursor: pointer;
}

.video-slider .video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.video-slider .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.video-slider .video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-slider .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.video-slider .video-card:hover .play-button {
    background: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==================== */
/* Gallery Slider */
/* ==================== */

.gallery-slider-wrapper {
    position: relative;
    max-width: 1124px; /* 3 images (320px * 3) + gaps (32px * 2) + buttons (50px * 2) + padding */
    overflow: hidden;
    margin: var(--spacing-xl) auto;
    padding: 0 50px;
}

.gallery-slider {
    /* Swiper handles layout - removed flex properties */
}

.gallery-slide {
    flex: 0 0 auto;
    width: 320px;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* ==================== */
/* Slider Buttons */
/* ==================== */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: var(--color-black);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

/* ==================== */
/* Section CTA */
/* ==================== */

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ==================== */
/* Contact Info Grid */
/* ==================== */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-grid .contact-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 0;
    overflow-wrap: break-word;
}

.contact-info-grid .contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
}

.contact-info-grid .contact-label {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.contact-info-grid .contact-item p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-info-grid .contact-item a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-info-grid .contact-item a:hover {
    color: var(--color-gold);
}

/* ==================== */
/* Responsive Styles */
/* ==================== */

@media (max-width: 768px) {
    .video-slider .video-card {
        min-width: 320px;
    }

    .gallery-slider-wrapper {
        max-width: 380px; /* 1 image (280px) + buttons (50px * 2) */
        padding: 0 50px;
    }

    .gallery-slide {
        width: 280px;
    }

    .video-slider-wrapper {
        padding: 0 50px;
    }

    .news-slider-wrapper {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-btn-prev {
        left: 5px;
    }

    .slider-btn-next {
        right: 5px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
}

/* Specific fix for devices with widths 360px-430px */
@media (max-width: 480px) {
    .contact-info-grid {
        padding: 0 var(--spacing-xs);
    }

    .contact-info-grid .contact-item {
        padding: var(--spacing-md);
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9375rem;
        padding: 0.75rem;
    }

    .slider-btn-prev {
        left: 3px;
    }

    .slider-btn-next {
        right: 3px;
    }

    .video-slider-wrapper {
        padding-left: 45px;
        padding-right: 45px;
    }

    .news-slider-wrapper {
        padding-left: 45px;
        padding-right: 45px;
    }

    .video-slider .video-card {
        min-width: 280px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-info-grid {
        max-width: 100%;
        padding: 0 var(--spacing-lg);
    }
}

/* ==================== */
/* Pagination */
/* ==================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    padding: 2rem 1rem;
    max-width: 100%;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--color-gray-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 700;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--color-gray);
    font-weight: 600;
}

/* Pagination Responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 0.5rem;
        margin: 2rem auto;
        padding: 1.5rem 0.5rem;
    }

    .pagination-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }

    .pagination-btn svg {
        width: 16px;
        height: 16px;
    }

    .pagination-numbers {
        gap: 0.25rem;
    }

    .pagination-number {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    /* Hide text on mobile, show only icons */
    .pagination-prev span,
    .pagination-next span {
        display: none;
    }
}

@media (max-width: 480px) {
    .pagination-number {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    /* Show only first, last, and current page on very small screens */
    .pagination-numbers .pagination-number:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }

    /* Hide award decorations on very small screens */
    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    /* Hero section fixes for small mobile devices */
    .hero-section {
        padding: var(--spacing-xl) var(--spacing-sm);
        padding-top: calc(60px + var(--spacing-xl));
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-tagline {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-logo-banner img {
        max-width: 220px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ==================== */
/* Page First Section - Add navbar offset */
/* ==================== */

.page-first-section {
    padding-top: calc(80px + var(--spacing-3xl)) !important;
}

@media (max-width: 992px) {
    .page-first-section {
        padding-top: calc(80px + var(--spacing-2xl)) !important;
    }
}

@media (max-width: 768px) {
    .page-first-section {
        padding-top: calc(60px + var(--spacing-xl)) !important;
    }
}

/* ==================== */
/* Global Section Spacing - All Devices */
/* ==================== */

/* Tablet and below - reduce section spacing */
@media (max-width: 992px) {
    .awards-section,
    .about-section,
    .news-section,
    .videos-section,
    .gallery-section,
    .testimonials-display-section,
    .testimonials-section,
    .contact-section {
        padding: var(--spacing-2xl) 0;
    }
}

/* Mobile - further reduce section spacing */
@media (max-width: 768px) {
    .awards-section,
    .about-section,
    .news-section,
    .videos-section,
    .gallery-section,
    .testimonials-display-section,
    .testimonials-section,
    .contact-section {
        padding: var(--spacing-xl) 0;
    }
}

/* ==================== */
/* Swiper Overrides */
/* ==================== */

/* Maintain custom slide widths */
.news-slider .swiper-slide {
    width: 350px;
    flex-shrink: 0;
}

.testimonials-slider .swiper-slide {
    width: 400px;
    flex-shrink: 0;
}

.video-slider .swiper-slide {
    width: 500px;
    flex-shrink: 0;
}

.gallery-slider .swiper-slide {
    width: 320px;
    flex-shrink: 0;
}

/* Responsive slide widths */
@media (max-width: 768px) {
    .news-slider .swiper-slide {
        width: 280px;
    }

    .testimonials-slider .swiper-slide {
        width: 300px;
    }

    .video-slider .swiper-slide {
        width: 100%;
        max-width: 360px;
    }

    .gallery-slider .swiper-slide {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .news-slider .swiper-slide {
        width: 260px;
    }

    .testimonials-slider .swiper-slide {
        width: 280px;
    }

    .video-slider .swiper-slide {
        width: 100%;
        max-width: 300px;
    }

    .gallery-slider .swiper-slide {
        width: 260px;
    }
}

/* Match button disabled state */
.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Grab cursor for draggable sliders */
.swiper-container-horizontal > .swiper-wrapper {
    cursor: grab;
}

.swiper-container-horizontal > .swiper-wrapper:active {
    cursor: grabbing;
}

/* Maintain transitions for hover effects */
.swiper-slide {
    transition: transform 0.3s ease;
}
