/* ========================================
   Raivol Tourism Website - Main CSS
   Modern Golden Theme Design
======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Gold Colors */
    --gold-primary: #d4af37;
    --gold-secondary: #c9a535;
    --gold-dark: #b8941f;
    --gold-light: #f4e5b2;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c9a535 100%);

    /* Neutral Colors */
    --dark-primary: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;

    /* Text Colors */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;

    /* Fonts */
    --font-primary: 'Tajawal', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 15px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-padding);
}

/* ========== Utility Classes ========== */
.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.bg-gold-gradient {
    background: var(--gold-gradient) !important;
}

.bg-dark {
    background-color: var(--dark-primary) !important;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--gold-primary);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========== Navbar ========== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(26, 26, 26, 0.98);
}

.navbar-brand .brand-logo {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .brand-subtitle {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
    background: rgba(212, 175, 55, 0.1);
}

.nav-link i {
    font-size: 14px;
}

.navbar-toggler {
    border-color: var(--gold-primary);
    padding: 8px 12px;
}

.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(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image:
        linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)),
        url('https://images.unsplash.com/photo-1513326738677-b964603b136d?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-left: 8px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
}

.scroll-indicator a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--gold-primary);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========== Stats Section ========== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-top: 3px solid var(--gold-primary);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

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

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== Section Headers ========== */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-right: 3px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== Services Section ========== */
.services-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 36px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

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

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* ========== Packages Section ========== */
.packages-section {
    background: var(--white);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.package-badge.special {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.package-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-header {
    margin-bottom: 15px;
}

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

.package-rating {
    color: var(--gold-primary);
    font-size: 14px;
}

.package-rating i {
    margin: 0 2px;
}

.package-rating span {
    color: var(--text-light);
    margin-right: 5px;
}

.package-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
    flex: 1;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--gold-primary);
    margin-left: 10px;
    font-size: 16px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.price-value small {
    font-size: 14px;
    font-weight: 500;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gold-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========== Partners Section ========== */
.partners-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.partners-slider {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-item {
    flex: 0 0 150px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-item img {
    width: 100%;
    height: auto;
}

/* ========== Contact Section ========== */
.contact-section {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
    padding: 100px 0;
}

.contact-info {
    color: var(--white);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-right: 3px solid var(--gold-primary);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-primary);
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, var(--dark-primary) 0%, #0f0f0f 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-right: 10px;
}

.footer-links i {
    margin-left: 8px;
    font-size: 12px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-top: 2px;
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.footer-bottom {
    padding: 30px 0;
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ========== Scroll to Top Button ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cta-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .package-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .whatsapp-float {
        left: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-top-btn {
        right: 20px;
        bottom: 90px;
    }
}

@media (max-width: 575px) {
    .navbar-brand .brand-text {
        font-size: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ========== Policy Pages Styles ========== */

.policy-hero {
    border-bottom: 2px solid var(--gold-primary);
}

.policy-content {
    background-color: var(--white);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-title {
    color: var(--dark-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-info-box {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.policy-sidebar {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    position: sticky;
    top: 20px;
}

.policy-sidebar h5 {
    color: var(--dark-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding-left: 15px;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

.sidebar-nav a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    opacity: 0;
    transition: var(--transition);
}

.sidebar-nav a:hover {
    color: var(--gold-primary);
    padding-left: 20px;
}

.sidebar-nav a:hover:before {
    opacity: 1;
}

.info-box {
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--gold-primary);
}

.info-box h5 {
    color: var(--dark-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.info-box p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    border: 1px solid var(--gold-primary);
    border-radius: 5px;
    padding: 2px;
    background-color: rgba(212, 175, 55, 0.1);
}

.lang-btn {
    padding: 5px 12px;
    border: none;
    background-color: transparent;
    color: var(--dark-primary);
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

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

.lang-btn.active {
    background-color: var(--gold-primary);
    color: var(--white);
}

/* Why Choose Us Section */
.why-choose-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.why-choose-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.why-icon {
    min-width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.why-content h4 {
    color: var(--dark-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Team Section */
.team-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 15px;
    background-color: var(--light-bg);
    text-align: center;
}

.team-info h4 {
    color: var(--dark-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold-primary);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.testimonial-rating i {
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.author-name {
    color: var(--dark-primary);
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-location {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .policy-title {
        font-size: 1.3rem;
    }

    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }

    .language-switcher {
        margin-top: 10px;
    }
}
