* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --black: #000;
    --white: #fff;
    --gray-light: #f8f9fa;
    --gray-medium: #666;
    --gray-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
    IMPROVED HEADER SECTION
============================================ */

.main-header {
    background-color: var(--black);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Hamburger Icon Animation */
.mobile-menu-btn i {
    transition: all 0.3s ease;
}

.mobile-menu-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.mobile-menu-btn.active i {
    color: var(--black);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ============================================
    RESPONSIVE DESIGN - MOBILE
============================================ */

@media (max-width: 768px) {
    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide Desktop Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        border-left: 2px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Mobile Menu Close Button */
    /* .nav-links::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: var(--white);
        background: rgba(255, 215, 0, 0.1);
        border: 2px solid rgba(255, 215, 0, 0.3);
        border-radius: 8px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    } */
    
    .nav-links::before:hover {
        background: var(--primary-gold);
        color: var(--black);
        border-color: var(--primary-gold);
        transform: rotate(90deg);
    }
    
    /* Mobile Navigation Links */
    .nav-links a {
        width: 100%;
        padding: 18px 20px;
        border-radius: 8px;
        /* margin-bottom: 8px; */
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        font-size: 16px;
        display: flex;
        align-items: center;
        /* gap: 15px; */
    }
    
    .nav-links a::before {
        content: '';
        width: 4px;
        height: 20px;
        background: var(--primary-gold);
        border-radius: 2px;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        padding-left: 25px;
        color: var(--primary-gold);
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        opacity: 1;
    }
    
    /* Mobile Menu Title */
    /* .nav-links::after {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-gold);
        letter-spacing: 1px;
    } */
    
    /* Logo Adjustment */
    .logo img {
        height: 42px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .main-header.scrolled {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: 100%;
    }
    
    .logo img {
        height: 38px;
    }
    
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 16px 18px;
    }
}

/* ============================================
    MOBILE DRAWER ANIMATIONS
============================================ */

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.nav-links.active {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger animation for menu items */
@media (max-width: 768px) {
    .nav-links a {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
    ADDITIONAL ENHANCEMENTS
============================================ */

/* Active state for current page on mobile */
@media (max-width: 768px) {
    .nav-links a.active {
        background: rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.4);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }
}

/* Desktop hover effects enhancement */
@media (min-width: 769px) {
    .nav-links a {
        position: relative;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--primary-gold);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links a.active::before {
        opacity: 1;
    }
}

/* ============================================
    END OF HEADER STYLES
============================================ */

/* ============================================
   IMPROVED FOOTER SECTION - Column Based Design
============================================ */

footer {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold) 50%, 
        transparent 100%);
}

/* Top Notice Bar - Enhanced */
.footer-notice {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 165, 0, 0.05) 100%);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-logo {
    flex-shrink: 0;
}

.notice-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.notice-logo img:hover {
    transform: scale(1.05);
}

.notice-text {
    flex: 1;
}

.notice-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.notice-text strong {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 17px;
}

.notice-text a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.notice-text a:hover {
    color: var(--secondary-gold);
    border-bottom-color: var(--secondary-gold);
}

/* Trust Badges Section - Improved */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
}

.trust-badges img {
    height: 45px;
    width: auto;
    opacity: 0.6;
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(200%);
}

.trust-badges img:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0%) brightness(100%);
}

