/* ===================== MODERN CONTACT PAGE STYLES ===================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* ===================== HERO SECTION ===================== */
.contact-hero-section {
    margin-top: 80px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.contact-img-left, .contact-img-right {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.contact-img-left img, .contact-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-img-left:hover img, .contact-img-right:hover img {
    transform: scale(1.05);
}

.contact-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.contact-hero-content {
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Mobile: tighten hero vertical spacing */
@media (max-width: 600px) {
    .contact-hero-section {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        min-height: 34vh !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .contact-hero-container .contact-hero-images {
        height: 240px !important;
        gap: 12px !important;
        border-radius: 12px !important;
    }

    .contact-hero-overlay {
        padding: 18px 22px !important;
        border-radius: 12px !important;
    }

    .contact-hero-title {
        font-size: 1.6rem !important;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem !important;
    }
}

/* ===================== INTRO SECTION ===================== */
.contact-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contact-intro-container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-intro-header {
    margin-bottom: 50px;
}

.contact-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-intro-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-intro-footer {
    text-align: left;
    max-width: 90vw;
    margin: 0 auto;
}

.contact-intro-footer p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
}

/* ===================== CONTACT FORM SECTION ===================== */
.contact-form-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-form-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-input, .contact-textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
    margin-top: 20px;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.contact-btn:hover .btn-icon {
    transform: translateX(5px);
}

.contact-form-bg {
    position: relative;
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* ===================== INFO CARDS SECTION ===================== */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-info-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff9800;
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    border-color: #ff9800;
}

.contact-info-card.highlight:hover {
    background: linear-gradient(135deg, #ff6f00, #ff9800);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
}

.contact-info-card.highlight .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-card.highlight h4 {
    color: white;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.help-btn {
    display: inline-block;
    background: white;
    color: #ff9800;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* ===================== MAP SECTION ===================== */
.contact-map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.map-header p {
    font-size: 1.1rem;
    color: #666;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 40vw;
    border: none;
}

/* ===================== CTA SECTION ===================== */
.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.85) 0%, rgba(85, 85, 85, 0.85) 100%), url('../image/johannes-plenio-qkfxBc2NQ18-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 152, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 50px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: white;
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #ff6f00, #e65100);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Add floating particles effect */
.cta-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 152, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 193, 7, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 235, 59, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 152, 0, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 193, 7, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* ===================== MOBILE STYLES ===================== */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-overlay {
        padding: 30px 40px;
    }
    
    .contact-hero-images {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .help-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hide contact form background on mobile */
    .contact-form-bg {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    /* ...existing mobile navbar styles... */
    
    .contact-hero-section {
        margin-top: 20px;
    }
    
    .contact-hero-images {
        height: 250px;
        border-radius: 10px;
    }
    
    .contact-hero-overlay {
        padding: 20px 25px;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-intro-section,
    .contact-form-section,
    .contact-info-section,
    .contact-map-section,
    .contact-cta-section {
        padding: 50px 0;
    }
    
    .contact-intro-container,
    .contact-info-container,
    .map-container,
    .cta-container {
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .section-header h3,
    .map-header h3,
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .contact-intro-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .contact-info-card {
        padding: 20px 12px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contact-info-card p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .help-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Ensure background stays hidden on mobile */
    .contact-form-bg {
        display: none !important;
    }
}

.about-mobile-sidebar-overlay, .about-mobile-sidebar-overlay *:not(.about-mobile-sidebar) {
    background: transparent !important;
   
}

/* ===================== NAVBAR AND FOOTER COMPATIBILITY ===================== */
/* ...existing navbar and footer styles... */