/* 🌟 General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #222;
    background: #f8faff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===================
   HERO SECTION
=================== */
.support-hero {
    position: relative;
    background: linear-gradient(135deg, #004aad, #0078ff);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-content p {
    margin: 15px auto 25px;
    font-size: 1.1rem;
    max-width: 700px;
    opacity: 0.9;
}

.btn-glow {
    background: linear-gradient(90deg, #ffd200, #f7971e);
    color: #111;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 210, 0, 0.5);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 210, 0, 0.8);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #00c6ff;
    top: -50px;
    left: -80px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #0078ff;
    bottom: -100px;
    right: -120px;
}

/* ===================
   SUPPORT OPTIONS
=================== */
.support-options {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    margin-bottom: 40px;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.option-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 300px;
    transition: all 0.4s ease;
}

.option-card i {
    font-size: 40px;
    color: #0078ff;
    margin-bottom: 15px;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 120, 255, 0.2);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0078ff;
    color: #0078ff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #0078ff;
    color: #fff;
}

/* ===================
   SUPPORT FORM
=================== */
.support-form {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.support-form form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0078ff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 120, 255, 0.3);
}

textarea {
    height: 120px;
}

.success-msg {
    display: none;
    color: #28a745;
    margin-top: 15px;
}

/* ===================
   FAQ SECTION
=================== */
.faq-section {
    background: #f0f7ff;
    padding: 80px 0;
}

.faq-item {
    background: #fff;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 20px 15px;
    color: #444;
}

.faq-answer.show {
    display: block;
}

/* ===================
   MAP SECTION
=================== */
.support-location {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.map-container iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================
   ANIMATIONS
=================== */
.fade-in,
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible,
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}