/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5a4a;
    --secondary-color: #2d5a4a;
    --accent-color: #40e0d0;
    --accent-orange: #cd853f;
    --light-green: #2d5a4a;
    --dark-green: #2d5a4a;
    --teal-bg: #2d5a4a;
    --turquoise: #40e0d0;
    --pale-green: #8CC084;
    --orange-brown: #cd853f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

#expo-div{
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img{
    width: 90px;
    height: auto;
}

.sponsor-image{
    width: 160px;
    height: auto;
    margin: 0 10px;
}

.pss-image {
    width: 190px;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-arabic {
    font-family: 'Amiri', serif;
    font-weight: 700;
}
.title-sponsor{
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--light-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--light-gray);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

#about-the-init-header {
    margin-bottom: 4rem !important;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* section header */
#q3-section-header {
    text-align: start;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-family: 'Amiri', serif;
    margin: 0;
    font-size: 1.5rem;
}

.nav-logo span {
    color: var(--gray);
    font-size: 0.9rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    font-size: 0.95rem;
    padding:1.5rem
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#expo-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

#expo-link:hover {
    color: var(--primary-color);
}

#expo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

#expo-link:hover::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.language-toggle{
    margin-right:1rem;
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.lang-btn {
    background: var(--light-green);
    color: var(--white);
    border: 1px solid var(--gray);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding-top: 80px;
    position: relative;
}

.expo-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding-top: 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.title-main {
    display: block;
    font-weight: 700;
}

.title-arabic {
    display: block;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-container {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    max-height: 400px;
    flex-direction: column;
    gap: 1rem;
}

.hero-paragraph {
    width: 70%;
    color: var(--dark-green);
    border-radius: 8px;
    background-color: rgba(255, 255, 255);    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    direction: rtl;
}


.animate-fade {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.ghars-logo{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.ghars-logo img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.app-content-demo span {
    color:var(--light-gray)
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 0.2rem;
}

.app-badge img {
    height: 50px;
    transition: var(--transition);
}

.app-badge:hover img {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-paragraph {
    text-align: center;
    font-size: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--light-gray);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.goals .section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.goals .section-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.social-media .section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.social-media .section-subtitle {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.expo-about {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    margin: 0;
}

.about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    /* optional, in case you had rounded corners before */
}


/* Goals Section */
.goals {
    padding: 6rem 0;
    background: var(--primary-color);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* Program Sections */
.program-section {
    padding: 2rem 0;
    margin: 4rem 4rem;
    border : 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.programs-header {
    padding: 2rem 0;
    padding-bottom: 0;
    margin-bottom: 0 !important;
    background: var(--white);
}

.program-green {
    background: var(--primary-color);
    color: var(--white);
}

.program-green .section-title,
.program-green .section-subtitle {
    color: var(--white);
}

.program-white {
    background: var(--white);
}

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

.program-text ul {
    list-style: none;
    padding: 0;
}

.program-text li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.program-image {
    /* Placeholder for images */
}

@media (max-width: 768px) {
    .program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .program-section {
        margin: 2rem 1rem;
    }
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.goal-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.goal-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: var(--white);
}

.programs-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-quarter {
    background: var(--white);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li:dir(rtl) {
    padding-right: 1.5rem; 
    padding-left: 0;       
}

.timeline-content li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0; 
    font-size: 1.2rem;
}

.timeline-content li:dir(rtl)::before {
    left: auto;  
    right: 0;    
}

/* App Section */
.app-section {
    padding: 1rem 0;
    background: var(--primary-color);
    color: var(--white);
}

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

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.app-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.app-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.feature i {
    color: var(--pale-green);
    font-size: 1.3rem;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
}

.app-download-btn {
    width: max-content;
}

.app-download-btn img {
    height: 60px;
    cursor: pointer;
    transition: var(--transition);
}

.app-download-btn:hover img {
    transform: scale(1.05);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    margin-bottom: 2rem;
}

.app-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.app-content-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-card {
    background: var(--light-green);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.demo-card i {
    font-size: 1.5rem;
    color: var(--pale-green);
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: var(--white);
}

.social-link.facebook:hover {
    background: #4267b2;
    color: var(--white);
}

.social-link.tiktok:hover {
    background: #000;
    color: var(--white);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: var(--white);
    color: var(--primary-color);
}

.team .section-title {
    color: var(--primary-color);
}

.team .section-subtitle {
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--turquoise);
    background: var(--white);
}

.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--turquoise);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: var(--orange-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.member-info h3 {
    color: var(--turquoise);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--orange-brown);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.contact-info {
    width: 100%;
    max-width: 600px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
}

.contact-method i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.volunteer-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.volunteer-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

/* .footer-section ul li a:hover {
    color: var(--primary-color);
} */

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--turquoise);
    color: var(--white);
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-app-badges img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .nav-logo h2{
        font-size: 1.2rem;
    }
    .nav-logo span{
        font-size: 0.8rem;  
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    

    .nav-logo h2{
        font-size: 1.3rem;
    }
    .nav-logo span{
        font-size: 0.9rem;  
    }

    .app-section{
        margin:auto;
        display:flex;
        align-items:center;
        flex-direction: column;
    }

    .ghars-logo{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        margin: 2rem auto;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-arabic {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-arabic {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Styling */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem auto;
    max-width: 500px;
}

#contact-form input,
#contact-form textarea {
    padding: 12px 16px;
    border: 2px solid var(--dark-green);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark-gray);
    transition: var(--transition);
    background: var(--white);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: var(--gray);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(64, 224, 208, 0.1);
    background: var(--white);
}

#contact-form textarea {
    min-height: 120px;
    resize: vertical;
    font-size: 15px;
}

#contact-form button {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact-form button:hover {
    background: var(--accent-color);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

#contact-form button:active {
    transform: translateY(-1px);
}

/* Contact Form Message Styling */
.contact-form-message {
    max-width: 500px;
    width: 100%;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
    min-height: 60px;
    border-radius: var(--border-radius);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.contact-form-message.show {
    opacity: 1;
    pointer-events: auto;
}

.contact-form-message.success {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.contact-form-message.error {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Expo Participation Button - Fixed */
.expo-participate-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-green);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 100;
  display: inline-block;
  border: 2px solid #40e0d0;
}

.expo-participate-btn:hover {
  background: #2d5a4a;
  color: #40e0d0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(64, 224, 208, 0.4);
}

@media (max-width: 768px) {
  .expo-participate-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
