:root {
    --primary: #0a192f;
    --secondary: #112240;
    --accent: #64ffda;
    --text: #e6f1ff;
    --text-secondary: #fff;
    --glass-surface: rgba(17, 34, 64, 0.38);
    --glass-surface-strong: rgba(17, 34, 64, 0.56);
    --glass-border: rgba(230, 241, 255, 0.18);
    --glass-shadow: 0 24px 50px rgba(2, 12, 27, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary);
    background-image:
        linear-gradient(180deg, rgba(10, 25, 47, 0.95), rgba(2, 12, 27, 0.98)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='320' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%2300e2f7' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.36'%3E%3Cpath d='M0 42h78l20 20h72l28 28h74l32-32h70l16-16h130'/%3E%3Cpath d='M0 102h52l24 24h98l30-30h62l40 40h92l26-26h96'/%3E%3Cpath d='M0 178h92l18-18h70l34 34h84l22-22h86l24 24h90'/%3E%3Cpath d='M0 258h118l20-20h54l34-34h86l32 32h76l20-20h80'/%3E%3Cpath d='M260 0v56l-22 22v70l28 28v60l-26 26v58'/%3E%3Cpath d='M322 0v72l-30 30v58l38 38v44l-22 22v56'/%3E%3Cpath d='M198 0v50l26 26v60l-44 44v54l-28 28v58'/%3E%3Cpath d='M442 0v30l-34 34v50l-28 28v52l34 34v92'/%3E%3Cpath d='M78 0v28l32 32v46l-34 34v56l24 24v100'/%3E%3C/g%3E%3Cg fill='%2364ffda' opacity='.48'%3E%3Ccircle cx='98' cy='62' r='2'/%3E%3Ccircle cx='198' cy='90' r='2'/%3E%3Ccircle cx='304' cy='58' r='2'/%3E%3Ccircle cx='390' cy='42' r='2'/%3E%3Ccircle cx='76' cy='126' r='2'/%3E%3Ccircle cx='204' cy='96' r='2'/%3E%3Ccircle cx='306' cy='136' r='2'/%3E%3Ccircle cx='424' cy='110' r='2'/%3E%3Ccircle cx='110' cy='160' r='2'/%3E%3Ccircle cx='214' cy='194' r='2'/%3E%3Ccircle cx='320' cy='172' r='2'/%3E%3Ccircle cx='430' cy='196' r='2'/%3E%3Ccircle cx='138' cy='238' r='2'/%3E%3Ccircle cx='226' cy='204' r='2'/%3E%3Ccircle cx='344' cy='236' r='2'/%3E%3Ccircle cx='440' cy='216' r='2'/%3E%3C/g%3E%3Cg fill='%2300e2f7' opacity='.32'%3E%3Crect x='470' y='70' width='4' height='4'/%3E%3Crect x='478' y='70' width='4' height='4'/%3E%3Crect x='486' y='70' width='4' height='4'/%3E%3Crect x='470' y='78' width='4' height='4'/%3E%3Crect x='478' y='78' width='4' height='4'/%3E%3Crect x='486' y='78' width='4' height='4'/%3E%3Crect x='34' y='214' width='4' height='4'/%3E%3Crect x='42' y='214' width='4' height='4'/%3E%3Crect x='50' y='214' width='4' height='4'/%3E%3Crect x='34' y='222' width='4' height='4'/%3E%3Crect x='42' y='222' width='4' height='4'/%3E%3Crect x='50' y='222' width='4' height='4'/%3E%3Crect x='352' y='270' width='4' height='4'/%3E%3Crect x='360' y='270' width='4' height='4'/%3E%3Crect x='368' y='270' width='4' height='4'/%3E%3Crect x='352' y='278' width='4' height='4'/%3E%3Crect x='360' y='278' width='4' height='4'/%3E%3Crect x='368' y='278' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 520px 320px;
    background-position: 0 0, center top;
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: rgba(7, 17, 31, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230, 241, 255, 0.08);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav.scrolled {
    background-color: rgba(7, 17, 31, 0.46);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.55);
    border-bottom-color: rgba(100, 255, 218, 0.12);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    line-height: 1;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    position: relative;
}

.logo-square {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
}

.logo-square:first-child {
    top: 2px;
    left: 2px;
}

.logo-square:last-child {
    bottom: 2px;
    right: 2px;
}

.nav-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding-bottom: 0;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

.cta-button a {
    text-decoration: none;
    color: var(--accent);
}

.empty {
    height: 12vh;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    margin-top: 0;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

/* Contact Hero Section */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(2, 236, 253, 0.12), rgba(3, 253, 253, 0.03)),
        var(--glass-surface);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.2;
    word-wrap: break-word;
}

