/* Global Styles */
:root {
    --primary-color: #e6b800;
    --secondary-color: #8b4513;
    --dark-color: #222;
    --light-color: #f4f4f4;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #d4a700;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

.header-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

#menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    transition: all 0.3s ease;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.desktop-cta {
    display: flex;
    margin-left: auto;
}

.mobile-cta {
    display: none !important;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.nav-container {
    background-color: rgba(51, 51, 51, 0.5);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-item a {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: -0.2px;
    padding: 8px 12px;
    border-radius: 50px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-icon i {
    font-size: 0.9rem;
}

.nav-text {
    position: relative;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover .nav-text::after {
    width: 100%;
}

.nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 184, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.nav-item:hover a {
    color: var(--primary-color);
}

.nav-item:hover a::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item:hover .nav-icon {
    transform: translateY(-2px) scale(1.1);
}

.nav-item.active a {
    background-color: rgba(230, 184, 0, 0.15);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(230, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.nav-item.active .nav-icon {
    color: var(--primary-color);
}

.nav-item.active .nav-text::after {
    width: 100%;
}

.cta-buttons {
    display: flex;
}

.cta-buttons .btn {
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    min-width: 120px;
}

.btn.login {
    background: rgba(230, 184, 0, 0.05);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(230, 184, 0, 0.1);
}

.btn.login:hover {
    background: rgba(230, 184, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 184, 0, 0.25);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
    transition: all 0.6s ease;
}

.btn.login::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a700 100%);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn.login:hover::before {
    left: 100%;
}

.btn.login:hover::after {
    opacity: 1;
}

.btn.register {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a700 100%);
    color: #333;
    border: none;
    box-shadow: 0 4px 12px rgba(230, 184, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn.register::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn.register:hover {
    background: linear-gradient(135deg, #d4a700 0%, var(--primary-color) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(230, 184, 0, 0.4);
    color: #000;
}

.btn.register:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn.register:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn i {
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.btn.login i {
    color: var(--primary-color);
}

.btn.login:hover i {
    color: #fff;
}

.btn.register i {
    color: #333;
}

.btn:hover i {
    transform: translateX(4px) scale(1.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(4px) scale(1.2);
    }
    50% {
        transform: translateX(4px) scale(1.4);
    }
    100% {
        transform: translateX(4px) scale(1.2);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/hero-bg.webp') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background-color: #222;
}

.featured-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.game-card p {
    padding: 0 20px 20px;
    color: #ccc;
}

.game-card .btn {
    margin: 0 20px 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #fff;
}

.feature p {
    color: #ccc;
}

/* Latest News Section */
.latest-news {
    padding: 80px 0;
    background-color: #222;
}

.latest-news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.news-card p {
    padding: 0 20px 20px;
    color: #ccc;
}

.news-card .btn {
    margin: 0 20px 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial p {
    margin-bottom: 20px;
    color: #ccc;
    font-style: italic;
}

.testimonial p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.3;
}

.client h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client p {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Footer Section */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: #333;
    transform: translateY(-5px);
}

.social-media a:last-child {
    background-color: #25d366;
    animation: pulse 2s infinite;
}

.social-media a:last-child:hover {
    background-color: #128c7e;
    animation: none;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #777;
}

.footer-bottom-links a {
    color: #777;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background-color: #222;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon-wrapper {
    background-color: var(--primary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover i {
    color: #333;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.info-card p {
    color: #ccc;
    margin-bottom: 10px;
}

.info-card .btn {
    margin-top: 15px;
}

.contact-form {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.form-header {
    background: linear-gradient(135deg, #e6b800 0%, #8b4513 100%);
    padding: 30px;
    text-align: center;
    color: #333;
}

.form-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-form form {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #222;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(230, 184, 0, 0.3);
    outline: none;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-agreement label {
    color: #ccc;
    font-size: 0.9rem;
}

.form-agreement a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group button {
    background: linear-gradient(135deg, #e6b800 0%, #d4a700 100%);
    color: #333;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-transform: uppercase;
}

.form-group button i {
    font-size: 1.2rem;
}

.form-group button:hover {
    background: linear-gradient(135deg, #d4a700 0%, #c09600 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.1rem;
    color: #ccc;
}

.social-media-section {
    padding: 80px 0;
    background: linear-gradient(to right, #1a1a1a, #222, #1a1a1a);
}

.social-media-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.social-media-text {
    flex: 1;
    min-width: 300px;
}

.social-media-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.social-media-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.social-media-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-benefit:hover {
    background-color: rgba(230, 184, 0, 0.1);
    transform: translateY(-5px);
}

.social-benefit i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-benefit span {
    color: #fff;
    font-weight: 500;
}

.social-media-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    min-width: 300px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.social-icon-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b4513 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-icon:hover .social-icon-inner::before {
    opacity: 1;
}

.social-icon i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon span {
    font-weight: 500;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover span {
    color: var(--primary-color);
}

.map-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/map-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.map-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.map-info {
    flex: 1;
    min-width: 300px;
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.map-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.map-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.map-info > p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-detail:hover {
    background-color: rgba(230, 184, 0, 0.1);
    transform: translateX(5px);
}

.location-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.location-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.location-detail p {
    color: #ccc;
    line-height: 1.6;
}

.map-container {
    flex: 2;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-sizing: border-box;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    display: block;
}

/* FAQ Styles */
.faq {
    padding: 80px 0;
    background-color: #222;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-header p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.faq-category {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category.active,
.faq-category:hover {
    background-color: var(--primary-color);
    color: #333;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon i {
    color: #fff;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #2a2a2a;
}

.faq-answer p {
    color: #ccc;
    margin: 0;
    padding: 20px 0;
}

.faq-answer ul,
.faq-answer ol {
    color: #ccc;
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-item.active .faq-question {
    background-color: #3a3a3a;
}

.faq-item.active .toggle-icon {
    background-color: var(--primary-color);
}

.faq-item.active .toggle-icon i {
    color: #333;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }
    
    .header-bottom {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        margin: 0;
    }
    
    .header-bottom.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding-top: 15px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .mobile-cta {
        display: flex !important;
    }
    
    .nav-container {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 5px;
        background-color: rgba(51, 51, 51, 0.7);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        gap: 8px;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-item a {
        justify-content: center;
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    #menu-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    #menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
    
    .header-top {
        padding: 5px 0;
    }
    
    .nav-container {
        padding: 3px;
    }
    
    nav ul {
        padding: 5px 0;
    }
    
    .nav-item a {
        padding: 8px 10px;
    }
    
    .nav-icon {
        margin-right: 8px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
    
    /* Contact page responsive */
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-media-content {
        flex-direction: column;
    }
    
    .social-media-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .social-media-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 100px;
    }
    
    .contact-form form {
        padding: 20px;
    }
    
    .map-content {
        flex-direction: column;
    }
    
    .map-info {
        margin-bottom: 30px;
    }
    
    .faq-categories {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .faq-category {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .question-content {
        flex: 1;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 35px;
    }
    
    .nav-container {
        border-radius: 8px;
    }
    
    .nav-item a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .nav-icon i {
        font-size: 0.9rem;
    }
    
    .mobile-cta {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-cta .btn {
        font-size: 0.9rem;
        padding: 8px 12px;
        min-width: 110px;
        flex: 1;
        max-width: 150px;
    }
    
    .mobile-cta .btn i {
        font-size: 0.9rem;
    }
    
    #menu-toggle {
        height: 20px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    /* Contact page small screen responsive */
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .form-header {
        padding: 20px 15px;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .social-benefit {
        padding: 10px;
    }
    
    .social-icon {
        width: 80px;
    }
    
    .social-icon-inner {
        width: 60px;
        height: 60px;
    }
    
    .location-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-detail i {
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .question-icon {
        display: none;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: block;
}

.modal-content {
    background-color: #222;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    animation: slideDown 0.3s forwards;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ccc;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(230, 184, 0, 0.3);
}

.btn.full-width {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {transform: translateY(-50px);}
    to {transform: translateY(0);}
}
