/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #767677 0%, #333333 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #767677 0%, #333333 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECRET LANDING PAGE STYLES === */
.secret-landing {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    position: relative;
    overflow: hidden;
    transition: all 1s ease-out;
}

.secret-landing.hide {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
}


.classified-text {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    animation: pulse 2s ease-in-out infinite;
}


/* Enhanced Access Code */
.access-code-container {
    background: rgba(0, 30, 0, 0.8);
    border: 1px solid #00ff41;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.code-display {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.code-digit {
    background: rgba(0, 20, 0, 0.9);
    border: 2px solid #00ff41;
    color: #00ff41;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.code-digit:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    transform: scale(1.05);
}

.code-digit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 255, 65, 0.1) 50%, transparent 51%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.code-digit:hover::before {
    opacity: 1;
    animation: scan 1s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Access Button */
.access-button {
    background: linear-gradient(135deg, #00ff41 0%, #00cc33 100%);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.access-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.access-button:hover::before {
    left: 100%;
}

.access-button:hover {
    background: linear-gradient(135deg, #00ff41 0%, #00ff41 100%);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.access-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 65, 0.3);
}

/* Warning message */
.warning-text {
    color: #ffd43b;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Glitch effect */
.glitch {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* === MAIN WEBSITE STYLES === */
/* .main-website {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.main-website.show {
    display: block;
    opacity: 1;
} */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.transparent {
    background: transparent;
    box-shadow: none;
}

.navbar {
    padding: 1rem 0;
}

.nav-link:hover {
    color: #0280aa; 
    background: rgba(102, 126, 234, 0.1);
}

.nav-link.active {
    color: #0f6148;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 12px;
            }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.5));
    }
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.nav-link:hover::after {
    width: 80%;
    animation: navGlow 1s ease-in-out infinite;
}

@keyframes navGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.header.transparent ,
.header.transparent .language-selector select {
    color: #fff !important;
}

.header.transparent:hover {
    color: #1caebb !important;
}

.header.transparent .logo {
    filter: none;
}

.header.transparent .language-selector select {
    background: #fff;
    border: 1px solid #e2e8f0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(128, 128, 137, 0.323) 100%), url('../images/31.png') no-repeat center center; */
    background: url('../images/31.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    display: block;
    align-items: center;
    margin-top: -20px;
    position: relative;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #141414 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #040404;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-title:hover {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #000000;
    transition: opacity 0.3s ease;
}

.hero-subtitle:hover {
    opacity: 1;
}

.cta-btn {
    background: linear-gradient(135deg, #b6b6b6 0%, #000000 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    border-radius: 12px;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    animation: ctaGlow 1s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    }
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    filter: brightness(1.2) contrast(1.2);
    animation: heroImageFloat 3s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: scale(1.05) rotate(1deg);
    }
    50% {
        transform: scale(1.08) rotate(2deg);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #fff;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
}

.section-title:hover {
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.6s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #515152 0%, #322f34 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(67, 69, 77, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
    animation: serviceGlow 1s ease-in-out infinite;
}

@keyframes serviceGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    animation: cardFloat 2s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #818183 0%, #353535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(77, 78, 78, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        transform: scale(1.15) rotate(7deg);
    }
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    z-index: 1;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #475569;
}

/* Requirements Section */
.requirements {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #2e2e2e 50%, #454545 100%);
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.requirements-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.requirements-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.requirements-text:hover {
    opacity: 1;
}

.requirements h2:hover {
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
    animation: requirementsGlow 2s ease-in-out infinite;
}

@keyframes requirementsGlow {
    0%, 100% {
        text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
    }
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #adadae 0%, #eeedef 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(75, 75, 77, 0.3);
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.faq-question:hover::before {
    width: 100%;
}

.faq-question:focus,
.faq-question:hover {
    color: #caf0ff;
    transform: translateX(5px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0 1rem;
    margin-top: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.open .faq-answer::before {
    opacity: 1;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
    margin-top: 1rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    position: relative;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    vertical-align: middle;
}

.icon-plus, .icon-close {
    width: 20px;
    height: 20px;
    stroke: #fff;
    background: none;
    margin-left: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.faq-item:hover .icon-plus,
.faq-item:hover .icon-close {
    stroke: #bbbbbc;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(180, 180, 181, 0.3));
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="currentColor" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.partners h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.partners-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #374151;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.partners-text:hover {
    color: #1e293b;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    flex: 0 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 150px;
    max-width: 200px;
    max-height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #676769 0%, #202021 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    z-index: 2;
}

.partner-logo {
    flex: 0 1 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    min-height: 100px;
    max-width: 140px;
    max-height: 140px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: grayscale(0.3);
    opacity: 0.9;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-card:hover .partner-name {
    color: #667eea;
    opacity: 1;
    transform: translateY(2px);
}

/* Ticketing Section */
.ticketing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #2e2e2e 50%, #454545 100%);
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.ticketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.ticketing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ticketing-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.ticketing-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
    color: #333;
}

.ticketing-info h2,
.ticketing-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ticketing-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.ticketing-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticketing-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticketing-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ticketing-step:hover::before {
    transform: scaleY(1);
}

.ticketing-step:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3f3f3f 0%, #080808 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(15, 15, 17, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control.textarea {
    min-height: 120px;
    resize: vertical;
}

.form-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    appearance: none;
    transition: all 0.3s ease;
    color: #333;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #363637 0%, #1a1a1b 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Combined Ticketing and Tracking Section */
.ticket-tracking-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
}

.ticket-tracking-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.ticket-tracking-form p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.ticket-tracking-form .form-group {
    margin-bottom: 1rem;
}

.ticket-tracking-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ticket-tracking-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.ticket-tracking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ticket-tracking-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.ticket-tracking-form .submit-btn {
    background: linear-gradient(135deg, #2c2c2c 0%, #131214 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-tracking-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ticket-tracking-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ticket-tracking-form .tracking-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticket-tracking-form .tracking-result h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.ticket-tracking-form .detail-item {
    display: flex;
    margin-bottom: 0.75rem;
}

.ticket-tracking-form .detail-label {
    font-weight: 600;
    min-width: 150px;
    color: #e2e8f0;
}

.ticket-tracking-form .detail-value {
    flex: 1;
    color: #fff;
}

/* Tracking Result Styles */
.tracking-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tracking-result h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item {
    display: flex;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.detail-label {
    font-weight: 600;
    min-width: 150px;
    color: #e2e8f0;
}

.detail-value {
    flex: 1;
    color: #fff;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.status-badge.open {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.status-badge.in-progress {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.status-badge.resolved {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.status-badge.closed {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
    color: white;
}

/* About Us Section */
.about-us-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.about-us-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2.5rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-us-info, .emergency-contact {
        width: 100%;
    }
    
    .emergency-contact {
        margin-top: 1.5rem;
        padding: 1rem;
    }
}

.about-us-photo {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    min-height: 300px;
    max-width: 350px;
    max-height: 350px;
}

.about-us-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: #fff;
    transition: all 0.3s ease;
    display: block;
    padding: 8px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.about-us-photo img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(17, 18, 18, 0.2);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    animation: photoFloat 3s ease-in-out infinite;
}

@keyframes photoFloat {
    0%, 100% {
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        transform: scale(1.08) rotate(3deg);
    }
}

.about-us-info {
    flex: 1;
}

.about-us-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-us-info p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    transition: color 0.3s ease;
    text-align: justify;
}

.about-us-info p:hover {
    color: #1e293b;
}

.about-us-info-text {
    text-align: justify;
}

.about-us-info ul {
    padding-left: 1.2rem;
    color: #2563eb;
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.about-us-info ul:hover {
    color: #1d4ed8;
}

/* Emergency Contact Styles */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.emergency-contact p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.emergency-contact a:hover {
    text-decoration: underline !important;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2b 0%, #18181a 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-logo img:hover {
    transform: scale(1.1);
    /* opacity: 1; */
    /* filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
    animation: footerGlow 2s ease-in-out infinite; */
}

@keyframes footerGlow {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255,255,255,0.5));
    }
}

.footer-info {
    text-align: center;
    color: #9ca3af;
    margin-top: 1rem;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-info p:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    animation: textGlow 1s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255,255,255,0.5);
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        transform: scale(1.05);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 1rem;
        border: none;
    }

    .dropdown-menu li a {
        color: #333;
        padding: 0.5rem 1rem;
        margin: 0.2rem 0;
        border-radius: 8px;
    }

    .dropdown-menu li a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        transform: translateX(5px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: #e2e8f0;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        filter: brightness(1.05) contrast(1.05);
    }

    .hero-image img:hover {
        transform: scale(1.02);
        filter: brightness(1.1) contrast(1.1);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-us-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .about-us-photo {
        margin-bottom: 1rem;
    }

    .about-us-info ul {
        text-align: left;
        margin: 0 auto;
        display: inline-block;
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .partner-card {
        flex: 0 1 130px;
        min-width: 110px;
        min-height: 110px;
        max-width: 150px;
        max-height: 150px;
        padding: 1rem;
    }

    .partner-logo {
        min-width: 70px;
        min-height: 70px;
        max-width: 90px;
        max-height: 90px;
        margin-bottom: 0.5rem;
    }

    .partner-logo img {
        max-width: 80px;
        max-height: 80px;
    }

    .partner-name {
        font-size: 0.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .faq-item {
        padding: 1rem;
        border-radius: 8px;
    }

    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-us-info h2 {
        font-size: 1.5rem;
    }

    .about-us-info p {
        font-size: 1rem;
    }

    .ticketing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ticketing-info,
    .ticketing-form {
        padding: 2rem;
    }

    .ticketing-steps {
        gap: 1rem;
    }

    .ticketing-step {
        padding: 1rem;
    }

    .ticket-tracking-form {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .ticket-tracking-form .detail-item {
        flex-direction: column;
    }

    .ticket-tracking-form .detail-label {
        min-width: auto;
        margin-bottom: 0.25rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .services h2, .about h2, .about-us-info h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        margin: 0 0.3rem;
        border-radius: 16px;
    }

    .partner-card {
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .partner-card:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    }

    .partner-logo img {
        border-radius: 12px;
        box-shadow: none;
    }

    .gallery-hero {
        padding: 120px 0 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .code-digit {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .classified-text {
        font-size: 1.2rem;
    }

    .access-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .code-display {
        gap: 0.3rem;
    }

    .code-digit {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .access-code-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .classified-text {
        font-size: 1rem;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-card {
        flex: 0 1 110px;
        min-width: 90px;
        min-height: 90px;
        max-width: 120px;
        max-height: 120px;
        padding: 0.8rem;
    }

    .partner-logo {
        min-width: 60px;
        min-height: 60px;
        max-width: 70px;
        max-height: 70px;
    }

    .partner-logo img {
        max-width: 60px;
        max-height: 60px;
    }

    .partner-name {
        font-size: 0.7rem;
    }
}

/* End of styles */