/* ==================== Contact Page Styles ==================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Classes for scroll animations */
.hidden {
    opacity: 0;
    transition: all 1s;
}

.slide-in-right {
    transform: translateX(-50px);
}

.slide-in-left {
    transform: translateX(50px);
}

.show {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Page Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(72, 207, 203, 0.5), rgba(34, 151, 153, 0.5)), 
                url('../images/Contact-images/Contact_Us.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    text-align: center;
    padding: 40px 0 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.contact-hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 2.8rem;
    margin: 10px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.contact-hero-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.contact-hero-icon i {
    font-size: 50px;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.contact-hero:hover .contact-hero-icon i {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.contact-hero-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Tabs Container */
.modern-tab.sidebar {
    background: #fff;
    border-radius: 16px 0 0 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0) 100%);
}

.modern-tabs {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 30px 0 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 20px 0;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.tabs-navigation::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.tab-nav-item {
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    min-width: 200px;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transform: translateY(1px);
    margin-right: 5px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.05);
}

.tab-nav-item:last-child {
    margin-right: 0;
}

.tab-nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
}

.tab-nav-item.active {
    background: #fff;
    border-color: var(--primary-color);
    border-bottom: 2px solid #fff;
    margin-bottom: -1px;
    box-shadow: 0 -5px 15px rgba(72, 207, 203, 0.1);
    position: relative;
    z-index: 2;
}

.tab-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.tab-nav-item.active::before {
    transform: scaleX(1);
}

.tab-nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(72, 207, 203, 0.3);
}

.tab-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(72, 207, 203, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-nav-item.active .tab-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.tab-icon i {
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tab-nav-item.active .tab-icon i {
    color: #fff;
    transform: scale(1.1);
}

.tab-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
    transition: all 0.3s ease;
}

.tab-nav-item.active .tab-text h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.tab-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    transition: all 0.3s ease;
}

.tab-nav-item.active .tab-text p {
    color: var(--primary-color);
}

