/*
=========================================
AvxBrand - Contact Page Stylesheet
=========================================
*/

/* 1. HERO SECTION */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #050B18 0%, #0D162B 100%);
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-hero-left .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    background-color: rgba(10, 61, 255, 0.08);
    border: 1px solid rgba(10, 61, 255, 0.22);
    color: var(--color-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 1.75rem;
}

.contact-hero-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.contact-hero-left p {
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    line-height: 1.65;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.contact-hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.contact-hero-buttons .btn-primary,
.contact-hero-buttons .btn-secondary {
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    font-family: var(--font-primary);
}

.contact-hero-buttons .btn-primary {
    background: linear-gradient(90deg, #0A3DFF, #00C2FF);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.25);
}

.contact-hero-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.45);
}

.contact-hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.contact-hero-buttons .btn-secondary:hover {
    background: #0A3DFF;
    border-color: #0A3DFF;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Hero Right Side - Illustration & Floating Cards */
.contact-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    z-index: 2;
}

.contact-central-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(10, 61, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-central-image img {
    width: 100%;
    height: auto;
    display: block;
    animation: floatSupport 6s infinite ease-in-out;
}

.contact-hero-glow {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background-color: var(--color-primary);
    filter: blur(85px);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: floatGlow 8s infinite ease-in-out;
}

/* Floating Glass Cards */
.contact-hero-right .floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.15rem;
    background: rgba(13, 22, 43, 0.75);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: var(--shadow-md), 0 0 25px rgba(0, 194, 255, 0.06);
    min-width: 190px;
}

.contact-hero-right .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-hero-right .card-icon.blue {
    color: var(--color-primary);
    background: rgba(10, 61, 255, 0.15);
}

.contact-hero-right .card-icon.purple {
    color: var(--color-accent);
    background: rgba(124, 77, 255, 0.15);
}

.contact-hero-right .card-icon.cyan {
    color: var(--color-secondary);
    background: rgba(0, 194, 255, 0.15);
}

.contact-hero-right .floating-card h4 {
    margin: 0 0 2px 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.contact-hero-right .floating-card p {
    margin: 0;
    font-size: 0.72rem;
    color: var(--color-text);
    font-weight: 500;
}

/* Floating Card Positions & Animations */
.contact-hero-right .float-card-1 {
    top: 10%;
    left: -12%;
    animation: floatSupport 5s infinite ease-in-out;
}

.contact-hero-right .float-card-2 {
    top: 50%;
    right: -12%;
    animation: floatSupportReverse 5.5s infinite ease-in-out;
}

.contact-hero-right .float-card-3 {
    bottom: 5%;
    left: -8%;
    animation: floatSupport 6s infinite ease-in-out;
}

/* Animations Keyframes */
@keyframes floatSupport {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatSupportReverse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

@keyframes floatGlow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* 2. TWO-COLUMN LAYOUT: CONTACT INFO + FORM */
.contact-section-main {
    padding: 100px 0;
    position: relative;
    background: #050B18;
}

.contact-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Contact Info Column (Left) */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(13, 22, 43, 0.5);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    background: rgba(13, 22, 43, 0.85);
    border-color: rgba(0, 194, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.08);
}

.info-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(10, 61, 255, 0.15) 0%, rgba(0, 194, 255, 0.15) 100%);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-info-card:hover .info-card-icon {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.35);
}

.info-card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-family: var(--font-primary);
    color: var(--color-white);
}

