/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b85 50%, #0F172A 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-particles::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 169, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-blob 20s infinite ease-in-out;
}

.contact-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float-blob 25s infinite ease-in-out reverse;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color:black;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.info-pill {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 1rem;
}

.info-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-1);
    color: var(--white);
}

.info-pill i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider path {
    fill: var(--white);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.5;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.form-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* Honeypot Field - Hidden from users */
.honey-pot {
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(64, 169, 255, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-submit {
    min-width: 200px;
    position: relative;
    overflow: hidden;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Alerts */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    animation: slideInUp 0.5s ease;
    font-size: 0.875rem;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #155724;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
}

/* Contact Info Sidebar */
.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.info-content h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
}

.info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-blue-dark);
    transform: translateX(3px);
}

.info-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Social Connect Card */
.social-connect-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--aqua) 100%);
    padding: 2rem;
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-connect-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.connect-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.connect-description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.social-card i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.social-card span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Response Card */
.response-card {
    background: var(--gradient-soft);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-blue);
}

.response-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(64, 169, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(64, 169, 255, 0.6);
    }
}

.response-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.response-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.response-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.response-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.response-stats .stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    background: var(--soft-gray);
}

.accordion-item {
    background: var(--white);
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 600;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-2);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.875rem;
}

/* Map Section */
.map-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 169, 255, 0.9) 0%, rgba(0, 206, 209, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.map-info {
    text-align: center;
    color: var(--white);
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.timezone-info {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.timezone-info i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s infinite;
    opacity: 0;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-blue);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s forwards 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design - Enhanced for better mobile experience */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .contact-hero {
        min-height: 45vh;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .contact-hero {
        min-height: 40vh;
        padding-top: 90px;
    }
    
    .contact-particles::before {
        width: 300px;
        height: 300px;
    }
    
    .contact-particles::after {
        width: 250px;
        height: 250px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .info-pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .info-pill i {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
    
    .form-control {
        padding: 0.65rem 0.9rem;
        font-size: 0.95rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .btn-submit {
        min-width: auto;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-info-card,
    .social-connect-card,
    .response-card {
        padding: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .info-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1.1rem;
    }
    
    .info-content h5 {
        font-size: 0.95rem;
    }
    
    .info-content a,
    .info-content p {
        font-size: 0.8rem;
    }
    
    .connect-title {
        font-size: 1.1rem;
    }
    
    .connect-description {
        font-size: 0.8rem;
    }
    
    .social-card {
        padding: 0.6rem;
    }
    
    .social-card i {
        font-size: 1.1rem;
    }
    
    .social-card span {
        font-size: 0.8rem;
    }
    
    .response-icon {
        width: 50px;
        height: 50px;
    }
    
    .response-icon i {
        font-size: 1.3rem;
    }
    
    .response-card h4 {
        font-size: 1.1rem;
    }
    
    .response-card p {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .response-stats {
        gap: 1.5rem;
    }
}

/* Large Mobile Devices */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 35vh;
        padding-top: 80px;
    }
    
    .wave-divider svg {
        height: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .info-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .info-pill i {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-form-wrapper::before {
        width: 150px;
        height: 150px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .form-label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    textarea.form-control {
        min-height: 90px;
    }
    
    .char-counter {
        font-size: 0.7rem;
    }
    
    .invalid-feedback {
        font-size: 0.7rem;
    }
    
    .form-check-input {
        width: 16px;
        height: 16px;
    }
    
    .form-check-label {
        font-size: 0.8rem;
    }
    
    .form-actions {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .btn-submit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .alert {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-info-card,
    .social-connect-card,
    .response-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .info-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        margin-bottom: 1.2rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
    
    .info-icon i {
        font-size: 1rem;
    }
    
    .info-content h5 {
        font-size: 0.9rem;
    }
    
    .info-content a,
    .info-content p {
        font-size: 0.75rem;
    }
    
    .connect-title {
        font-size: 1rem;
    }
    
    .connect-description {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .social-card {
        padding: 0.5rem 0.8rem;
        border-radius: 8px;
    }
    
    .social-card i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
    
    .social-card span {
        font-size: 0.75rem;
    }
    
    .response-icon {
        width: 45px;
        height: 45px;
    }
    
    .response-icon i {
        font-size: 1.1rem;
    }
    
    .response-card h4 {
        font-size: 1rem;
    }
    
    .response-card p {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .accordion-item {
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .accordion-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1.2rem;
        font-size: 0.8rem;
    }
    
    .map-section {
        height: 300px;
    }
    
    .map-info h3 {
        font-size: 1.5rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .timezone-info {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .timezone-info i {
        font-size: 1rem;
    }
    
    .map-pin {
        font-size: 2rem;
    }
}

/* Medium Mobile Devices */
@media (max-width: 576px) {
    .contact-hero {
        min-height: 30vh;
        padding-top: 70px;
    }
    
    .contact-particles::before {
        width: 250px;
        height: 250px;
    }
    
    .contact-particles::after {
        width: 200px;
        height: 200px;
    }
    
    .contact-title {
        font-size: 1.7rem;
    }
    
    .contact-subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .info-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .info-pill i {
        font-size: 0.8rem;
        margin-right: 0.3rem;
    }
    
    .contact-form-wrapper {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .form-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .form-control {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
        border-width: 1px;
    }
    
    textarea.form-control {
        min-height: 80px;
    }
    
    .form-check-input {
        width: 14px;
        height: 14px;
    }
    
    .form-check-label {
        font-size: 0.75rem;
    }
    
    .btn-submit {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .alert {
        padding: 0.6rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .contact-info-card,
    .social-connect-card,
    .response-card {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .info-title {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .info-icon i {
        font-size: 0.9rem;
    }
    
    .info-content h5 {
        font-size: 0.85rem;
    }
    
    .info-content a,
    .info-content p {
        font-size: 0.7rem;
    }
    
    .connect-title {
        font-size: 0.95rem;
    }
    
    .connect-description {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .social-card {
        padding: 0.4rem 0.6rem;
    }
    
    .social-card i {
        font-size: 0.9rem;
    }
    
    .social-card span {
        font-size: 0.7rem;
    }
    
    .response-icon {
        width: 40px;
        height: 40px;
    }
    
    .response-icon i {
        font-size: 1rem;
    }
    
    .response-card h4 {
        font-size: 0.95rem;
    }
    
    .response-card p {
        font-size: 0.7rem;
    }
    
    .response-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .accordion-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .map-section {
        height: 250px;
    }
    
    .map-info h3 {
        font-size: 1.3rem;
    }
    
    .map-info p {
        font-size: 0.85rem;
    }
    
    .timezone-info {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .map-animation {
        width: 80px;
        height: 80px;
    }
    
    .map-pin {
        font-size: 1.7rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
    .contact-hero {
        min-height: 25vh;
        padding-top: 60px;
    }
    
    .contact-particles::before,
    .contact-particles::after {
        display: none;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .info-pill {
        max-width: 250px;
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .info-pill i {
        font-size: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
        box-shadow: var(--shadow-sm);
    }
    
    .contact-form-wrapper::before {
        display: none;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .form-description {
        font-size: 0.8rem;
    }
    
    .form-label {
        font-size: 0.65rem;
    }
    
    .form-control {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    textarea.form-control {
        min-height: 70px;
    }
    
    .char-counter {
        font-size: 0.65rem;
    }
    
    .form-check-input {
        width: 12px;
        height: 12px;
    }
    
    .form-check-label {
        font-size: 0.7rem;
    }
    
    .btn-submit {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .contact-info-card,
    .social-connect-card,
    .response-card {
        padding: 0.8rem;
    }
    
    .info-title {
        font-size: 0.95rem;
    }
    
    .info-icon {
        width: 30px;
        height: 30px;
    }
    
    .info-icon i {
        font-size: 0.8rem;
    }
    
    .info-content h5 {
        font-size: 0.8rem;
    }
    
    .info-content a,
    .info-content p {
        font-size: 0.65rem;
    }
    
    .connect-title {
        font-size: 0.9rem;
    }
    
    .connect-description {
        font-size: 0.65rem;
    }
    
    .social-card {
        padding: 0.35rem 0.5rem;
    }
    
    .social-card i {
        font-size: 0.8rem;
    }
    
    .social-card span {
        font-size: 0.65rem;
    }
    
    .response-icon {
        width: 35px;
        height: 35px;
    }
    
    .response-icon i {
        font-size: 0.9rem;
    }
    
    .response-card h4 {
        font-size: 0.9rem;
    }
    
    .response-card p {
        font-size: 0.65rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .accordion-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .accordion-body {
        padding: 0.8rem;
        font-size: 0.7rem;
    }
    
    .map-section {
        height: 200px;
    }
    
    .map-info h3 {
        font-size: 1.1rem;
    }
    
    .map-info p {
        font-size: 0.8rem;
    }
    
    .timezone-info {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .timezone-info i {
        font-size: 0.8rem;
    }
    
    .map-pin {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .contact-hero {
        padding-top: 50px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-subtitle {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .social-grid {
        gap: 0.5rem;
    }
    
    .alert {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
}

/* Security Enhancements */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    /* Prevent autofill styling issues */
    background-color: var(--white) !important;
}

/* Disable copy on sensitive fields */
.form-control[type="password"],
.form-control[type="email"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .contact-hero,
    .map-section,
    .cta-section {
        display: none;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}