/* MIND-BLOWING CONTACT PAGE STYLES */
#contact {
    padding: 10px 0;
    color: #ababab;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(20, 20, 50, 0.95));
    min-height: 100vh;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 40%;
    animation-delay: 8s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(20px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-20px) rotate(270deg) scale(1.05); }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #8a2be2, #6366f1);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 10s infinite ease-in-out;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-50px) translateX(30px); }
    50% { transform: translateY(30px) translateX(-30px); }
    75% { transform: translateY(-30px) translateX(50px); }
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.animate-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.header-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #6366f1);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.animate-in .animate-title,
.animate-in .animate-subtitle,
.animate-in .header-underline {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Contact Left Section */
.contact-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #6366f1);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-header i {
    font-size: 48px;
    color: #8a2be2;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-header h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Info Items */
.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.info-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 50%;
}

.info-icon i {
    font-size: 20px;
    color: #8a2be2;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-glow {
    opacity: 1;
    animation: icon-glow 2s ease-in-out infinite alternate;
}

@keyframes icon-glow {
    0% { transform: scale(0.8); }
    100% { transform: scale(1.2); }
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.info-content a,
.info-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #8a2be2;
}

/* Social Section */
.social-section {
    margin-bottom: 40px;
    text-align: center;
}

.social-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    color: white;
}

.social-icon.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #c13584);
    color: white;
}

.social-icon.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-icon.github:hover {
    background: linear-gradient(135deg, #333, #000);
    color: white;
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    bottom: -40px;
}

/* CV Section */
.cv-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.cv-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.cv-btn:hover i {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.cv-btn:hover .btn-glow {
    opacity: 1;
    animation: btn-glow 2s ease-in-out infinite alternate;
}

.resume-btn {
    background: linear-gradient(135deg, #6366f1, #4c1d95);
}

.resume-btn:hover {
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

@keyframes btn-glow {
    0% { transform: scale(0.8) rotate(0deg); }
    100% { transform: scale(1.2) rotate(180deg); }
}

/* Contact Right Section */
.contact-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.contact-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #6366f1);
    animation: shimmer 3s infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 48px;
    color: #8a2be2;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Form Styling */
.form-group {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 20px 15px 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8a2be2;
}

.input-wrapper label {
    position: absolute;
    left: 15px;
    top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 12px;
    color: #8a2be2;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #6366f1);
    transition: all 0.3s ease;
}

.input-wrapper.focused .input-border {
    width: 100%;
}

.input-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper.focused .input-glow {
    opacity: 1;
    animation: input-glow 2s ease-in-out infinite alternate;
}

@keyframes input-glow {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.submit-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(0, 184, 148, 0.1));
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 20px;
    display: none;
}

.success-message.show {
    display: block;
    animation: success-slide 0.5s ease-out;
}

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

.success-message i {
    font-size: 48px;
    color: #2ed573;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2ed573;
    margin-bottom: 10px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Map Section */
.map-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.map-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.map-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.map-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Map Info Overlay - Top Right Corner */
.map-info-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    pointer-events: none;
}

.map-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(99, 102, 241, 0.9));
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    animation: float-map-icon 3s ease-in-out infinite;
    transform: scale(0.4); /* 60% smaller overall */
}

.map-icon-container i {
    font-size: 8px; /* 60% smaller: from 20px to 8px */
    color: white;
    animation: pulse-map 2s ease-in-out infinite;
}

/* Live Google Maps Embed */
.map-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-placeholder i {
    font-size: 64px;
    color: #8a2be2;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.map-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: map-pulse 2s ease-in-out infinite;
}

/* Map Animations */
@keyframes float-map-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-map {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes map-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

/* Support My Journey Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(20, 20, 50, 0.9));
    position: relative;
    overflow: hidden;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-visual {
    position: relative;
}

.support-visual .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.support-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(99, 102, 241, 0.3));
    border-radius: 20px;
    opacity: 0.6;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.support-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.support-badge i {
    font-size: 16px;
}

.support-content {
    padding: 20px 0;
}

.content-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.journey-badge, .impact-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.support-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.highlight-item i {
    font-size: 20px;
    color: #8a2be2;
    margin-bottom: 8px;
    display: block;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons {
    display: flex;
    justify-content: flex-start;
}

.action-btn {
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.action-btn i:last-child {
    transition: transform 0.3s ease;
}

.action-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media only screen and (max-width: 968px) {
    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .support-visual .image-wrapper {
        height: 300px;
    }
    
    .support-content {
        padding: 20px;
    }
    
    .content-header h2 {
        font-size: 28px;
    }
    
    .support-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {
    .support-section {
        padding: 40px 0;
    }
    
    .support-container {
        gap: 30px;
    }
    
    .support-visual .image-wrapper {
        height: 250px;
    }
    
    .content-header h2 {
        font-size: 24px;
    }
    
    .support-description p {
        font-size: 14px;
    }
}
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-left,
    .contact-right {
        opacity: 1;
        transform: translateX(0);
    }
    
    .animate-title {
        font-size: 36px;
    }
    
    .contact-card,
    .form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
    
    .animate-title {
        font-size: 32px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 48px;
    }
    
    .map-info-overlay {
        top: 8px;
        right: 8px;
    }
    
    .map-icon-container {
        padding: 10px; /* Larger on tablet */
        transform: scale(0.6); /* Larger scale on tablet */
    }
    
    .map-icon-container i {
        font-size: 10px; /* Larger icon on tablet */
    }
}

@media (max-width: 480px) {
    .animate-title {
        font-size: 28px;
    }
    
    .animate-subtitle {
        font-size: 18px;
    }
    
    .contact-card,
    .form-card {
        padding: 25px 15px;
    }
    
    .card-header h2,
    .form-header h2 {
        font-size: 24px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cv-btn {
        width: 100%;
        justify-content: center;
    }
    
    .resume-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-placeholder i {
        font-size: 40px;
    }
    
    .map-placeholder h3 {
        font-size: 20px;
    }
    
    .map-info-overlay {
        top: 5px;
        right: 5px;
    }
    
    .map-icon-container {
        padding: 12px; /* Larger on mobile */
        transform: scale(0.8); /* Larger scale on mobile */
    }
    
    .map-icon-container i {
        font-size: 12px; /* Larger icon on mobile */
    }
}
