/* Contact Section */
.contact {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(240, 64, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 2rem 0 2rem; /* Align content just below fixed header */
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Contact Header */
.contact-header {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-title {
    font-weight: 300;
    line-height: 1.15;
    color: #2c3e50;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.contact-highlight {
    color: #F04037;
    font-style: italic;
    font-weight: 400;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 25px rgba(240, 64, 55, 0.15));
}

.contact-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-header.animate .contact-icon img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2.5rem 0;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-methods.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(240, 64, 55, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 64, 55, 0.15);
    background: #fff;
    border-color: rgba(240, 64, 55, 0.2);
}

.contact-method-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon .contact-icon-svg {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(89%) saturate(3116%) hue-rotate(349deg) brightness(96%) contrast(95%);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon-svg {
    transform: scale(1.1);
}

.contact-method-link {
    font-size: 1.05rem;
    color: #F04037;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.contact-method:hover .contact-method-link {
    color: #E53935;
}

/* Contact CTA Button */
.contact-cta {
    margin-top: 2.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-cta.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-main-btn {
    background: linear-gradient(135deg, #F04037, #E53935);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(240, 64, 55, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.contact-main-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(240, 64, 55, 0.4);
    background: linear-gradient(135deg, #E53935, #D32F2F);
}

.contact-main-btn:hover::before {
    left: 100%;
}

.contact-main-btn:active {
    transform: translateY(-2px) scale(1.01);
}



