/* ========================================
   CONTACT PAGE STYLES - PREMIUM DESIGN
   ======================================== */

/* ========================================
   CONTACT HERO SECTION
   ======================================== */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #ffffff;
}

.hero-layered-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 183, 74, 0.03) 0%,
        rgba(0, 102, 204, 0.02) 50%,
        rgba(0, 191, 166, 0.03) 100%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 183, 74, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bg-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbitFloat 30s ease-in-out infinite;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.08) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: 15%;
    animation-delay: -10s;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.05) 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation-delay: -20s;
}

.bg-dots-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 183, 74, 0.03) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.5;
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Hero Layout */
.hero-asymmetric-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Contact Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.08), rgba(0, 191, 166, 0.08));
    border: 1.5px solid rgba(0, 183, 74, 0.2);
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 74, 0.1), transparent);
    animation: shimmerSlide 3s infinite;
}

.badge-line {
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #00B74A, #00BFA6);
    border-radius: 3px;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #00B74A;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #00B74A;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 183, 74, 0.5);
}

.badge-dot.pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(0, 183, 74, 0.5), 0 0 0 0 rgba(0, 183, 74, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 183, 74, 0.7), 0 0 0 15px rgba(0, 183, 74, 0);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 35px;
    color: #1a2332;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, #00B74A 0%, #00BFA6 60%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-lead {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 400;
}

.hero-lead strong {
    color: #00B74A;
    font-weight: 700;
    position: relative;
}

/* Quick Stats */
.quick-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    /* flex-wrap: wrap; */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 183, 74, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.1);
    border-color: rgba(0, 183, 74, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 20px;
    color: #00B74A;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a2332;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #5a6c7d;
    font-weight: 500;
    margin-top: 5px;
}

/* Visual Panel */
.hero-visual-panel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
}

.main-contact-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 183, 74, 0.15);
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00B74A, #00BFA6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon i {
    font-size: 30px;
    color: white;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    margin: 0;
}

.card-body {
    margin-bottom: 30px;
}

.card-body p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.option-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: rgba(0, 183, 74, 0.05);
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item.active {
    background: white;
    border-color: #00B74A;
    box-shadow: 0 5px 20px rgba(0, 183, 74, 0.15);
}

.option-item:hover:not(.active) {
    background: rgba(0, 183, 74, 0.1);
}

.option-item i {
    font-size: 24px;
    color: #00B74A;
}

.option-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
}

.action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #00B74A 0%, #00BFA6 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.3);
}

.floating-card {
    position: absolute;
    padding: 20px 25px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 74, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

.mini-card-1 {
    top: -50px;
    right: -20px;
    animation-delay: 1s;
    z-index: 2;
}

.mini-card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 20px;
    color: #00B74A;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.scroll-hint span {
    font-size: 12px;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 183, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    color: #00B74A;
    font-size: 16px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   CONTACT HUB SECTION
   ======================================== */
.contact-hub-section {
    position: relative;
    padding: 120px 0;
    background: #f8fafb;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hub-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 183, 74, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 102, 204, 0.04) 0%, transparent 50%);
}

.hub-particles {
    position: absolute;
    inset: 0;
}

.hub-particles::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(0, 183, 74, 0.03) 2px, transparent 0);
    background-size: 100px 100px;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 183, 74, 0.1);
    border-radius: 50px;
    margin-bottom: 25px;
}

.section-badge i {
    color: var(--primary-green);
    font-size: 14px;
}

.section-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #00B74A 0%, #00BFA6 60%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Channel Grid */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.channel-card {
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 74, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00B74A, #00BFA6, #0066CC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.channel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
}

.channel-card:hover::before {
    transform: scaleX(1);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.channel-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon i {
    font-size: 28px;
    color: #00B74A;
    position: relative;
    z-index: 2;
}

.icon-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(0, 183, 74, 0.2);
    border-radius: 22px;
    animation: ringPulse 3s infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.channel-label {
    font-size: 12px;
    font-weight: 700;
    color: #00B74A;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    background: rgba(0, 183, 74, 0.1);
    border-radius: 20px;
}

.channel-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 15px;
}