/* Main Footer Content - Column Layout */
.footer-main-content {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Column 1 - About Section */
.footer-column.about {
    padding-right: 20px;
}

.footer-column h3 {
    color: var(--primary-gold);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Links - Improved */
.social-links {
    display: flex;
    gap: 15px;
    padding: 0;
    border: none;
    justify-content: flex-start;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover i {
    color: var(--black);
}

/* Footer Links Columns */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links-list a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    padding-left: 25px;
}

.footer-links-list a:hover::before {
    transform: translateX(3px);
}

/* Responsible Gaming Section */
.footer-responsible-gaming {
    padding: 35px 0;
    background: rgba(255, 215, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.responsible-gaming-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming-content h4 {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.responsible-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.responsible-links a:hover {
    color: var(--primary-gold);
}

.responsible-links a:hover::after {
    width: 100%;
}

/* Disclaimer Section - Enhanced */
.disclaimer {
    background: rgba(0, 0, 0, 0.5);
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

.disclaimer-content strong {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 15px;
}

.disclaimer-content a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-content a:hover {
    color: var(--secondary-gold);
    border-bottom-color: var(--secondary-gold);
}

/* Footer Bottom - Address & Copyright */
.footer-bottom {
    padding: 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-address i {
    color: var(--primary-gold);
    font-size: 18px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo-bottom {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-bottom img {
    height: 40px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.footer-logo-bottom img:hover {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1200px) {
    .footer-columns {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
    }
    
    .footer-column.contact {
        grid-column: span 3;
        text-align: center;
    }
    
    .footer-column.contact .footer-links-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column.about {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .notice-logo img {
        height: 45px;
    }
    
    .notice-text p {
        font-size: 15px;
    }
    
    .trust-badges {
        gap: 25px;
        padding: 30px 20px;
    }
    
    .trust-badges img {
        height: 35px;
    }
    
    .footer-main-content {
        padding: 40px 0 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column.about {
        grid-column: span 1;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links-list a {
        padding-left: 0;
    }
    
    .footer-links-list a::before {
        display: none;
    }
    
    .footer-links-list a:hover {
        padding-left: 0;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .responsible-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .disclaimer-content p {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .footer-address {
        flex-direction: column;
        gap: 8px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .notice-logo img {
        height: 38px;
    }
    
    .notice-text p {
        font-size: 14px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badges img {
        height: 28px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    .footer-column p {
        font-size: 14px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-links-list a {
        font-size: 14px;
    }
    
    .responsible-gaming-content h4 {
        font-size: 16px;
    }
    
    .responsible-links a {
        font-size: 14px;
    }
    
    .footer-logo-bottom img {
        height: 32px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   END OF FOOTER STYLES
============================================ */


/* Login Section - Centered */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: #2b0057;
    background: linear-gradient(135deg, #2b0057 0%, #1a0038 100%);
    position: relative;
    overflow: hidden;
}

.login-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=2064&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box .at-login {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
    color: #2b0057;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2b0057;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 12px;
    color: #2b0057;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.login-links {
    margin-top: 12px;
    font-size: 15px;
}

.login-links a {
    color: #2b0057;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.login-links a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.recaptcha-notice {
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    color: #666;
    line-height: 1.5;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Content Section */
.content-section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
    color: #2b0057;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #FFD700;
    border-radius: 3px;
}

/* Hero Section with Image & Text */
.hero-section {
    padding: 40px 0;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-section h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #2b0057;
    line-height: 1.2;
    font-weight: 800;
}

.hero-section h1 span {
    color: #FFD700;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.highlight {
    color: #FFD700;
    font-weight: 700;
}

/* Features with Image & Text Layout */
.feature-image-text {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.feature-image-text.reverse {
    flex-direction: row-reverse;
}

.feature-image-text .text-content {
    flex: 1;
}

.feature-image-text .image-content {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-image-text .image-content img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-image-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2b0057;
    font-weight: 700;
}

.feature-image-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.feature-image-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.feature-image-text li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

/* Grid Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 20px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: #2b0057;
    margin-bottom: 20px;
    font-size: 26px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.feature-card h3 i {
    margin-right: 15px;
    font-size: 28px;
    color: #FFD700;
}

.feature-card p, .feature-card ul {
    color: #555;
    line-height: 1.7;
}

.feature-card ul {
    padding-left: 20px;
}

.feature-card li {
    margin-bottom: 10px;
}

/* Rich Text Content */
.rich-text-content {
    background: #fff;
    border-radius: 25px;
    padding: 60px;
    margin: 20px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.rich-text-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2b0057;
    font-weight: 700;
    text-align: center;
}

.rich-text-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.rich-text-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.rich-text-content li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Swiper Slider */
.games-slider {
    margin: 20px 0;
    padding: 30px 0;
}

.swiper {
    width: 100%;
    padding: 40px 0;
}

.swiper-slide {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 420px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slide-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.slide-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h4 {
    color: #2b0057;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.slide-content p {
    color: #666;
    line-height: 1.6;
}

/* How it Works - Mixed Layout */
.how-it-works {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.step {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 360px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #2b0057;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.step h4 {
    margin: 25px 0 20px;
    color: #2b0057;
    font-size: 22px;
    font-weight: 700;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #2b0057;
    background-color: #f9f9f9;
    font-size: 18px;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-question i {
    transition: transform 0.5s ease;
    color: #FFD700;
    font-size: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(43, 0, 87, 0.95), rgba(43, 0, 87, 0.85));
    margin-top: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=2064&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cta-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2b0057;
    font-weight: 800;
    font-size: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
}


/* Floating WhatsApp Button */
.floating_btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.text_icon {
    margin-top: 8px;
    color: white;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 65px;
    height: 65px;
    font-size: 32px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 8px 20px rgba(66, 219, 135, 0.5);
}

@keyframes pulsing {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 219, 135, 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(66, 219, 135, 0);
    }
}

/* Testimonial Section Styles */
.gold365-testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0038 0%, #2b0057 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gold365-testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1440&q=80') center/cover no-repeat;
    opacity: 0.08;
    z-index: 1;
}

@media (max-width: 480px) {
    .gold365-testimonial-section::before {
        background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=480&q=80');
    }
}

.gold365-testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gold365-testimonial-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
    color: #FFD700;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gold365-testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #FFD700;
    border-radius: 3px;
}

.gold365-testimonial-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 60px auto;
    line-height: 1.6;
}

/* Testimonial Cards */
.gold365-testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.gold365-testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gold365-testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.gold365-testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.3);
}

.gold365-quote-icon {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.gold365-testimonial-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

/* User Info */
.gold365-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gold365-user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.gold365-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold365-user-details {
    flex: 1;
}

.gold365-user-name {
    color: #FFD700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gold365-user-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 8px;
}

.gold365-user-rating {
    color: #FFD700;
    font-size: 16px;
}

.gold365-star {
    margin-right: 3px;
}

/* Mobile Slider */
.gold365-testimonial-slider {
    display: none;
    /* padding: 30px 0 60px; */
}

.gold365-swiper-container {
    width: 100%;
    height: 100%;
    padding: 20px 0 40px;
}

.gold365-swiper-wrapper {
    display: flex;
    gap: 10px;
}

.gold365-swiper-slide {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    flex-shrink: 0;
    width: 100%;
}

.gold365-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gold365-swiper-pagination span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gold365-swiper-pagination span.active {
    background: #FFD700;
}

/* Rating Summary */
.gold365-rating-summary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gold365-summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.gold365-overall-rating {
    text-align: center;
}

.gold365-rating-number {
    color: #FFD700;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.gold365-rating-stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

.gold365-rating-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.gold365-rating-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
}

/* Rating Details */
.gold365-rating-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold365-rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gold365-rating-label-small {
    color: #fff;
    font-size: 16px;
    width: 40px;
    font-weight: 600;
}

.gold365-bar-container {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.gold365-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 6px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.gold365-bar-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    width: 40px;
    text-align: right;
}

/* CTA Button */
.gold365-testimonial-cta {
    text-align: center;
    margin-top: 80px;
}

.gold365-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2b0057;
    font-weight: 800;
    font-size: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
}

.gold365-cta-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
}

.gold365-cta-icon {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gold365-testimonial-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gold365-testimonial-section {
        padding: 80px 0;
    }
    
    .gold365-testimonial-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .gold365-testimonial-subtitle {
        font-size: 18px;
        margin: 50px auto;
    }
    
    .gold365-testimonial-cards {
        display: none;
    }
    
    .gold365-testimonial-slider {
        display: block;
    }
    
    .gold365-rating-summary {
        padding: 40px 30px;
        margin-top: 20px;
    }
    
    .gold365-summary-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gold365-overall-rating {
        order: -1;
    }
    
    .gold365-testimonial-card,
    .gold365-swiper-slide {
        padding: 35px 30px;
    }
    
    .gold365-testimonial-cta {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .gold365-testimonial-section {
        padding: 60px 0;
    }
    
    .gold365-testimonial-title {
        font-size: 32px;
    }
    
    .gold365-testimonial-subtitle {
        font-size: 17px;
        margin: 40px auto;
    }
    
    .gold365-testimonial-text {
        font-size: 17px;
    }
    
    .gold365-user-avatar {
        width: 60px;
        height: 60px;
    }
    
    .gold365-user-name {
        font-size: 18px;
    }
    
    .gold365-rating-number {
        font-size: 50px;
    }
    
    .gold365-rating-summary {
        padding: 35px 25px;
    }
    
    .gold365-swiper-slide {
        padding: 30px 25px;
    }
    
    .gold365-cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .gold365-testimonial-title {
        font-size: 28px;
    }
    
    .gold365-testimonial-text {
        font-size: 16px;
    }
    
    .gold365-user-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .gold365-user-details {
        text-align: center;
    }
    
    .gold365-swiper-slide {
        padding: 25px 20px;
    }
}

/* Responsive Design for Main Layout */
@media (max-width: 992px) {
    .hero-content,
    .feature-image-text {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-image,
    .feature-image-text .image-content {
        width: 100%;
    }
    
    .feature-image-text.reverse {
        flex-direction: column;
    }
    
    .step {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .floating_btn {
        bottom: 30px;
        right: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 20px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 25px;
        gap: 0px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .login-box {
        padding: 20px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        width: 100%;
    }
    
    .rich-text-content {
        padding: 40px 25px;
    }
    
    .feature-image-text {
        padding: 40px 25px;
    }
}

@media (max-width: 420px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
    
    .login-box .at-login {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

/* Add these styles to your existing styles.css file */

/* Active state for nav links */
.nav-links a.active {
    color: #FFD700;
}

.nav-links a.active:after {
    width: 100%;
}

/* Login button in nav */
.login-nav-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2b0057 !important;
    padding: 10px 25px !important;
    border-radius: 10px;
    font-weight: 700 !important;
}

.login-nav-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700) !important;
    color: #2b0057 !important;
}


/* ============================================
   ABOUT US PAGE - Separate Styles
============================================ */

/* About Hero Section */
.about-hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(43, 0, 87, 0.95), rgba(26, 0, 56, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1440&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FFD700;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
    color: #2b0057;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #FFD700;
    border-radius: 3px;
}

/* About Text Content */
.about-text-content {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.about-text-content h3 {
    color: #2b0057;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.about-text-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.about-text-content li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.about-text-content strong {
    color: #2b0057;
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #FFD700;
}

.service-icon {
    color: #FFD700;
    font-size: 48px;
    margin-bottom: 25px;
    text-align: center;
}

.service-card h4 {
    color: #2b0057;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card ul {
    text-align: left;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h5 {
    color: #2b0057;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h5 i {
    color: #FFD700;
}

.feature-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(43, 0, 87, 0.05), rgba(26, 0, 56, 0.05));
    border-radius: 25px;
    padding: 60px;
    margin: 60px 0;
    border: 1px solid rgba(43, 0, 87, 0.1);
}

.security-section .about-section-title {
    color: #2b0057;
}

.security-section > p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.security-icon {
    color: #FFD700;
    font-size: 40px;
    margin-bottom: 20px;
}

.security-item h5 {
    color: #2b0057;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.security-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #2b0057, #1a0038);
    border-radius: 25px;
    padding: 80px;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.conclusion-section h3 {
    color: #FFD700;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.conclusion-section p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Back to Home Button */
.back-to-home {
    text-align: center;
    margin-top: 60px;
}

.home-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2b0057;
    font-weight: 800;
    font-size: 18px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
}

.home-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
}

.home-btn i {
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE DESIGN FOR ABOUT PAGE
============================================ */

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-subtitle {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .about-text-content {
        padding: 50px 40px;
    }
    
    .security-section {
        padding: 50px 40px;
    }
    
    .conclusion-section {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px;
        min-height: 60vh;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
    
    .about-section-title {
        font-size: 36px;
    }
    
    .about-content-section {
        padding: 80px 0;
    }
    
    .about-text-content {
        padding: 40px 30px;
    }
    
    .about-text-content h3 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 35px 30px;
    }
    
    .service-card h4 {
        font-size: 24px;
    }
    
    .security-section {
        padding: 40px 30px;
    }
    
    .conclusion-section {
        padding: 50px 30px;
    }
    
    .conclusion-section h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-content {
        padding: 35px 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .conclusion-section h3 {
        font-size: 28px;
    }
    
    .conclusion-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-text-content h3 {
        font-size: 24px;
    }
    
    .about-text-content p {
        font-size: 17px;
    }
    
    .service-card h4 {
        font-size: 22px;
    }
    
    .feature-item h5 {
        font-size: 20px;
    }
    
    .security-section {
        padding: 35px 25px;
    }
    
    .conclusion-section {
        padding: 40px 25px;
    }
}

/* ============================================
   END OF ABOUT PAGE STYLES
============================================ */


/* ============================================
   POLICY PAGES STYLES (Privacy & Terms)
   For GOLD365 Website
   ============================================ */

/* Hero Section for Policy Pages */
.policy-hero-section {
    min-height: 40vh;
    background: linear-gradient(135deg, #2b0057 0%, #1a0038 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.policy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1440&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    text-transform: uppercase;
}

.policy-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Main Content Section */
.policy-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Policy Card */
.policy-card {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.policy-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Last Updated */
.policy-last-updated {
    text-align: right;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-style: italic;
}

.policy-last-updated i {
    color: #FFD700;
    margin-right: 5px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-section h2 {
    color: #2b0057;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.policy-section h3 {
    color: #2b0057;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.policy-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul, 
.policy-section ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.policy-section li {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
}

.policy-section li strong {
    color: #2b0057;
    font-weight: 700;
}

.policy-section strong {
    color: #2b0057;
}

/* Highlight Boxes */
.policy-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.policy-highlight:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.policy-highlight p {
    margin-bottom: 0;
    color: #333;
}

.policy-highlight i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 20px;
}

/* Warning Box (for Terms page) */
.warning-box {
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff4444;
    padding: 20px 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.warning-box:hover {
    background: rgba(255, 0, 0, 0.08);
    transform: translateX(5px);
}

.warning-box p {
    color: #333;
    margin-bottom: 0;
}

.warning-box i {
    color: #ff4444;
    margin-right: 10px;
    font-size: 20px;
}

/* Contact Info Section */
.contact-info-policy {
    background: linear-gradient(135deg, #2b0057, #1a0038);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-top: 60px;
    transition: all 0.3s ease;
}

.contact-info-policy:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 0, 87, 0.3);
}

.contact-info-policy h3 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.contact-grid-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item-policy {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item-policy:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.contact-icon-policy {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b0057;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text-policy {
    flex: 1;
}

.contact-text-policy h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text-policy p {
    color: white;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-text-policy a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-text-policy a:hover {
    color: #FFD700;
    transform: translateX(3px);
}

/* Back to Home Button */
.back-to-home-policy {
    text-align: center;
    margin-top: 60px;
}

.home-btn-policy {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2b0057;
    font-weight: 800;
    font-size: 18px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.home-btn-policy:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
}

.home-btn-policy i {
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .policy-container {
        max-width: 1100px;
    }
}

/* Desktop Medium (992px - 1199px) */
@media (max-width: 1199px) {
    .policy-container {
        max-width: 900px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .policy-hero-title {
        font-size: 42px;
    }
    
    .policy-hero-subtitle {
        font-size: 19px;
    }
    
    .policy-card {
        padding: 50px 40px;
    }
    
    .policy-section h2 {
        font-size: 28px;
    }
    
    .policy-section h3 {
        font-size: 22px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 17px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    .policy-hero-section {
        min-height: 35vh;
        padding: 100px 20px 50px;
    }
    
    .policy-hero-title {
        font-size: 36px;
    }
    
    .policy-hero-subtitle {
        font-size: 18px;
    }
    
    .policy-content-section {
        padding: 60px 0;
    }
    
    .policy-card {
        padding: 40px 30px;
    }
    
    .policy-last-updated {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
    
    .policy-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .policy-section h2::after {
        width: 60px;
        height: 3px;
    }
    
    .policy-section h3 {
        font-size: 21px;
        margin: 25px 0 15px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 16.5px;
        line-height: 1.7;
    }
    
    .contact-info-policy {
        padding: 35px 30px;
    }
    
    .contact-info-policy h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-grid-policy {
        gap: 20px;
    }
    
    .contact-item-policy {
        padding: 18px;
    }
    
    .contact-icon-policy {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .contact-text-policy h4 {
        font-size: 17px;
    }
    
    .contact-text-policy p {
        font-size: 15px;
    }
}

/* Mobile Large (425px - 575px) */
@media (max-width: 575px) {
    .policy-hero-title {
        font-size: 32px;
    }
    
    .policy-hero-subtitle {
        font-size: 17px;
    }
    
    .policy-card {
        padding: 35px 25px;
    }
    
    .policy-last-updated {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 16px;
    }
    
    .policy-highlight,
    .warning-box {
        padding: 15px 20px;
    }
    
    .policy-highlight i,
    .warning-box i {
        font-size: 18px;
    }
    
    .contact-info-policy {
        padding: 30px 25px;
    }
    
    .contact-info-policy h3 {
        font-size: 22px;
    }
    
    .contact-grid-policy {
        grid-template-columns: 1fr;
    }
    
    .contact-item-policy {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-text-policy {
        text-align: center;
    }
    
    .home-btn-policy {
        padding: 16px 40px;
        font-size: 17px;
    }
}

/* Mobile Medium (376px - 424px) */
@media (max-width: 424px) {
    .policy-hero-title {
        font-size: 28px;
    }
    
    .policy-hero-subtitle {
        font-size: 16px;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    
    .policy-last-updated {
        font-size: 13px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 19px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .policy-section ul,
    .policy-section ol {
        margin-left: 20px;
    }
    
    .policy-section li {
        margin-bottom: 10px;
    }
    
    .contact-info-policy h3 {
        font-size: 20px;
    }
    
    .contact-icon-policy {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-text-policy h4 {
        font-size: 16px;
    }
    
    .contact-text-policy p {
        font-size: 14px;
    }
}

/* Mobile Small (320px - 375px) */
@media (max-width: 375px) {
    .policy-hero-title {
        font-size: 26px;
    }
    
    .policy-hero-subtitle {
        font-size: 15px;
    }
    
    .policy-card {
        padding: 25px 15px;
    }
    
    .policy-last-updated {
        font-size: 12px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .policy-section {
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 20px;
        padding-bottom: 10px;
    }
    
    .policy-section h2::after {
        width: 50px;
        height: 3px;
    }
    
    .policy-section h3 {
        font-size: 18px;
        margin: 20px 0 12px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .policy-highlight,
    .warning-box {
        padding: 12px 15px;
    }
    
    .policy-highlight i,
    .warning-box i {
        font-size: 16px;
    }
    
    .contact-info-policy {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .contact-info-policy h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item-policy {
        padding: 15px;
    }
    
    .home-btn-policy {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .policy-hero-title {
        font-size: 24px;
    }
    
    .policy-hero-subtitle {
        font-size: 14px;
    }
    
    .policy-card {
        padding: 20px 12px;
    }
    
    .policy-section h2 {
        font-size: 18px;
    }
    
    .policy-section h3 {
        font-size: 17px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 13px;
    }
    
    .contact-icon-policy {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .home-btn-policy {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .policy-hero-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .policy-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .back-to-home-policy,
    .contact-info-policy {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .policy-section,
    .policy-card,
    .contact-item-policy,
    .home-btn-policy,
    .policy-highlight,
    .warning-box {
        transition: none;
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .policy-hero-title {
        color: #FFD700;
    }
    
    .policy-section h2 {
        color: #2b0057;
    }
    
    .policy-section p,
    .policy-section li {
        color: #000;
    }
    
    .contact-info-policy {
        background: #2b0057;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .policy-content-section {
        background-color: #1a1a1a;
    }
    
    .policy-card {
        background: #2d2d2d;
        border-color: #444;
    }
    
    .policy-section p,
    .policy-section li {
        color: #e0e0e0;
    }
    
    .policy-last-updated {
        color: #bbb;
        border-bottom-color: #444;
    }
    
    .policy-highlight {
        background: rgba(255, 215, 0, 0.05);
    }
    
    .warning-box {
        background: rgba(255, 0, 0, 0.03);
    }
}

        /* Contact Page Specific Styles */
        .contact-hero-section {
            min-height: 40vh;
            background: linear-gradient(135deg, #2b0057 0%, #1a0038 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1440&q=80') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }
        
        .contact-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-hero-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #FFD700;
            line-height: 1.2;
        }
        
        .contact-hero-subtitle {
            font-size: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
        }
        
        .contact-content-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Contact Grid Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Contact Info Cards */
        .contact-info-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .contact-info-card h2 {
            color: #2b0057;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #FFD700;
            border-radius: 2px;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .contact-method-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-method-item:hover {
            transform: translateX(10px);
            background: rgba(255, 215, 0, 0.1);
        }
        
        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: #FFD700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2b0057;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .contact-method-details h3 {
            color: #2b0057;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .contact-method-details p {
            color: #555;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        .contact-method-details a {
            color: #2b0057;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
            display: inline-block;
        }
        
        .contact-method-details a:hover {
            color: #FFD700;
        }
        
        /* Social Links */
        .social-links-section {
            margin-top: 40px;
        }
        
        .social-links-section h3 {
            color: #2b0057;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2b0057;
            font-size: 24px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: #FFD700;
            color: #2b0057;
            transform: translateY(-5px);
        }
        
        /* Contact Form */
        .contact-form-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form-card h2 {
            color: #2b0057;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #FFD700;
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #2b0057;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
            background: white;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #2b0057;
            border: none;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            width: 100%;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }
        
        /* Map Section */
        .map-section {
            margin: 60px 0;
        }
        
        .map-container {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .map-container h2 {
            color: #2b0057;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .map-container h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #FFD700;
            border-radius: 2px;
        }
        
        .map-embed {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        
        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* FAQ Preview Section */
        .faq-preview {
            background: linear-gradient(135deg, #2b0057, #1a0038);
            border-radius: 25px;
            padding: 60px;
            margin: 60px 0;
            color: white;
            text-align: center;
        }
        
        .faq-preview h2 {
            color: #FFD700;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .faq-preview p {
            font-size: 20px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-preview-btn {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #2b0057;
            font-weight: 800;
            font-size: 18px;
            border-radius: 15px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }
        
        .faq-preview-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
        }
        
        /* Business Hours */
        .hours-card {
            background: linear-gradient(135deg, #2b0057, #1a0038);
            border-radius: 25px;
            padding: 40px;
            margin-top: 40px;
            color: white;
        }
        
        .hours-card h3 {
            color: #FFD700;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-day {
            font-weight: 600;
            color: #FFD700;
        }
        
        .hours-time {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-hero-title {
                font-size: 42px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero-section {
                min-height: 35vh;
                padding: 100px 20px 50px;
            }
            
            .contact-hero-title {
                font-size: 36px;
            }
            
            .contact-hero-subtitle {
                font-size: 18px;
            }
            
            .contact-content-section {
                padding: 60px 0;
            }
            
            .contact-info-card,
            .contact-form-card,
            .map-container {
                padding: 35px 30px;
            }
            
            .contact-info-card h2,
            .contact-form-card h2,
            .map-container h2 {
                font-size: 28px;
            }
            
            .contact-method-item {
                padding: 15px;
            }
            
            .contact-method-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .contact-method-details h3 {
                font-size: 18px;
            }
            
            .contact-method-details p,
            .contact-method-details a {
                font-size: 16px;
            }
            
            .faq-preview {
                padding: 50px 30px;
            }
            
            .faq-preview h2 {
                font-size: 32px;
            }
            
            .faq-preview p {
                font-size: 18px;
            }
            
            .hours-card {
                padding: 35px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero-title {
                font-size: 32px;
            }
            
            .contact-info-card,
            .contact-form-card,
            .map-container {
                padding: 30px 25px;
            }
            
            .contact-info-card h2,
            .contact-form-card h2,
            .map-container h2 {
                font-size: 26px;
            }
            
            .contact-method-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }
            
            .contact-method-details {
                text-align: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .map-embed {
                height: 300px;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-preview {
                padding: 40px 25px;
            }
            
            .faq-preview h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-hero-title {
                font-size: 28px;
            }
            
            .contact-hero-subtitle {
                font-size: 16px;
            }
            
            .contact-info-card,
            .contact-form-card,
            .map-container {
                padding: 25px 20px;
            }
            
            .contact-info-card h2,
            .contact-form-card h2,
            .map-container h2 {
                font-size: 24px;
            }
            
            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px;
                font-size: 15px;
            }
            
            .submit-btn {
                padding: 15px 30px;
                font-size: 17px;
            }
            
            .map-embed {
                height: 250px;
            }
            
            .faq-preview h2 {
                font-size: 26px;
            }
            
            .faq-preview p {
                font-size: 17px;
            }
            
            .faq-preview-btn {
                padding: 15px 35px;
                font-size: 17px;
            }
        }
        
        @media (max-width: 360px) {
            .contact-hero-title {
                font-size: 26px;
            }
            
            .contact-info-card h2,
            .contact-form-card h2,
            .map-container h2 {
                font-size: 22px;
            }
            
            .contact-method-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .faq-preview h2 {
                font-size: 24px;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-method-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .contact-method-item:nth-child(1) { animation-delay: 0.1s; }
        .contact-method-item:nth-child(2) { animation-delay: 0.2s; }
        .contact-method-item:nth-child(3) { animation-delay: 0.3s; }
        .contact-method-item:nth-child(4) { animation-delay: 0.4s; }
        .contact-method-item:nth-child(5) { animation-delay: 0.5s; }
