/* Modern Contact Page Styles */

/* Hero Section */
.contact-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.95) 0%, rgba(96, 202, 249, 0.95) 100%);
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/slider/abc.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Breadcrumb */
.contact-breadcrumb {
    margin-top: 30px;
    text-align: center;
}

.contact-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.contact-breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-breadcrumb li a:hover {
    color: white;
}

.contact-breadcrumb li.active {
    color: white;
    font-weight: 600;
}

.contact-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.7;
}

/* Introduction Section */
.contact-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-intro-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01c057 0%, #60caf9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

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

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #01c057 0%, #60caf9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(1, 192, 87, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(1, 192, 87, 0.4);
}

.contact-info-icon i {
    font-size: 36px;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-info-card:hover h3 {
    color: #01c057;
}

.contact-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-info-card a {
    color: #01c057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #00a045;
    text-decoration: underline;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-map-wrapper {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.contact-map-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

/* Call to Action Section */
.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/slider/abc.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #01c057 0%, #00a045 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #01c057;
    box-shadow: 0 4px 15px rgba(1, 192, 87, 0.3);
}

.contact-cta-button:hover {
    background: linear-gradient(135deg, #00a045 0%, #01c057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 192, 87, 0.5);
    color: #ffffff;
}

.contact-cta-button i {
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-content h1 {
        font-size: 48px;
    }
    
    .contact-hero-content p {
        font-size: 18px;
    }
    
    .contact-intro-content h2 {
        font-size: 36px;
    }
    
    .contact-cta-title {
        font-size: 36px;
    }
    
    .contact-cta-text {
        font-size: 18px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .contact-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-intro-section {
        padding: 60px 0;
    }
    
    .contact-intro-content h2 {
        font-size: 28px;
    }
    
    .contact-intro-content p {
        font-size: 16px;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 35px 25px;
    }
    
    .contact-map-section {
        padding: 60px 0;
    }
    
    .contact-map-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-map-wrapper iframe {
        height: 300px;
    }
    
    .contact-map-title {
        font-size: 20px;
    }
    
    .contact-cta-section {
        padding: 80px 0;
    }
    
    .contact-cta-title {
        font-size: 28px;
    }
    
    .contact-cta-text {
        font-size: 16px;
    }
    
    .contact-cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-info-icon i {
        font-size: 32px;
    }
    
    .contact-info-card h3 {
        font-size: 20px;
    }
    
    .contact-info-card p {
        font-size: 15px;
    }
    
    .contact-map-wrapper iframe {
        height: 250px;
    }
    
    .contact-cta-title {
        font-size: 24px;
    }
    
    .contact-cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

