/* 
 * Elraed Enhanced Shortcodes Styles
 * Version: 1.0.0
 * Modern professional styles for new page shortcodes
 */

/* ===== GLOBAL STYLES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center !important;
}

.section-desc-text {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Common Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===== ABOUT HERO SECTION ===== */
.elraed-about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.elraed-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.hero-description-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual-content {
    position: relative;
    height: 400px;
}

.hero-floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card.fc-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.fc-2 {
    top: 70%;
    right: 70%;
    animation-delay: 1.5s;
}

.floating-card.fc-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-card.fc-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== MISSION VISION SECTION ===== */
.elraed-mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.mission-card-text {
    color: #64748b;
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.elraed-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9e9e 0%, #ffcdcd 100%);
    color: white;
}

.stats-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-box-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-box-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== FEATURES SECTION ===== */
.elraed-features-section {
    padding: 80px 0;
    background: white;
}

.features-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.feature-box-description {
    color: #64748b;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.elraed-team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.team-member-image {
    margin-bottom: 20px;
}

.team-avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    overflow: hidden;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-description {
    color: #64748b;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.elraed-testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-box-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-box-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name-text {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.author-role-text {
    color: #64748b;
    font-size: 0.85rem;
}

/* ===== CONTACT SECTION ===== */
.elraed-contact-section {
    padding: 80px 0 0;
    background: white;
}

.contact-hero-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f766e 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    border-radius: 20px 20px 0 0;
    margin-bottom: 60px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.contact-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.contact-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.quick-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.quick-stat-icon {
    font-size: 2rem;
}

.quick-stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 0 0 80px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-form-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-wrapper {
    display: flex;
    flex-direction: column;
}

.form-label-text {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: #0f766e;
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-textarea-field {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit-wrapper {
    margin-top: 20px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.social-media-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-info-title,
.social-media-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-value {
    color: #1e293b;
    font-weight: 600;
    line-height: 1.4;
    font-size: 0.95rem;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-instagram:hover {
    background: #e4405f;
    color: white;
    border-color: #e4405f;
}

.social-youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* ===== FAQ ACCORDION SECTION ===== */
.elraed-faq-accordion {
    padding: 80px 0;
    background: white;
}

.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-accordion-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-accordion-header {
    width: 100%;
    background: #f8fafc;
    border: none;
    padding: 25px 30px;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-accordion-header:hover {
    background: #e9ecef;
}

.faq-accordion-item.active .faq-accordion-header {
    background: #0f766e;
    color: white;
}

.faq-question-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-question-text {
    flex: 1;
    text-align: right;
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-accordion-content {
    display: none;
    padding: 0;
    overflow: hidden;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block;
}

.faq-answer-text {
    padding: 25px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-footer-section {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.faq-footer-text {
    color: #64748b;
    font-size: 1rem;
}

.faq-contact-link {
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #059669;
    text-decoration: underline;
}

/* ===== PRIVACY POLICY SECTION ===== */
.elraed-privacy-policy {
    padding: 80px 0;
    background: white;
}

.policy-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.policy-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.policy-update-date {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.policy-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.policy-section-text {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.policy-contact-section {
    background: linear-gradient(135deg, #0f766e, #059669);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.policy-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-contact-text {
    font-size: 1rem;
    line-height: 1.6;
}

.policy-contact-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* ===== TERMS CONDITIONS SECTION ===== */
.elraed-terms-conditions {
    padding: 80px 0;
    background: white;
}

.terms-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.terms-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.terms-update-date {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.terms-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.terms-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.terms-section-text {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.terms-contact-section {
    background: linear-gradient(135deg, #1e293b, #0f766e);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.terms-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.terms-contact-text {
    font-size: 1rem;
    line-height: 1.6;
}

.terms-contact-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES FOR NEW SHORTCODES ===== */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .mission-grid,
    .features-grid-container,
    .team-grid-container,
    .testimonials-grid-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-quick-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .faq-accordion-header {
        font-size: 0.95rem;
        padding: 20px;
    }
    
    .faq-answer-text {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .policy-main-title,
    .terms-main-title {
        font-size: 2.2rem;
    }
    
    .policy-section,
    .terms-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .elraed-about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .section-main-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stat-box-number {
        font-size: 2.2rem;
    }
    
    .mission-card,
    .feature-box-card,
    .team-member-card,
    .testimonial-box-card {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper,
    .contact-info-card,
    .social-media-card {
        padding: 25px 20px;
    }
    
    .stats-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE TYPOGRAPHY OVERRIDES ===== */
:root {
    --fs-xs: clamp(0.7rem, 0.68rem + 0.18vw, 0.8rem);
    --fs-sm: clamp(0.8rem, 0.76rem + 0.25vw, 0.9rem);
    --fs-md: clamp(0.9rem, 0.85rem + 0.35vw, 1.0rem);
    --fs-lg: clamp(1.0rem, 0.95rem + 0.5vw, 1.2rem);
    --fs-xl: clamp(1.2rem, 1.1rem + 0.9vw, 1.6rem);
    --fs-2xl: clamp(1.5rem, 1.3rem + 1.5vw, 2.2rem);
    --fs-3xl: clamp(1.8rem, 1.4rem + 2.4vw, 2.8rem);
    --fs-4xl: clamp(2.2rem, 1.6rem + 3.0vw, 3.4rem);
}

.elraed-about-hero .hero-main-title,
.elraed-about-hero .contact-hero-title,
.policy-main-title,
.terms-main-title {
    font-size: var(--fs-3xl);
    line-height: 1.15;
}

.hero-subtitle-text,
.section-main-title,
.contact-hero-title {
    font-size: var(--fs-2xl);
}

.hero-description-text,
.section-desc-text,
.feature-box-description,
.mission-card-text,
.team-member-description,
.testimonial-text,
.contact-hero-description,
.faq-answer-text,
.policy-section-text,
.terms-section-text,
.policy-contact-text,
.terms-contact-text {
    font-size: var(--fs-md);
    line-height: 1.7;
}

.mission-card-title,
.feature-box-title,
.team-member-name,
.contact-form-header h2,
.contact-info-title,
.social-media-title,
.policy-section-title,
.terms-section-title,
.policy-contact-title,
.terms-contact-title {
    font-size: var(--fs-lg);
}

.testimonial-stars,
.author-role-text,
.contact-info-label,
.quick-stat-text,
.faq-accordion-header {
    font-size: var(--fs-sm);
}

.stat-box-number {
    font-size: var(--fs-3xl);
}

.stat-box-label {
    font-size: var(--fs-sm);
}

