/* Terms & Conditions Page Specific Styles for SeatPro */

/* Terms Banner Section */
.terms-banner {
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.terms-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-banner h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.terms-banner h2 span {
    color: var(--secondary-color);
}

.terms-banner p {
    line-height: 1.8;
    opacity: 0.9;
    color: white;
}

/* Terms Content Section */
.terms-content-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.terms-section h3 {
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.terms-section p {
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

/* Legal Highlight Section */
.legal-highlight {
    background-color: rgba(58, 54, 224, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2.5rem 0;
}

.legal-highlight h2 {
    color: var(--primary-color);
}

.legal-highlight h2::after {
    background-color: var(--light-color);
}

/* Terms List */
.terms-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Card Components */
.terms-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(58, 54, 224, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    margin: 0 0 0.7rem;
    color: var(--dark-color);
}

.card-content p {
    margin: 0;
    line-height: 1.6;
}

/* Legal Block - For required legal sections */
.legal-block {
    background-color: var(--light-color);
    border-radius: 8px;
    margin: 2rem 0;
}

.legal-block h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Contact Section */
.contact-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.7rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.legal-highlight a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-highlight a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* CTA Section */
.terms-cta-section {
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.terms-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.terms-cta-section .cta-content h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.terms-cta-section .cta-content h2 span {
    color: var(--secondary-color);
}

.terms-cta-section .cta-content p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

.terms-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.terms-cta-section .cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.terms-cta-section .cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Table styles for terms agreements */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.terms-table th,
.terms-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-light);
}

.terms-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.terms-table tr:nth-child(even) {
    background-color: rgba(58, 54, 224, 0.03);
}

.terms-table tr:hover {
    background-color: rgba(58, 54, 224, 0.05);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .terms-content {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {    
    .legal-highlight {
        padding: 1.5rem;
    }
    
    .terms-card {
        flex-direction: column;
        gap:0px;
    }
    
    .card-icon {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .terms-content {
        border-radius: 8px;
    }
    
    .contact-info p{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap:10px;
    }
    
    .legal-highlight {
        padding: 1.2rem;
    }
    
    .terms-table th,
    .terms-table td {
        padding: 0.75rem;
    }
} 