


/* ============================================
   SECTION STYLES
   ============================================ */
.contact-page-modern {
    padding: 120px 0 80px;
    position: relative;
}

/* ============================================
   TITLE SECTION
   ============================================ */
.section-title-modern {
    margin-bottom: 60px;
}

.subtitle-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(227, 179, 58, 0.15), rgba(185, 1, 1, 0.1));
    border: 1px solid rgba(227, 179, 58, 0.3);
    border-radius: 50px;
    color: var(--gold-2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(227, 179, 58, 0.1);
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GLASS CARD EFFECT
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 179, 58, 0.08), transparent);
    transition: left 0.6s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-3);
    box-shadow: 0 20px 40px rgba(227, 179, 58, 0.15);
}

.glass-card:hover::before {
    left: 100%;
}

/* ============================================
   CONTACT FORM CARD
   ============================================ */
.contact-form-card {
    height: 100%;
}

.card-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-gold 2s infinite;
    box-shadow: 0 10px 30px rgba(227, 179, 58, 0.4);
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(227, 179, 58, 0.4), 0 0 0 0 rgba(227, 179, 58, 0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(227, 179, 58, 0.4), 0 0 0 20px rgba(227, 179, 58, 0);
    }
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--dark-bg);
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* ============================================
   FORM STYLES
   ============================================ */
.modern-form .form-group-modern {
    margin-bottom: 24px;
}

.modern-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form label i {
    margin-right: 8px;
    font-size: 12px;
}

.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 2px rgba(227, 179, 58, 0.3), 0 0 20px rgba(227, 179, 58, 0.2);
    position: relative;
}

.form-control-modern::placeholder {
    color: var(--text-muted);
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

select.form-control-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e3b33a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

select.form-control-modern option {
    background: var(--dark-card);
    color: var(--text-light);
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50px;
    color: var(--dark-bg);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227, 179, 58, 0.4);
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient-rev);
    transition: left 0.4s ease;
}

.btn-modern-primary span,
.btn-modern-primary i {
    position: relative;
    z-index: 1;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(227, 179, 58, 0.5);
}

.btn-modern-primary:hover::before {
    left: 0;
}

.btn-modern-primary i {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}

.btn-modern-primary:active {
    transform: translateY(0);
}

/* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
.contact-info-sidebar {
    height: 100%;
}

.info-card {
    text-align: center;
    padding: 30px;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--red-secondary), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(185, 1, 1, 0.3);
}

.info-card-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   CONTACT DETAILS LIST
   ============================================ */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(227, 179, 58, 0.3);
}

.detail-icon i {
    font-size: 22px;
    color: var(--dark-bg);
}

.detail-content {
    flex: 1;
}

.detail-content h5 {
    font-size: 16px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--gold-2);
    padding-left: 5px;
}

.contact-link:hover::before {
    width: 100%;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links-modern {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold-3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 179, 58, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: var(--dark-bg);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section-modern {
    padding: 40px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.stat-card {
    text-align: center;
    padding: 35px 25px;
    transition: all 0.4s ease;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(227, 179, 58, 0.3);
}

.stat-icon i {
    font-size: 32px;
    color: var(--dark-bg);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
  color: var(--gold-3);
text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    margin-bottom: 10px;
}


.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card:hover .stat-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   GOOGLE MAP
   ============================================ */
.google-map-modern {
    margin-top: 80px;
    position: relative;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(227, 179, 58, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(227, 179, 58, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .main-title {
        font-size: 48px;
    }
    
    .glass-card {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 40px;
    }
    
    .contact-page-modern {
        padding: 100px 0 60px;
    }
    
    .contact-info-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .glass-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links-modern {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-page-modern {
        padding: 80px 0 40px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .btn-modern-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold {
    background: var(--gold-gradient);
}

.border-gold {
    border: 2px solid var(--gold-3) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    animation: fadeInUp 0.6s ease forwards;
}

.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.3s; }
.glass-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   ADDITIONAL GRADIENT EFFECTS
   ============================================ */
.gold-gradient-border {
    position: relative;
    border-radius: 20px;
}

.gold-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-effect {
    background: var(--gold-gradient);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite linear;
}