.channel-desc {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Channel Stats */
.channel-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(0, 183, 74, 0.05);
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #00B74A;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #5a6c7d;
    font-weight: 500;
}

/* Channel Features */
.channel-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature i {
    color: #00B74A;
    font-size: 14px;
}

.feature span {
    font-size: 14px;
    color: #5a6c7d;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 183, 74, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 183, 74, 0.1);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 18px;
    color: #00B74A;
}

.social-link span {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
}

/* Channel Actions */
.channel-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.channel-btn i {
    font-size: 16px;
}

.channel-btn.primary {
    background: linear-gradient(135deg, #00B74A, #00BFA6);
    color: white;
}

.channel-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 183, 74, 0.3);
}

.channel-btn.secondary {
    background: white;
    color: #00B74A;
    border: 2px solid #00B74A;
}

.channel-btn.secondary:hover {
    background: #00B74A;
    color: white;
    transform: translateY(-3px);
}

.channel-btn.outline {
    background: transparent;
    color: #1a2332;
    border: 2px solid rgba(0, 183, 74, 0.3);
}

.channel-btn.outline:hover {
    border-color: #00B74A;
    background: rgba(0, 183, 74, 0.05);
    transform: translateY(-3px);
}

.channel-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 183, 74, 0.05);
    border-radius: 10px;
    font-size: 14px;
    color: #1a2332;
}

.channel-info i {
    color: #00B74A;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
    position: relative;
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

.form-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Form Panel */
.form-panel {
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 74, 0.1);
}

.form-header {
    margin-bottom: 50px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 183, 74, 0.1);
    border-radius: 50px;
    margin-bottom: 25px;
}

.form-badge i {
    color: var(--primary-green);
    font-size: 14px;
}

.form-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Intelligent Form */
.intelligent-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 20px 20px 20px 60px;
    background: white;
    border: 2px solid rgba(0, 183, 74, 0.15);
    border-radius: 14px;
    font-size: 16px;
    color: #1a2332;
    transition: all 0.3s ease;
}

.floating-label textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 25px;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: #00B74A;
    box-shadow: 0 0 0 4px rgba(0, 183, 74, 0.1);
}

.floating-label label {
    position: absolute;
    top: 20px;
    left: 60px;
    font-size: 16px;
    color: #8a94a6;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 10px;
}

.floating-label input:focus + label,
.floating-label textarea:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 50px;
    font-size: 13px;
    color: #00B74A;
    font-weight: 600;
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon i {
    color: #00B74A;
    font-size: 18px;
}

.form-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a2332;
    font-size: 15px;
}

.query-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(0, 183, 74, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option.active {
    background: white;
    border-color: #00B74A;
    box-shadow: 0 5px 20px rgba(0, 183, 74, 0.15);
}

.type-option:hover:not(.active) {
    background: rgba(0, 183, 74, 0.1);
    transform: translateY(-3px);
}

.type-option i {
    font-size: 24px;
    color: #00B74A;
}

.type-option span {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #8a94a6;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 183, 74, 0.05);
    border: 2px dashed rgba(0, 183, 74, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background: rgba(0, 183, 74, 0.1);
    border-color: #00B74A;
}

.file-upload label i {
    font-size: 20px;
    color: #00B74A;
}

.file-upload label span {
    font-size: 15px;
    color: #1a2332;
    font-weight: 500;
}

.file-info {
    margin-top: 10px;
    font-size: 13px;
    color: #5a6c7d;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #00B74A 0%, #00BFA6 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 183, 74, 0.3);
}

/* Success State */
.success-state {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00B74A, #00BFA6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-state h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 15px;
}

.success-state p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #00B74A;
    border: 2px solid #00B74A;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: #00B74A;
    color: white;
    transform: translateY(-3px);
}

/* Info Panel */
.info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 74, 0.1);
}

