/* Georgian Transfer - Terms & Conditions Page Styles */

/* Hero Section */
.section-terms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.section-terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23ffb800" opacity="0.03"/></svg>');
    opacity: 0.1;
}

.terms-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.terms-hero-subtitle {
    font-size: 18px;
    color: #d4a037;
    margin-bottom: 20px;
    line-height: 1.6;
}

.terms-updated {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.terms-updated strong {
    color: #fff;
}

/* Content Section */
.section-terms-content {
    padding: 80px 0;
    background: #fff;
}

/* Sidebar */
.terms-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #0E0E0E;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a037;
}

.terms-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-nav-link {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.terms-nav-link:hover {
    background: #fff;
    color: #d4a037;
    border-left-color: #d4a037;
    transform: translateX(5px);
}

.terms-nav-link.active {
    background: #fff;
    color: #d4a037;
    border-left-color: #d4a037;
    font-weight: 700;
}

/* Main Content */
.terms-main-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.terms-section:last-of-type {
    margin-bottom: 30px;
}

.terms-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0E0E0E;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.terms-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4a037;
}

.terms-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.terms-list li {
    padding: 12px 0 12px 35px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #d4a037;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.terms-list li strong {
    color: #0E0E0E;
    font-weight: 600;
}

.terms-list li a {
    color: #d4a037;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-list li a:hover {
    color: #b8860b;
    text-decoration: underline;
}

/* Contact CTA */
.terms-cta {
    background: linear-gradient(135deg, #d4a037 0%, #b8860b 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.terms-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.terms-cta p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-terms-contact {
    display: inline-block;
    background: #fff;
    color: #d4a037;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-terms-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #b8860b;
}

/* Responsive */
@media (max-width: 991px) {
    .terms-hero-title {
        font-size: 38px;
    }

    .terms-hero-subtitle {
        font-size: 16px;
    }

    .terms-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    .terms-main-content {
        padding: 30px 20px;
    }

    .terms-section-title {
        font-size: 24px;
    }

    .section-terms-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 32px;
    }

    .terms-hero-subtitle {
        font-size: 15px;
    }

    .sidebar-title {
        font-size: 16px;
    }

    .terms-nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    .terms-section-title {
        font-size: 20px;
    }

    .terms-section p,
    .terms-list li {
        font-size: 15px;
    }

    .terms-main-content {
        padding: 25px 15px;
    }

    .terms-cta {
        padding: 30px 20px;
    }

    .terms-cta h3 {
        font-size: 22px;
    }

    .section-terms-hero {
        padding: 80px 0 50px;
    }
}

/* RTL Support */
[dir="rtl"] .terms-nav-link {
    border-left: none;
    border-right: 3px solid transparent;
}

[dir="rtl"] .terms-nav-link:hover,
[dir="rtl"] .terms-nav-link.active {
    border-left: none;
    border-right-color: #d4a037;
    transform: translateX(-5px);
}

[dir="rtl"] .terms-list li {
    padding: 12px 35px 12px 0;
}

[dir="rtl"] .terms-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .terms-section-title::after {
    left: auto;
    right: 0;
}

/* Print Styles */
@media print {
    .section-terms-hero {
        background: #fff;
        color: #000;
    }

    .terms-hero-title,
    .terms-hero-subtitle,
    .terms-updated {
        color: #000;
    }

    .terms-sidebar {
        display: none;
    }

    .terms-main-content {
        box-shadow: none;
    }

    .terms-cta {
        background: #f0f0f0;
    }

    .btn-terms-contact {
        display: none;
    }
}
