/* Contact Page Premium Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(8, 145, 178, 0.9) 100%),
        url('../images/ui/hero-bg-2.jpg') center/cover no-repeat fixed;
    padding: 140px 0 180px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-hero .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 4rem;
    border-radius: 30px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 118, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(15, 118, 110, 0.2);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    transform: rotateY(180deg);
}

.contact-icon i {
    font-size: 2rem;
    color: #0f766e;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #115e59;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: #0f766e;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #f59e0b;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-info {
    padding-right: 2rem;
}

.form-info h2 {
    font-size: 2.5rem;
    color: #115e59;
    margin-bottom: 1.5rem;
}

.form-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.3);
}

.quick-item .icon i {
    color: white;
    font-size: 1.2rem;
}

.quick-item .text h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.quick-item .text p {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Form Box */
.form-box {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.form-box h3 {
    font-size: 1.8rem;
    color: #115e59;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #0f766e;
    background: white;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.social-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-link {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: white;
    color: #0f766e;
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .form-info {
        padding-right: 0;
        text-align: center;
    }

    .quick-contact {
        align-items: center;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .glass-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-box {
        padding: 2rem;
    }


}

/* Custom Wave Fill for Contact Page */
.contact-hero .wave-bottom .shape-fill {
    fill: #ffffff;
}