.contact-hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 1rem;
    line-height: 1.6;
}

/* Contact Grid */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background:
        linear-gradient(145deg, rgba(1, 249, 249, 0.1), rgba(3, 223, 247, 0.03)),
        var(--glass-surface);
    padding: 2.5rem 2rem;
    border-radius: 22px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(100, 255, 218, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    fill: none;
}

.contact-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--accent);
    word-wrap: break-word;
}

.contact-card p {
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.1rem);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-link:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 2rem 0 4rem;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(4, 230, 246, 0.1), rgba(255, 255, 255, 0.03)),
        var(--glass-surface-strong);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(30px);
}

.form-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-copy h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-copy > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.form-highlights {
    display: grid;
    gap: 1rem;
}

.highlight-item {
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(230, 241, 255, 0.1);
    background: rgba(10, 25, 47, 0.28);
}

.highlight-title {
    display: block;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 241, 255, 0.12);
    background: rgba(10, 25, 47, 0.48);
    color: var(--text);
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(230, 241, 255, 0.58);
}

.form-group select {
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.1);
    background: rgba(10, 25, 47, 0.68);
}

.form-submit {
    justify-self: center;
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.form-submit:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(100, 255, 218, 0.18);
}

.form-status {
    min-height: 1.5rem;
    color: rgba(230, 241, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #ff9b9b;
}

/* Social Section */
.social-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(230, 241, 255, 0.08);
    border-bottom: 1px solid rgba(230, 241, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.social-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.social-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    opacity: 0;
    word-wrap: break-word;
}

.social-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    opacity: 0;
    line-height: 1.6;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.social-card {
    background:
        linear-gradient(145deg, rgba(3, 236, 253, 0.1), rgba(4, 253, 245, 0.03)),
        var(--glass-surface-strong);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(100, 255, 218, 0.3);
}

.social-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent);
}

.social-card-content h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    word-wrap: break-word;
}

.social-card-content p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.5;
}

/* Footer */
footer {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(17, 34, 64, 0.7);
    padding: 3rem 0;
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(230, 241, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    list-style: none;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .contact-hero {
        margin-top: 90px;
        padding: 3rem 0;
    }

    .contact-grid,
    .social-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-section,
    .contact-form-section,
    .social-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    nav {
        padding: 1.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
            rgba(7, 17, 31, 0.72);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 1000;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid rgba(230, 241, 255, 0.08);
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        gap: 1.25rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    nav {
        padding: 1rem 0;
    }
    
    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .logo {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .logo img {
        height: 42px;
    }

    .empty {
        height: 10vh;
    }

    .contact-hero {
        min-height: 30vh;
        margin-top: 70px;
        padding: 2.5rem 0;
    }

    .contact-hero .container {
        padding: 1.5rem;
        border-radius: 22px;
        width: 90%;
    }

    .contact-section,
    .contact-form-section,
    .social-section {
        padding: 2.5rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .contact-icon svg {
        width: 35px;
        height: 35px;
    }

    .social-header {
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .form-submit {
        width: 100%;
        justify-self: stretch;
    }

    .social-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .social-card-icon {
        width: 55px;
        height: 55px;
    }

    .social-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .contact-hero {
        min-height: 25vh;
        margin-top: 60px;
        padding: 2rem 0;
    }

    .contact-section,
    .contact-form-section,
    .social-section {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }

    .contact-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-link {
        padding: 0.65rem 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .social-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .social-card-icon {
        width: 50px;
        height: 50px;
    }

    .social-card-icon svg {
        width: 25px;
        height: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-container {
        width: 85%;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .contact-hero {
        margin-top: 55px;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }

    .social-card {
        padding: 1.25rem;
    }
}