.info-header {
    margin-bottom: 35px;
}

.info-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 10px;
}

.info-header p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 20px;
    color: #00B74A;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
}

.info-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.info-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 183, 74, 0.1);
}

.info-divider span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: white;
    color: #5a6c7d;
    font-size: 14px;
    font-weight: 600;
}

.quick-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 183, 74, 0.05);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(0, 183, 74, 0.1);
    transform: translateX(5px);
}

.quick-link i {
    font-size: 20px;
    color: #00B74A;
}

.quick-link div {
    display: flex;
    flex-direction: column;
}

.quick-link div span {
    font-size: 12px;
    color: #5a6c7d;
    margin-bottom: 3px;
}

.quick-link div strong {
    font-size: 15px;
    color: #1a2332;
    font-weight: 700;
}

.hours-card {
    padding: 30px;
    background: linear-gradient(135deg, #00B74A, #00BFA6);
    border-radius: 24px;
    color: white;
}

.hours-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-card h4 i {
    font-size: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-size: 14px;
    font-weight: 500;
}

.hours-item .time {
    font-size: 15px;
    font-weight: 700;
}

.hours-item.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations-section {
    position: relative;
    padding: 120px 0;
    background: #f8fafb;
    overflow: hidden;
}

.locations-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 183, 74, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 102, 204, 0.04) 0%, transparent 50%);
}

.map-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 183, 74, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.location-card {
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 74, 0.1);
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    font-size: 24px;
    color: #00B74A;
}

.location-tag {
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 20px;
}

.location-tag.primary {
    background: linear-gradient(135deg, #00B74A, #00BFA6);
}

.location-tag.secondary {
    background: linear-gradient(135deg, #0066CC, #00BFA6);
}

.location-tag.tertiary {
    background: linear-gradient(135deg, #F59E0B, #00B74A);
}

.location-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 20px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.location-address i {
    color: #00B74A;
    margin-top: 4px;
}

.location-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #00B74A;
    font-size: 14px;
}

.contact-item span {
    font-size: 14px;
    color: #1a2332;
}

.location-hours {
    margin-bottom: 30px;
}

.location-hours h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.location-hours p {
    font-size: 13px;
    color: #5a6c7d;
    line-height: 1.6;
}

.location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: white;
    color: #00B74A;
    border: 2px solid #00B74A;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #00B74A;
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 183, 74, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.1);
    border-color: #00B74A;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #00B74A;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.05), rgba(0, 191, 166, 0.03));
    border-radius: 24px;
    border: 1px solid rgba(0, 183, 74, 0.1);
}

.faq-cta p {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B74A;
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    gap: 12px;
    color: #0066CC;
}
/* ========================================
   URGENT ASSISTANCE BANNER - DigiBro Theme
   ======================================== */

.urgent-assistance-digibro {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, 
        rgba(0, 183, 74, 0.04) 0%,
        rgba(0, 102, 204, 0.02) 50%,
        rgba(0, 191, 166, 0.03) 100%);
    border-top: 1px solid rgba(0, 183, 74, 0.08);
    border-bottom: 1px solid rgba(0, 183, 74, 0.08);
}

.urgent-container-digibro {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.urgent-content-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 183, 74, 0.1);
    border: 1px solid rgba(0, 183, 74, 0.15);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.urgent-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(0, 183, 74, 0.06) 0%,
        transparent 70%);
    opacity: 0.5;
}

/* Header */
.urgent-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.urgent-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(0, 183, 74, 0.12),
        rgba(0, 191, 166, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 183, 74, 0.2);
    position: relative;
}

.urgent-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0, 183, 74, 0.1);
    border-radius: 22px;
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.urgent-icon i {
    font-size: 30px;
    color: var(--primary-green);
    z-index: 1;
}

.urgent-title-section {
    flex: 1;
}

.urgent-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 183, 74, 0.1);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 183, 74, 0.2);
}

.urgent-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
    margin: 0;
}

