/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Sans", sans-serif;
}

h1 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.008em;
}

h5 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.005em;
}

h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: -0.003em;
}

p, .body-text {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
}

.btn {
    font-family: "Instrument Sans", sans-serif;
}

/* Enhanced Contact Hero Section */
.contact-hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-particles .particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle, rgba(1, 132, 250, 0.8) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(6, 214, 160, 0.3) 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: heroParticleFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(1, 132, 250, 0.3);
}

@keyframes heroParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 1; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    animation: waveMotion 8s ease-in-out infinite;
}

@keyframes waveMotion {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-content {
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.contact-hero-badge .badge {
    background: #0184FA;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-hero-badge .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-title .gradient-text {
    background: linear-gradient(135deg, #0184FA 0%, #0184FA 50%, #0184FA 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stat .stat-icon {
    font-size: 1.5rem;
}

.hero-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Contact Options Section */
.contact-options {
    padding: 120px 0;
    background: white;
}

.contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.options-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 132, 250, 0.1);
    border: 1px solid rgba(1, 132, 250, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.options-badge .badge-icon {
    font-size: 1rem;
}

.options-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-option-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(1, 132, 250, 0.15);
    border-color: #0184FA;
}

.contact-option-card.featured {
    border-color: #0184FA;
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(1, 132, 250, 0.15);
}

.contact-option-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.3);
}

.option-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.option-pattern {
    position: relative;
    width: 100%;
    height: 100%;
}

.pattern-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(1, 132, 250, 0.3);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: patternPulse 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes patternPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 1; }
}

.code-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.code-line {
    height: 3px;
    background: rgba(1, 132, 250, 0.4);
    border-radius: 2px;
    width: var(--width);
    animation: codeTyping 3s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes codeTyping {
    0%, 100% { width: 0; opacity: 0; }
    20%, 80% { width: var(--width); opacity: 1; }
}

.enterprise-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 20px;
}

.building-blocks {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
}

.block {
    width: 12px;
    background: rgba(1, 132, 250, 0.4);
    border-radius: 2px;
    height: var(--height);
    animation: blockGrow 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes blockGrow {
    0%, 100% { transform: scaleY(0.7); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.option-content {
    position: relative;
    padding: 120px 2rem 2rem;
    z-index: 10;
    text-align: center;
}

.option-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0184FA, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-option-card:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(1, 132, 250, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s infinite ease-in-out;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.option-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
}

.option-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0184FA;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.3);
}

.option-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 132, 250, 0.4);
}

/* Enhanced Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.form-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    animation: shapeFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.1;
}

.shape.circle {
    background: #0184FA;
    border-radius: 50%;
}

.shape.triangle {
    background: #8b5cf6;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape.square {
    background: #06d6a0;
    border-radius: 8px;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info {
    padding: 2rem 0;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.form-badge .badge-icon {
    font-size: 1rem;
}

.form-badge .badge-text {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: #64748b;
}

.form-wrapper {
    position: relative;
}

.enhanced-contact-form {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.enhanced-contact-form:hover {
    box-shadow: 0 16px 48px rgba(1, 132, 250, 0.15);
    border-color: #0184FA;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-container {
    position: relative;
    transition: all 0.3s ease;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #374151;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0184FA;
    background: white;
    box-shadow: 0 0 0 3px rgba(1, 132, 250, 0.1);
}

.input-container.focused .form-input,
.input-container.focused .form-select,
.input-container.focused .form-textarea {
    border-color: #0184FA;
    background: white;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container.focused .input-icon,
.form-input:focus + .input-icon,
.form-select:focus + .input-icon,
.form-textarea:focus + .input-icon {
    color: #0184FA;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 132, 250, 0.3);
}

.form-submit-btn:disabled {
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-success {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.success-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-btn {
    background: #0184FA;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Enhanced Office Information */
.office-info {
    padding: 120px 0;
    background: white;
}

.office-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.office-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.office-badge .badge-icon {
    font-size: 1rem;
}

.office-badge .badge-text {
    color: #06d6a0;
    font-weight: 600;
    font-size: 0.875rem;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.office-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(6, 214, 160, 0.15);
    border-color: #06d6a0;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06d6a0, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.office-card:hover::before {
    transform: scaleX(1);
}

.office-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.location-pin {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06d6a0, #059669);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.location-pin i {
    transform: rotate(45deg);
}

.pin-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(6, 214, 160, 0.3);
    border-radius: 50% 50% 50% 0;
    animation: pinPulse 2s infinite ease-in-out;
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.clock-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.clock-face {
    width: 100%;
    height: 100%;
    border: 3px solid #06d6a0;
    border-radius: 50%;
    position: relative;
    background: white;
}

.clock-hand {
    position: absolute;
    background: #06d6a0;
    border-radius: 2px;
    transform-origin: bottom center;
    top: 50%;
    left: 50%;
}

.clock-hand.hour {
    width: 3px;
    height: 20px;
    margin-left: -1.5px;
    margin-top: -20px;
    transform: translateX(-50%) rotate(var(--rotation));
    animation: clockTick 12s infinite linear;
}

.clock-hand.minute {
    width: 2px;
    height: 30px;
    margin-left: -1px;
    margin-top: -30px;
    transform: translateX(-50%) rotate(var(--rotation));
    animation: clockTick 60s infinite linear;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #06d6a0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes clockTick {
    from { transform: translateX(-50%) rotate(var(--rotation)); }
    to { transform: translateX(-50%) rotate(calc(var(--rotation) + 360deg)); }
}

.globe-visualization {
    position: relative;
    width: 80px;
    height: 80px;
}

.globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: globeRotate 8s infinite linear;
}

@keyframes globeRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(6, 214, 160, 0.3);
    border-radius: 50%;
    animation: orbitSpin 6s infinite linear;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.office-content {
    text-align: center;
}

.office-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.office-address {
    margin-bottom: 1.5rem;
}

.address-line {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.detail i {
    color: #06d6a0;
    width: 16px;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #374151;
}

.time {
    color: #64748b;
    font-size: 0.875rem;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-feature:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.support-feature i {
    color: #06d6a0;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.support-feature span {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 132, 250, 0.1);
    border: 1px solid rgba(1, 132, 250, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.faq-badge .badge-icon {
    font-size: 1rem;
}

.faq-badge .badge-text {
    color: #0184FA;
    font-weight: 600;
    font-size: 0.875rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.faq-item.open {
    border-color: #0184FA;
    box-shadow: 0 8px 25px rgba(1, 132, 250, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #0184FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    background: #1d4ed8;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-option-card.featured {
        transform: none;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .contact-hero-content {
        margin-top: 70px;
    }
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .enhanced-contact-form {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .contact-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-container {
        padding: 0 1rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .hero-stat {
        padding: 0.75rem 1rem;
    }
    
    .hero-stat .stat-value {
        font-size: 1rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-options-container,
    .form-container,
    .office-container,
    .faq-container {
        padding: 0 1rem;
    }
    
    .enhanced-contact-form {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .option-content {
        padding: 100px 1.5rem 1.5rem;
    }
    
    .option-title {
        font-size: 1.25rem;
    }
    
    .office-title {
        font-size: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
}