/* Culture Exchange Specific Styles */

/* Removed conflicting hero styles - using global hero system from styles.css */

/* Section Animations */
section:not(.shg-hero-section) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

section:not(.shg-hero-section).visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Section */
.shg-intro-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    text-align: center;
}

.shg-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.shg-intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Dynamic Sections */
.shg-dynamic-sections {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shg-dynamic-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shg-dynamic-section:last-child {
    margin-bottom: 0;
}

.shg-dynamic-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shg-dynamic-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
}

.shg-dynamic-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

.shg-dynamic-section-subtitle {
    color: #007bff;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    letter-spacing: 0.01em;
}

.shg-dynamic-section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.shg-dynamic-section-text p {
    margin-bottom: 1rem;
}

/* Images */
.shg-dynamic-section-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.shg-dynamic-section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.shg-dynamic-section-image:hover {
    transform: scale(1.05);
}

/* Enquire Button */
.shg-enquire-btn-wrapper {
    margin: 1.5rem 0;
}

.shg-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.shg-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* PDF Download */
.pdf-download-container {
    margin: 1.5rem 0;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc3545;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.pdf-download-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    text-decoration: none;
    color: white;
}

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

/* Enquire Modal */
.shg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.shg-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.shg-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.shg-enquiry-subject {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #495057;
    border-left: 4px solid #007bff;
}

.shg-form-group {
    margin-bottom: 1rem;
}

.shg-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.shg-form-group input,
.shg-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.shg-form-group input:focus,
.shg-form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.shg-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.shg-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.shg-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.shg-submit-btn:hover {
    background: #0056b3;
}

/* Culture Exchange Specific Animations */
@keyframes culture-fly-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes culture-fly-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Culture exchange specific hero animations with higher specificity */
.culture-hero .shg-hero-title.animate {
    animation: culture-fly-in-left 1s ease forwards;
}

.culture-hero .shg-hero-subtitle.animate {
    animation: culture-fly-in-right 1s ease 0.3s forwards;
}

/* Initially hide elements before animation - culture page specific */
.culture-hero .shg-hero-title:not(.animate),
.culture-hero .shg-hero-subtitle:not(.animate) {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .shg-dynamic-sections {
        padding: 3rem 1.5rem;
    }

    .shg-dynamic-section {
        padding: 1.5rem;
    }

    .shg-dynamic-section-title {
        font-size: 1.75rem;
    }

    .shg-dynamic-section-text {
        font-size: 1rem;
    }

    .shg-dynamic-section-images {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .shg-intro-section {
        padding: 2.5rem 1.5rem;
    }

    .shg-intro-text {
        font-size: 1.3rem;
    }

    /* Media query adjustments for hero section handled by global styles */
}

@media (max-width: 768px) {
    /* Hero section responsive styles handled by global styles */

    .shg-dynamic-sections {
        padding: 2rem 1rem;
    }

    .shg-dynamic-section {
        padding: 1.5rem;
    }

    .shg-dynamic-section-title {
        font-size: 1.5rem;
    }

    .shg-dynamic-section-images {
        grid-template-columns: 1fr;
    }

    .shg-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .shg-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Hero section responsive styles handled by global styles */

    .shg-intro-text {
        font-size: 1.2rem;
    }

    .shg-enquire-btn,
    .pdf-download-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Hero content styles handled by global styles */
}

@media (max-width: 320px) {
    /* Hero section responsive styles handled by global styles */
} 