/* ===================================
   Modern Home Page Design
   Inspired by Oman Agencies
   =================================== */

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #6366f1;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --white-bg: #ffffff;
    --gray-bg: #f1f5f9;
    --text-dark: #1e293b;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
    background-color: var(--white-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

section {
    padding: 80px 0;
    background-color: var(--white-bg);
}

/* ===================================
   Hero Section - Modern Slider
   =================================== */
.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark-color);
}

.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

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

/* USP Section */
.usp-section {
    padding: 80px 0;
    background: white;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.usp-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.usp-card:hover {
    transform: translateY(-10px);
}

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

.usp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.usp-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none !important;
    padding: 12px 30px;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.4);
    color: white !important;
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: white;
}

.country-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    margin-bottom: 30px;
}

.country-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.country-card:hover .country-image {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.country-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.country-region {
    font-size: 1rem;
    opacity: 0.9;
}

.country-desc {
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 0;
    opacity: 0.85;
    line-height: 1.4;
}

/* Additional Global Improvements */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Improve button consistency */
.btn {
    font-family: 'Poppins', sans-serif;
}

/* Service card improvements for light theme */
.services-section .service-card {
    background: white;
    border: 1px solid var(--border-color);
}

/* Blog card improvements */
.blog-card {
    background: white;
    border: 1px solid var(--border-color);
}

/* Testimonial improvements */
.testimonials-section .testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
}

/* Better spacing for sections */
.services-section,
.countries-section,
.owner-section,
.about-glance,
.testimonials-section,
.blog-section {
    background: var(--white-bg);
}

.services-section {
    background: var(--gray-bg);
}

.testimonials-section {
    background: var(--gray-bg);
}

/* Improve shadow effects for light theme */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Better hover states */
a {
    transition: all 0.3s ease;
}

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

/* Owner Statement Video Section */
.owner-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 400px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.owner-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.owner-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
}