.title-highlight {
    color: var(--primary-green);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 183, 74, 0.12);
    border-radius: 4px;
    z-index: -1;
}

/* Body */
.urgent-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.urgent-description {
    padding-right: 30px;
    border-right: 2px solid rgba(0, 183, 74, 0.08);
}

.urgent-description p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Action Section */
.urgent-action {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.urgent-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    background: white;
    border: 2px solid rgba(0, 183, 74, 0.2);
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.urgent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 183, 74, 0.05),
        rgba(0, 191, 166, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urgent-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.15);
}

.urgent-btn:hover::before {
    opacity: 1;
}

.btn-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, 
        rgba(0, 183, 74, 0.12),
        rgba(0, 191, 166, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 183, 74, 0.2);
    position: relative;
    z-index: 1;
}

.btn-icon i {
    font-size: 22px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.urgent-btn:hover .btn-icon i {
    transform: scale(1.1);
}

.btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.btn-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 0.3px;
}

.btn-arrow {
    width: 45px;
    height: 45px;
    background: rgba(0, 183, 74, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.urgent-btn:hover .btn-arrow {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

/* Support Info */
.support-info {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 183, 74, 0.08);
}

.info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 183, 74, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 183, 74, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 183, 74, 0.06);
    transform: translateY(-2px);
    border-color: rgba(0, 183, 74, 0.15);
}

.info-item i {
    color: var(--primary-green);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.info-item span {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .urgent-assistance-digibro {
        padding: 70px 0;
    }
    
    .urgent-content-wrapper {
        padding: 40px;
    }
    
    .urgent-title {
        font-size: 28px;
    }
    
    .urgent-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .urgent-description {
        padding-right: 0;
        border-right: none;
        padding-bottom: 30px;
        border-bottom: 2px solid rgba(0, 183, 74, 0.08);
    }
}

@media (max-width: 768px) {
    .urgent-container-digibro {
        padding: 0 20px;
    }
    
    .urgent-content-wrapper {
        padding: 35px;
    }
    
    .urgent-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .urgent-title-section {
        text-align: center;
    }
    
    .urgent-title {
        font-size: 26px;
    }
    
    .urgent-description p {
        font-size: 16px;
        text-align: center;
    }
    
    .urgent-btn {
        padding: 20px;
    }
    
    .btn-number {
        font-size: 20px;
    }
    
    .support-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .urgent-assistance-digibro {
        padding: 60px 0;
    }
    
    .urgent-content-wrapper {
        padding: 30px;
        border-radius: 20px;
    }
    
    .urgent-icon {
        width: 60px;
        height: 60px;
    }
    
    .urgent-icon i {
        font-size: 26px;
    }
    
    .urgent-title {
        font-size: 24px;
    }
    
    .urgent-btn {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-content {
        text-align: center;
    }
    
    .btn-icon {
        width: 50px;
        height: 50px;
    }
    
    .btn-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Print Styles */
@media print {
    .urgent-assistance-digibro {
        background: white !important;
        border: 2px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .urgent-content-wrapper {
        box-shadow: none !important;
        border: 2px solid #ddd !important;
    }
    
    .urgent-btn {
        border: 2px solid #333 !important;
        color: #333 !important;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-asymmetric-layout {
        gap: 60px;
    }
    
    .form-split-layout {
        gap: 60px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .quick-stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-card-stack {
        margin: 0 auto;
    }
    
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .mini-card-1,.mini-card-2{
        display: none;
    }

.scroll-hint {
    display: none;
}

    .contact-hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .floating-card-stack {
        height: auto;
    }
    
    .main-contact-card {
        padding: 30px;
    }
    
    .channel-grid {
        grid-template-columns: 1fr;
    }
    
    .form-panel {
        padding: 30px;
    }
    
    .query-type-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .urgent-btn {
        padding: 16px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact-badge {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .quick-stats-row {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .channel-card {
        padding: 30px 25px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 15px;
    }
    
    .urgent-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Loading Animation for Form */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}












