/* combined-styles.css */
:root {
    --light-green: #e8f5e9;
    --medium-green: #4caf50;
    --dark-green: #2e7d32;
    --accent-color: #ff9800;
    --text-dark: #333;
    --text-light: #f5f5f5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

.arabic-text {
    font-family: 'Amiri', serif;
    direction: rtl;
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: rgba(255, 255, 255, 0.846);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-green) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--dark-green) !important;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
    z-index: 1100; /* always above nav items */
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 125, 50, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Toggle Positioning Fix */
.navbar-nav .lang-toggle {
    margin-left: 15px;
    margin-right: 0;
    transition: all 0.3s ease;
}

/* For RTL languages, adjust the positioning */
[dir="rtl"] .navbar-nav .lang-toggle {
    margin-left: 0;
    margin-right: 15px;
}

/* Ensure proper alignment in navbar */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
}

/* let UL center in collapse */
.navbar-nav.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .navbar-nav {
    justify-content: flex-start;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav .lang-toggle {
        margin: 10px 0;
        order: 99; /* push to the end */
        width: 100%; /* full-width button */
        text-align: center;
    }
}

/* ===== LANGUAGE TOGGLE STYLES ===== */
.lang-btn {
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.lang-btn:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
}

/* Default: LTR (English) */
.navbar .lang-container {
  order: 3; /* far left */
}
.navbar .collapse {
  order: 2; /* middle */
}
.navbar .navbar-brand {
  order: 1; /* far right */
}
.navbar .navbar-toggler {
  order: 4; /* always last in flex row */
}

/* RTL (Arabic) */
[dir="rtl"] .navbar .lang-container {
  order: 3; /* far right */
}
[dir="rtl"] .navbar .collapse {
  order: 2; /* middle */
}
[dir="rtl"] .navbar .navbar-brand {
  order: 1; /* far left */
}
[dir="rtl"] .navbar .navbar-toggler {
  order: 4; /* still last */
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===== HERO SECTION STYLES (HOMEPAGE) ===== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== PAGE HERO STYLES (ABOUT PAGE) ===== */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-green);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto;
}

 /* Daily Reminder Modal Styles */
.reminder-modal .modal-content {
    background: linear-gradient(135deg, #e8f5e9 0%, #4caf50 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.reminder-modal .modal-header {
    border-bottom: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
}
.reminder-modal .modal-body {
    padding: 40px 30px;
    text-align: center;
    background: rgba(255,255,255,0.95);
    margin: 0 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.reminder-modal .modal-footer {
    border-top: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    padding: 20px 30px;
}
.reminder-title {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
}
.reminder-content {
    font-family: 'Amiri', serif;
    font-size: 1.4rem;
    line-height: 2.2;
    color: var(--dark-green);
    direction: rtl;
    text-align: center;
    white-space: pre-line;
}
.floral-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="%232e7d32" d="M50,20 A30,30 0 1,1 50,80 A30,30 0 1,1 50,20 Z" transform="rotate(30,50,50)"/><circle cx="50" cy="50" r="15" fill="%234caf50"/></svg>');
    background-size: 200px;
    opacity: 0.3;
    z-index: -1;
}
.btn-close-custom {
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.btn-close-custom:hover {
    background: var(--dark-green);
    color: white;
    transform: rotate(90deg);
}
.reminder-icon {
    font-size: 3rem;
    color: var(--medium-green);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* Navbar brand logo circle */
.navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* Ensure brand text is always visible */
.navbar-brand span {
    display: inline !important;
    visibility: visible !important;
}

/* ===== ABOUT SECTION STYLES (HOMEPAGE) ===== */
.about-section {
    background-color: var(--light-green);
}

.book-cover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    transition: transform 0.5s ease;
}

.book-cover:hover {
    transform: translateY(-10px);
}

/* ===== ABOUT AUTHOR SECTION STYLES (ABOUT PAGE) ===== */
.about-author-section {
    background-color: var(--light-green);
}

.author-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto 30px;
    display: block;
}

.author-qualifications {
    list-style: none;
    padding: 0;
}

.author-qualifications li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.author-qualifications li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--medium-green);
    font-weight: bold;
}

/* ===== FEATURES SECTION STYLES (HOMEPAGE) ===== */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--medium-green);
    margin-bottom: 20px;
}