.info-card-content p {
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

/* Contact Form Column (Right) */
.contact-form-wrapper {
    background: rgba(13, 22, 43, 0.5);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-wrapper h2 {
    font-size: 1.85rem;
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-form-wrapper .form-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.form-group .form-control {
    background: rgba(5, 11, 24, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    width: 100%;
}

.form-group .form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(5, 11, 24, 0.65);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.15);
}

.form-group select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A8B2D1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select.form-control option {
    background-color: var(--color-bg-section);
    color: var(--color-text-light);
}

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

/* Submit Button Style */
.btn-submit {
    align-self: flex-start;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    background: linear-gradient(90deg, #0A3DFF 0%, #00C2FF 100%);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(10, 61, 255, 0.2);
    transition: var(--transition-normal);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.45);
}

.btn-submit i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Custom Success State Style */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeIn 0.6s ease-out forwards;
}

.form-success-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: var(--radius-full);
    color: #00E676;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.25);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.form-success-message h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.form-success-message p {
    color: var(--color-text);
    font-size: 1rem;
    max-width: 380px;
    margin-bottom: 1.5rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 3. WHY CONTACT AVXBRAND SECTION */
.why-contact-section {
    padding: 100px 0;
    background: var(--color-bg-section);
    position: relative;
}

.why-contact-section .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

.why-contact-section .section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background-color: rgba(10, 61, 255, 0.08);
    border: 1px solid rgba(10, 61, 255, 0.22);
    color: var(--color-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.why-contact-section h2 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.why-contact-section p {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(13, 22, 43, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    background: rgba(13, 22, 43, 0.95);
    border-color: rgba(0, 194, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 194, 255, 0.1);
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.why-card-icon.blue {
    color: var(--color-primary);
    background: rgba(10, 61, 255, 0.12);
}

.why-card-icon.cyan {
    color: var(--color-secondary);
    background: rgba(0, 194, 255, 0.12);
}

.why-card-icon.purple {
    color: var(--color-accent);
    background: rgba(124, 77, 255, 0.12);
}

.why-card-icon.green {
    color: #00E676;
    background: rgba(0, 230, 118, 0.12);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
}

.why-card:hover .why-card-icon.blue {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(10, 61, 255, 0.4);
}

.why-card:hover .why-card-icon.cyan {
    background: var(--color-secondary);
    color: var(--color-background);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
}

.why-card:hover .why-card-icon.purple {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
}

.why-card:hover .why-card-icon.green {
    background: #00E676;
    color: var(--color-background);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.why-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* 4. OFFICE LOCATION SECTION */
.office-section {
    padding: 100px 0;
    background: #050B18;
    position: relative;
}

.office-section .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.office-section h2 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.office-section p {
    color: var(--color-text);
    font-size: 1rem;
}

.office-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.office-details-column {
    display: flex;
    flex-direction: column;
}

.office-card {
    background: rgba(13, 22, 43, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.office-card h3 {
    font-size: 1.6rem;
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.office-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.office-info-item {
    display: flex;
    gap: 1.25rem;
}

.office-info-item i {
    font-size: 1.2rem;
    color: var(--color-secondary);
    width: 24px;
    text-align: center;
    margin-top: 3px;
}

.office-info-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 4px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-info-text p {
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Map Container */
.map-column {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

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

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(5, 11, 24, 0.8) 100%);
    pointer-events: none;
}

/* 5. FAQ SECTION (ACCORDION) */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg-section);
    position: relative;
}

.faq-section .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

.faq-section .section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background-color: rgba(10, 61, 255, 0.08);
    border: 1px solid rgba(10, 61, 255, 0.22);
    color: var(--color-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.faq-section h2 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.faq-section p {
    color: var(--color-text);
    font-size: 1rem;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(13, 22, 43, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    background: rgba(13, 22, 43, 0.75);
    border-color: rgba(0, 194, 255, 0.18);
}

.faq-item.active {
    background: rgba(13, 22, 43, 0.85);
    border-color: rgba(0, 194, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.04);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    gap: 1.5rem;
}

.faq-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-header h3 {
    color: var(--color-secondary);
}

.faq-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    font-size: 0.9rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-color: transparent;
    transform: rotate(180deg);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.25);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-content {
    padding: 0 2rem 1.75rem;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 6. RESPONSIVE BREAKPOINTS */

@media screen and (max-width: 1200px) {
    .contact-hero {
        padding-top: 150px;
    }
    .contact-hero-content {
        gap: 2.5rem;
    }
    .contact-grid {
        gap: 2.5rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .office-grid {
        gap: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    .contact-hero {
        padding-top: 140px;
        padding-bottom: 80px;
        min-height: auto;
    }
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .contact-hero-left {
        align-items: center;
    }
    .contact-hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-hero-right {
        margin-top: 1.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .office-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .map-column {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .contact-hero-buttons .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
    .contact-form-wrapper {
        padding: 2.25rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .office-card {
        padding: 2rem 1.5rem;
    }
    .faq-header {
        padding: 1.25rem 1.5rem;
    }
    .faq-body-content {
        padding: 0 1.5rem 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-hero-right .floating-card {
        display: none; /* Hide floating cards on very small screens to avoid overflow */
    }
    .contact-info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
}