/* About At Glance */
.about-glance {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-content {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-location {
    color: #64748b;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Blog Cards */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

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

    .usp-section {
        padding: 40px 0;
        margin-top: -40px;
    }

    .services-section,
    .countries-section,
    .owner-section,
    .about-glance,
    .testimonials-section,
    .blog-section {
        padding: 60px 0;
    }

    .video-container {
        height: 250px;
        margin-bottom: 30px;
    }
}

/* Page Header - Light Design */
.page-header {
    padding: 60px 0 40px;
    margin-bottom: 0;
    border-bottom: 0.5px solid #cdcdcd;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

/* Services Grid Section */
.services-grid-section {
    padding: 30px 0;
    background: var(--white-bg);
}

.services-grid-section .service-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.services-grid-section .service-card:hover {
    border-color: var(--primary-color);
}

/* Pagination Wrapper */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    gap: 8px;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
}

.page-link:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Call to Action Section */
.cta-section {
    padding: 30px 0 80px;
    background: var(--white-bg);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 60px;
    color: white;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.cta-box .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
}

.cta-box .btn-light:hover {
    background: var(--light-bg);
    transform: scale(1.05);
}

/* Service Details Section */
.service-details-section {
    padding: 80px 0;
    background: var(--white-bg);
}

/* Service Gallery */
.service-gallery {
    margin-bottom: 40px;
}

.service-gallery .main-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-gallery .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.thumbnail {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* Service Description Box */
.service-description-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.service-description-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.description-content {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

/* Service Features */
.service-features {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.service-features h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #eeeeee;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #e8f9f3;
    transform: translateX(5px);
}

.feature-item i {
    color: #3e3e3e;
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 1.05rem;
    color: #3e3e3e;
    font-weight: 500;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 25px;
    text-align: center;
}

.booking-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.booking-body {
    padding: 30px;
}

.price-display {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-per {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.booking-info {
    margin-bottom: 30px;
    padding: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

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

/* Contact Card */
.contact-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    margin-top: 3px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-item div {
    flex: 1;
}

/* Related Services Section */
.related-services-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

/* Responsive Improvements */
@media (max-width: 991px) {
    .booking-card {
        position: static;
        top: 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-gallery .main-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .service-details-section,
    .services-grid-section,
    .cta-section {
        padding: 20px 0;
    }

    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .service-description-box,
    .service-features {
        padding: 25px;
    }

    .thumbnail-images {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .thumbnail img {
        height: 80px;
    }
}

/* Footer Styles - Beautiful Animated Design */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    margin-top: 0;
}

/* Animated Wave Background */
.footer-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0.3;
}

.wave1 {
    top: 0;
    left: -100%;
    animation: wave 25s infinite linear;
    border-radius: 50% 50% 0 0;
}

.wave2 {
    top: 20px;
    left: -100%;
    animation: wave 20s infinite linear;
    opacity: 0.2;
    border-radius: 45% 55% 0 0;
}

.wave3 {
    top: 40px;
    left: -100%;
    animation: wave 30s infinite linear;
    opacity: 0.15;
    border-radius: 40% 60% 0 0;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(25%) translateY(-20px);
    }
    100% {
        transform: translateX(50%) translateY(0);
    }
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 0;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.btn-subscribe {
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 30px;
}

.footer-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    width: 150px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Title */
.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}



/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links li a:hover i {
    color: #fff;
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 2px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    display: block;
    color: white;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.footer-contact li span {
    display: block;
    line-height: 1.6;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.copyright-text a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.copyright-text a:hover {
    color: white;
}

/* Footer Bottom Links */
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-bottom-links li a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 60px 0 0;
    }

    .footer-newsletter {
        padding: 30px 20px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center !important;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright-text {
        margin-bottom: 15px !important;
    }
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--white-bg);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon i {
    color: white;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info-card p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info-card p a:hover {
    color: var(--primary-color);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s;
}

.contact-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.section-title-left {
    text-align: left;
    margin-bottom: 35px;
}

.section-title-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-title-left p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--white-bg);
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form select.form-control {
    cursor: pointer;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background: #ecfdf5;
    color: var(--primary-dark);
    border-left: 4px solid var(--primary-color);
}

/* Quick Contact Card */
.quick-contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.quick-contact-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.quick-contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s;
}

.quick-contact-item:hover {
    background: #ecfdf5;
    transform: translateX(5px);
}

.qc-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc-icon i {
    font-size: 1.5rem;
    color: white;
}

.qc-content {
    flex: 1;
}

.qc-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.qc-content a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.qc-content a:hover {
    color: var(--primary-color);
}

/* Why Contact Card */
.why-contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
}

.why-contact-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.why-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-contact-list li:last-child {
    margin-bottom: 0;
}

.why-contact-list li i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-contact-list li div {
    flex: 1;
}

.why-contact-list li strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.why-contact-list li span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Social Media Card */
.social-media-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.social-media-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.social-media-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link-large i {
    font-size: 1.3rem;
}

.social-link-large.facebook {
    background: #ecfdf5;
    color: #1877f2;
}

.social-link-large.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link-large.twitter {
    background: #ecfdf5;
    color: #1da1f2;
}

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

.social-link-large.instagram {
    background: #ecfdf5;
    color: #e4405f;
}

.social-link-large.instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: white;
}

.social-link-large.youtube {
    background: #ecfdf5;
    color: #ff0000;
}

.social-link-large.youtube:hover {
    background: #ff0000;
    color: white;
}
.social-link-large.linkedin {
    background: #ecfdf5;
    color: #196BC4;
}
.social-link-large.linkedin:hover {
    background: #196BC4;
    color: white;
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--white-bg);
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white-bg);
}

.accordion {
    --bs-accordion-border-radius: 15px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    background: white;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        margin-top: -20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-title-left h2 {
        font-size: 1.8rem;
    }

    .quick-contact-card,
    .why-contact-card,
    .social-media-card {
        padding: 30px 25px;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* About Page Styles */
.about-content-section {
    background: var(--white-bg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.about-text-content .section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-text-content .lead-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

.mission-vision-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-vision-card .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.mission-vision-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.mission-vision-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 80px;
    padding: 60px 30px;
    background: var(--gray-bg);
    border-radius: 20px;
}

.feature-box {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services Overview Section */
.services-overview-section {
    margin-top: 80px;
}

.service-overview-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

.service-overview-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-overview-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-overview-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Button Variations */
.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive for About Page */
@media (max-width: 991px) {
    .about-text-content .section-heading {
        font-size: 2rem;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .why-choose-section,
    .services-overview-section {
        margin-top: 60px;
    }

    .mission-vision-card,
    .feature-box,
    .service-overview-card {
        padding: 25px;
    }
}

/* ===== Testimonials Page Styles ===== */
/* Alert Section */
.alert-section {
    padding: 20px 0;
    background: var(--white-bg);
}
/* Share Experience Section */
.share-experience-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.share-experience-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
    border: 1px solid var(--primary-color);
}
.share-experience-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.share-experience-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 0;
}
/* Testimonials Grid */
.testimonials-grid-section {
    padding: 60px 0;
    background: var(--white-bg);
}
.testimonial-card-full {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.testimonial-author-info {
    display: flex;
    gap: 15px;
    align-items: center;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}
.testimonial-author-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.testimonial-author-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}
.testimonial-rating {
    display: flex;
    gap: 3px;
}
.testimonial-rating i {
    font-size: 1rem;
    color: #fbbf24;
}
.testimonial-rating i.filled {
    color: #fbbf24;
}
.testimonial-body {
    flex: 1;
    margin-bottom: 15px;
}
.testimonial-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}
.testimonial-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
/* Why Testimonials Section */
.why-testimonials-section {
    padding: 80px 0;
    background: var(--gray-bg);
}
.why-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}
.why-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}
.why-testimonial-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.why-testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}
/* Review Form Section */
.review-form-section {
    padding: 80px 0;
    background: var(--gray-bg);
}
.review-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}
.reviewer-info-display {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
}
.reviewer-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}
.reviewer-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.reviewer-details p {
    color: var(--text-secondary);
    margin: 0;
}
/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}
.star-rating-input input[type="radio"] {
    display: none;
}
.star-rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #e0e0e0;
    transition: all 0.2s;
    margin: 0;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
    color: #fbbf24;
}
.star-rating-input label:hover {
    transform: scale(1.2);
}
/* Info Note */
.info-note {
    background: #e8f4fd;
    border-left: 4px solid #2196f3;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.info-note i {
    color: #2196f3;
    font-size: 1.3rem;
    margin-top: 2px;
}
.info-note p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
/* Review Tips Card */
.review-tips-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}
.review-tips-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tips-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.tips-list li:last-child {
    border-bottom: none;
}
.tips-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}
.tips-list li span {
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Review Stats Card */
.review-stats-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px;
    border-radius: 20px;
    color: white;
}
.review-stats-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}
.stat-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.stat-item:last-child {
    margin-bottom: 0;
}
.stat-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon i {
    font-size: 1.3rem;
    color: white;
}
.stat-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}
.stat-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}
/* Responsive Testimonials */
@media (max-width: 991px) {
    .share-experience-section {
        padding: 40px 0;
    }
    .testimonials-grid-section,
    .why-testimonials-section,
    .review-form-section {
        padding: 60px 0;
    }
    .reviewer-info-display {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .share-experience-card {
        padding: 30px 20px;
        text-align: center;
    }
    .share-experience-card h2 {
        font-size: 1.5rem;
    }
    .testimonial-header {
        flex-direction: column;
        gap: 15px;
    }
    .testimonial-rating {
        justify-content: flex-start;
    }
    .review-form-wrapper {
        padding: 25px 20px;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn {
        width: 100%;
    }
}