/* ===== BOOK ACCORDION SECTION STYLES (ABOUT PAGE) ===== */
.accordion-section {
    background: #f9f9f9;
}

.horizontal-accordion {
    display: flex;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.accordion-item {
    flex: 1;
    position: relative;
    transition: flex 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

.accordion-item:hover {
    flex: 2;
}

.accordion-item.active {
    flex: 3;
}

.accordion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.accordion-item:hover .accordion-bg {
    transform: scale(1.05);
}

.accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.accordion-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 90%;
}

.accordion-item.active .accordion-content,
.accordion-item:hover .accordion-content {
    transform: translateY(0);
    opacity: 1;
}

.accordion-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.accordion-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Book Accordion Section - Mobile Fix */
 /* Mobile Accordion Styles */
@media (max-width: 768px) {
    .horizontal-accordion {
        display: none;
    }
    
    .mobile-accordion {
        display: block;
    }
    
    .mobile-accordion-item {
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-accordion-header {
        padding: 15px;
        background-color: #f8f9fa;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
    }
    
    .mobile-accordion-header h3 {
        margin: 0;
        font-size: 1.1rem;
    }
    
    .mobile-accordion-content {
        padding: 0 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .mobile-accordion-item.active .mobile-accordion-content {
        padding: 15px;
        max-height: 500px;
    }
    
    .mobile-accordion-icon {
        transition: transform 0.3s ease;
    }
    
    .mobile-accordion-item.active .mobile-accordion-icon {
        transform: rotate(180deg);
    }
}

@media (min-width: 769px) {
    .mobile-accordion {
        display: none;
    }
}

/* ===== TESTIMONIALS STYLES (HOMEPAGE) ===== */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-green);
}

/* ===== OBTAIN BOOK SECTION STYLES (ABOUT PAGE) ===== */
.obtain-book-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    color: white;
}

.obtain-book-section .section-title {
    color: white;
}

.obtain-book-section .section-title:after {
    background: var(--accent-color);
}

.store-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.store-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.store-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links a {
    color: var(--light-green);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .horizontal-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .accordion-item {
        height: 200px;
    }
    
    .lang-toggle {
        position: static;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}


/* ===== CONTACT FORM STYLES ===== */
.contact-form-section {
    background-color: var(--light-green);
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-form-card .form-control {
    border: 2px solid #e8f5e9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form-card .form-control:focus {
    border-color: var(--medium-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    background-color: white;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form-card .btn-success {
    background: var(--dark-green);
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-card .btn-success:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* Contact Info Section */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e8f5e9;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--medium-green);
    margin-bottom: 20px;
    background: var(--light-green);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px;
}

.accordion-item {
    border: 2px solid #e8f5e9;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.accordion-button {
    background: white;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--light-green);
    color: var(--dark-green);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--medium-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e7d32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e7d32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    background: white;
    color: var(--text-dark);
    line-height: 1.7;
    border-top: 1px solid #e8f5e9;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v1'/%3e%3c/svg%3e");
}

.form-control.is-valid {
    border-color: var(--medium-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232e7d32' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--medium-green);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

    /* Success Message */
    .alert-success {
        background: var(--light-green);
        border: 2px solid var(--medium-green);
        color: var(--dark-green);
        border-radius: 10px;
        padding: 15px 20px;
        margin-top: 20px;
    }

    /* RTL Support for Contact Form */
    [dir="rtl"] .contact-form-card .form-control {
        text-align: right;
    }

    [dir="rtl"] .accordion-button {
        text-align: right;
    }

    [dir="rtl"] .accordion-button::after {
        margin-left: 0;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .contact-form-card {
        padding: 25px;
        margin: 0 10px;
    }

    .contact-info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 15px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

    @media (max-width: 576px) {
    .contact-form-card {
        padding: 20px 15px;
    }

    .contact-form-card .btn-success {
        width: 100%;
        padding: 12px 20px;
    }

    .contact-info-card {
        text-align: center;
    }
}

/* Additional styles specific to this page */
.construction-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    text-align: center;
}

.construction-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.construction-icon {
    font-size: 5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.construction-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.construction-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-custom {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px 10px;
}

.btn-primary-custom:hover {
    background-color: var(--medium-green);
    border-color: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px 10px;
}

.btn-outline-custom:hover {
    background-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-content {
        padding: 30px 20px;
    }
    
    .construction-icon {
        font-size: 4rem;
    }
}