/* ===================================
   E7 TECH - CONTACT PAGE REDESIGN
   Modern Professional Design - Fluid Responsive
   =================================== */

:root {
    --navy-950: #0a1128;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --gold: #fbbf24;
    --gold-600: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #64748b;
    --gray-900: #0f172a;
}

/* ===================================
   HERO SECTION
   =================================== */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
    min-height: clamp(25rem, 50vh, 35rem);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-overlay {
    display: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.contact-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    backdrop-filter: blur(0.625rem);
    color: var(--gold);
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 3.125rem;
    font-size: clamp(0.625rem, 2vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.125em;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    border: 0.0625rem solid rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
}

.contact-hero-title {
    color: var(--white);
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    max-width: 43.75rem;
    margin: 0 auto;
    font-weight: 300;
    text-align: justify;
}

/* ===================================
   CONTAINER
   =================================== */
.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
}

/* ===================================
   FORM CONTAINER
   =================================== */
.form-container {
    background: var(--white);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: clamp(1rem, 2.5vw, 1.5rem);
    border: 0.125rem solid var(--gray-100);
    box-shadow: 0 0.25rem 1.5rem rgba(10, 17, 40, 0.08);
}

.form-header {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.form-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.form-header p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.25rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--gray-900);
    background: var(--gray-50);
    border: 0.125rem solid var(--gray-200);
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.1875rem rgba(251, 191, 36, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(8rem, 20vh, 10rem);
    font-family: inherit;
    line-height: 1.6;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
    padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(2rem, 5vw, 2.5rem);
    border: none;
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.25rem 1.25rem rgba(10, 17, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 2rem rgba(251, 191, 36, 0.4);
}

.btn-submit span,
.btn-submit i {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    color: var(--navy-950);
}

/* ===================================
   INFO CONTAINER
   =================================== */
.info-container {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 2.5rem);
}

.info-header h2 {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.info-header p {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.info-item {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: var(--gray-50);
    border-radius: clamp(0.75rem, 2vw, 1rem);
    border: 0.0625rem solid var(--gray-200);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0.25rem 1rem rgba(251, 191, 36, 0.1);
    transform: translateY(-0.125rem);
}

.info-icon {
    flex-shrink: 0;
    width: clamp(3.5rem, 8vw, 4rem);
    height: clamp(3.5rem, 8vw, 4rem);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border-radius: clamp(0.625rem, 1.5vw, 0.875rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0625rem solid rgba(251, 191, 36, 0.2);
}

.info-icon i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--gold);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    line-height: 1.3;
}

.info-content p {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    text-align: justify;
}

.info-content a {
    color: var(--navy-900);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-content a:hover {
    color: var(--gold);
}

.info-content small {
    font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
    color: var(--gray-400);
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.social-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: clamp(0.75rem, 2vw, 1rem);
    border: 0.0625rem solid var(--gray-200);
}

.social-section h4 {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
}

.social-links {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.social-icon {
    width: clamp(2.5rem, 6vw, 2.8125rem);
    height: clamp(2.5rem, 6vw, 2.8125rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy-900);
    border-radius: clamp(0.5rem, 1.5vw, 0.625rem);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    border: 0.0625rem solid var(--gray-200);
}

.social-icon i {
    font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy-950);
    transform: translateY(-0.1875rem) scale(1.05);
    box-shadow: 0 0.375rem 1rem rgba(251, 191, 36, 0.3);
    border-color: var(--gold);
}

/* ===================================
   QUICK CONTACT SECTION
   =================================== */
.quick-contact {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    color: var(--gray-600);
    line-height: 1.6;
    text-align: justify;
    max-width: 50rem;
    margin: 0 auto;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.quick-card {
    background: var(--white);
    padding: clamp(2rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    border: 0.125rem solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-600) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.quick-card:hover {
    border-color: var(--gold);
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(251, 191, 36, 0.15);
}

.card-icon {
    width: clamp(4rem, 10vw, 5rem);
    height: clamp(4rem, 10vw, 5rem);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border-radius: clamp(0.75rem, 2vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    border: 0.0625rem solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.quick-card:hover .card-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
    border-color: var(--gold);
    transform: scale(1.1);
}

.card-icon i {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gold);
    transition: color 0.3s ease;
}

.quick-card:hover .card-icon i {
    color: var(--navy-950);
}

.quick-card h3 {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.quick-card p {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-align: justify;
}

.card-link {
    color: var(--navy-900);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
}

.card-link:hover {
    color: var(--gold);
    gap: clamp(0.625rem, 1.5vw, 0.75rem);
}

.card-link i {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(0.1875rem);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 61.9375rem) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 47.9375rem) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 35.9375rem) {
    .quick-cards {
        grid-template-columns: 1fr;
    }
}
    margin-bottom: 0.75rem;
    text-align: center;
}

.form-header p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    text-align: justify;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #2c3e50;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a237e, #5a3fc0);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
}

/* INFO CONTAINER */
.info-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    text-align: center;
}

.info-header p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    text-align: justify;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1), rgba(90, 63, 192, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-icon i {
    font-size: 1.5rem;
    color: #1a237e;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    text-align: justify;
}

.info-content a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #5a3fc0;
}

.info-content small {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* SOCIAL SECTION */
.social-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1a237e;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.social-icon i {
    font-size: 1.1rem;
}

.social-icon:hover {
    background: #1a237e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26, 35, 126, 0.25);
    border-color: #1a237e;
}

/* QUICK CONTACT SECTION */
.quick-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.quick-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-card:hover {
    border-color: #1a237e;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1), rgba(90, 63, 192, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: #1a237e;
}

.quick-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    text-align: center;
}

.quick-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.card-link {
    color: #1a237e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link i {
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        padding: 2.5rem;
    }
    
    .quick-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 5rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .quick-contact {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 4rem 0 5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-title-section {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem 0;
    text-align: center;
}

.faq-title-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    text-align: justify;
}

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

.faq-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
}

.faq-question i {
    font-size: 1.25rem;
    color: #1a237e;
    transition: all 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 1.75rem 1.75rem 1.75rem;
}

.faq-box.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
}

.faq-answer strong {
    color: #0f172a;
    font-weight: 600;
}

/* Active State */
.faq-box.active .faq-question {
    background: linear-gradient(135deg, #1a237e 0%, #5a3fc0 100%);
}

.faq-box.active .faq-question span {
    color: #ffffff;
}

.faq-box.active .faq-question i {
    color: #fbbf24;
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-title-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-title-section h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN - CONTACT
   =================================== */