/* Tabs Content */
.tabs-content-wrapper {
    position: relative;
    background: #fff;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.tab-pane {
    padding: 30px 40px 40px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
    display: none;
    background: #fff;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tabs-navigation {
        padding: 10px 10px 0;
        gap: 8px;
    }
    
    .tab-nav-item {
        padding: 15px 10px;
        min-width: 160px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .tab-icon i {
        font-size: 18px;
    }
    
    .tab-text h4 {
        font-size: 14px;
    }
    
    .tab-text p {
        font-size: 12px;
    }
    
    .tab-pane {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .modern-tabs {
        border-radius: 12px;
        margin: 20px 0 40px;
    }
    
    .tabs-navigation {
        flex-direction: column;
        padding: 15px 15px 0;
        gap: 10px;
    }
    
    .tab-nav-item {
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        margin-right: 0;
        margin-bottom: 5px;
        text-align: right;
        display: flex;
        align-items: center;
        min-width: auto;
        padding: 15px 20px;
    }
    
    .tab-nav-item::before {
        right: auto;
        width: 3px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: center top;
    }
    
    .tab-nav-item.active {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .tab-nav-item.active::before {
        transform: scaleY(1);
    }
    
    .tab-icon {
        margin: 0 0 0 15px;
        width: 40px;
        height: 40px;
    }
    
    .tab-text {
        text-align: right;
        flex: 1;
    }
    
    .tab-pane {
        padding: 25px 15px;
    }
}

/* Category Selection */
.category-selection {
    margin: 0 0 30px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.category-selection .section-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px;
    font-weight: 600;
    position: relative;
    padding-right: 15px;
}

/* Removed the vertical line from section title */

.category-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.category-option {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category-option:hover .category-card {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(72, 207, 203, 0.15);
}

.category-option input[type="radio"]:checked + .category-card {
    border-color: var(--primary-color);
    background: rgba(72, 207, 203, 0.05);
    box-shadow: 0 5px 15px rgba(72, 207, 203, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 207, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-option input[type="radio"]:checked + .category-card .category-icon {
    background: var(--primary-color);
}

.category-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-option input[type="radio"]:checked + .category-card .category-icon i {
    color: #fff;
    transform: scale(1.1);
}

.category-details h5 {
    margin: 0 0 5px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-option input[type="radio"]:checked + .category-card .category-details h5 {
    color: var(--primary-color);
}

.category-details p {
    margin: 0;
    color: #777;
    font-size: 13px;
    transition: all 0.3s ease;
}

/* Form Content */
.form-content {
    margin-top: 30px;
    animation: fadeIn 0.5s ease-out;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Form and Information Section */
.contact-section {
    padding: 30px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
    z-index: 1;
}

/* Tab-specific styles */
#contact-info .contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Map Tab Styles */
#map-section .map-tab-content {
    padding: 20px 0;
}

#map-section .map-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
}

#map-section .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.contact-wrapper {
    display: block;
    margin-top: 0;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .tab-pane {
        padding: 20px 15px;
    }
    
    #map-section .map-container {
        height: 350px;
    }
}

/* Animation for tab content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form-wrapper {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

/* 3. Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 5px;
}

.contact-info-header .section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.contact-info-header .section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* 4. Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-card {
    background: white;
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(72, 207, 203, 0.25);
    border-color: var(--primary-color);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: white;
    box-shadow: 0 6px 15px rgba(72, 207, 203, 0.3);
    transition: transform 0.4s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.info-card-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.info-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 15px;
}

.map-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 10px;
}

.map-container-small {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.map-container-small iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

/* 5. Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 55px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(72, 207, 203, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(72, 207, 203, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-light);
}

/* 6. Modern Form Styling */
.modern-contact-form {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 22px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.input-wrapper i {
    position: absolute;
    right: 20px;
    color: var(--primary-color);
    font-size: 17px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
    background: transparent;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 19px 55px 19px 20px;
    border: 2px solid #e8ecef;
    border-radius: 16px;
    font-size: 16px;
    color: var(--text-color);
    background: #f8f9fa;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: right;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 500;
    position: relative;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.input-wrapper.select-wrapper::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348cfcb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 5;
}

.input-wrapper.select-wrapper.select-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.input-wrapper select:hover {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(72, 207, 203, 0.1);
}

.input-wrapper select:focus,
.input-wrapper select:active {
    background-color: #ffffff !important;
}

.input-wrapper select option {
    padding: 18px 25px;
    background: #faf6f6;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    direction: rtl;
    text-align: right;
    border: none;
    border-bottom: 1px solid #e8ecef;
    transition: all 0.3s ease;
}

.input-wrapper select option[disabled] {
    display: none;
}

.input-wrapper select option:hover {
    background: #f0f8ff;
    color: var(--primary-color);
    padding-right: 30px;
}

.input-wrapper select option:checked {
    background: linear-gradient(135deg, #4285f4, #357ae8);
    color: white;
    font-weight: 600;
    border: none;
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 20px rgba(72, 207, 203, 0.15);
    transform: translateY(-2px);
}

.input-wrapper input:focus ~ i,
.input-wrapper select:focus ~ i,
.input-wrapper textarea:focus ~ i {
    color: var(--secondary-color);
    transform: scale(1.1);
    z-index: 10;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 19px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 220px;
}

/* 7. Modern Submit Button */
.modern-submit-btn {
    width: 100%;
    padding: 19px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(72, 207, 203, 0.4);
    margin-top: 5px;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(72, 207, 203, 0.5);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.modern-submit-btn:hover .btn-shine {
    left: 100%;
}

/* 8. Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(72, 207, 203, 0.05), rgba(34, 151, 153, 0.05));
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(72, 207, 203, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Add Review Section */
.add-review-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.add-review-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.add-review-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
    text-align: right;
}

.review-form {
    width: 100%;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form .input-wrapper {
    position: relative;
    width: 100%;
}

.review-form .input-wrapper input,
.review-form .input-wrapper select,
.review-form .input-wrapper textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-color);
    background: #f8f9fa;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: right;
}

.review-form .input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.review-form .input-wrapper input:focus,
.review-form .input-wrapper select:focus,
.review-form .input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 15px rgba(72, 207, 203, 0.15);
}

.review-form .btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(72, 207, 203, 0.3);
}

.review-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 207, 203, 0.4);
}

.review-form .btn-submit i {
    margin-left: 8px;
}

/* 9. Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 36px; }
    .contact-hero p { font-size: 16px; }
    .contact-hero-icon { font-size: 60px; }
    
    .contact-section {
        padding: 40px 0 35px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        gap: 20px;
    }
    
    .contact-info-header {
        margin-bottom: 0;
    }
    
    .contact-info-header .section-title {
        font-size: 26px;
        margin-bottom: 6px;
    }
    
    .contact-info-header .section-subtitle {
        font-size: 14px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .contact-map-section {
        margin-top: 20px;
    }
    
    .map-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .map-container-small iframe {
        height: 250px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-header-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 16px 50px 16px 18px;
        font-size: 15px;
    }
    
    .modern-submit-btn {
        padding: 18px;
        font-size: 16px;
    }
    
    .reviews-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .add-review-section {
        padding: 25px;
    }
    
    .add-review-section h3 {
        font-size: 22px;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==================== Mobile Menu Styles ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header h2 {
    font-size: 20px;
    color: var(--primary-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-menu-list {
    list-style: none;
    padding: 20px;
}

.mobile-menu-list li {
    margin-bottom: 15px;
}

.mobile-menu-list a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.mobile-menu-list a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}
