/**
 * Main Stylesheet
 * Rakshanda Sirohi - Clinical Psychologist Website
 */

/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #4a9b8e;
    --secondary-color: #3d8178;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Header & Navigation ==================== */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--primary-color);
}

.btn-nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav-cta::after {
    display: none !important;
}

.btn-nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #229954;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn i {
    margin-right: 8px;
}

/* ==================== Flash Notifications ==================== */
.flash-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.flash-notification.success {
    border-left: 4px solid var(--success-color);
}

.flash-notification.error {
    border-left: 4px solid var(--danger-color);
}

.flash-notification.info {
    border-left: 4px solid var(--info-color);
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.flash-content i {
    font-size: 20px;
}

.flash-notification.success i {
    color: var(--success-color);
}

.flash-notification.error i {
    color: var(--danger-color);
}

.flash-notification.info i {
    color: var(--info-color);
}

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #7f8c8d;
}

/* ==================== Hero Section ==================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.trust-badge i {
    font-size: 24px;
    color: #ffd700;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
}

.image-placeholder i {
    font-size: 120px;
    opacity: 0.3;
}

/* ==================== Page Hero ==================== */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Continue in next part... */
/* ==================== Sections ==================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

/* ==================== Problems Section ==================== */
.problems-section {
    background: #f8f9fa;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.problem-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* ==================== Services Section ==================== */
.services-snapshot {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 155, 142, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-meta span {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px;
}

/* ==================== Why Choose Section ==================== */
.why-choose {
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== About Page ==================== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.credentials {
    margin-top: 20px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.credential-badge i {
    font-size: 32px;
    color: var(--primary-color);
}

.credential-badge strong {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
}

.credential-badge span {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-content h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.check-list {
    margin: 20px 0;
    padding-left: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
}

.check-list i {
    color: var(--success-color);
    font-size: 18px;
}

.work-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tag i {
    color: var(--primary-color);
}

.tag:hover i {
    color: white;
}

.cta-box-small {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.cta-box-small p {
    color: white;
    margin-bottom: 20px;
}

/* ==================== How Therapy Works ==================== */
.how-therapy-works {
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
}

/* ==================== Values Section ==================== */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
}

/* ==================== Services Detailed ==================== */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 48px;
    color: white;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-meta-bar {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.service-meta-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.service-meta-bar i {
    color: var(--primary-color);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.service-info h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.service-divider {
    border: none;
    border-top: 2px dashed var(--border-color);
    margin: 40px 0;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

/* ==================== Problems Detailed ==================== */
.problems-detailed {
    padding: 80px 0;
}

.problem-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 36px;
    color: white;
}

.problem-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.problem-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.symptom-list {
    margin: 15px 0;
    padding-left: 20px;
}

.symptom-list li {
    margin: 10px 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    list-style: disc;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* ==================== Fees Page ==================== */
.fees-section {
    padding: 80px 0;
}

.fees-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #666;
}

.fees-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
}

.fees-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.fees-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.fees-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.fees-table tr:last-child td {
    border-bottom: none;
}

.fees-table tbody tr {
    transition: var(--transition);
}

.fees-table tbody tr:hover {
    background: #f8f9fa;
}

.service-desc {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 5px;
}

.payment-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.payment-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.info-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.fees-faq {
    max-width: 800px;
    margin: 0 auto;
}

.fees-faq h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding-left: 30px;
}

/* Continue in next part... */
/* ==================== FAQ Page ==================== */
.faq-section {
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #666;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-category h2 i {
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: #e8f5e9;
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==================== Contact Page ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-note {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.contact-note i {
    font-size: 24px;
    color: var(--warning-color);
}

.contact-note p {
    font-size: 14px;
    color: #856404;
    margin: 0;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

/* ==================== Legal Pages ==================== */
.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-wrapper h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-wrapper h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-wrapper li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.legal-wrapper ul li {
    list-style: disc;
}

.legal-wrapper ol li {
    list-style: decimal;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.warning-box i {
    color: var(--warning-color);
    font-size: 24px;
    margin-right: 10px;
}

.warning-box p {
    color: #856404;
    margin: 0;
}

.contact-box {
    background: #e8f5e9;
    border-left: 4px solid var(--success-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.contact-box h3 {
    color: var(--success-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-box p {
    color: #2e7d32;
    margin-bottom: 5px;
}

.contact-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.effective-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ==================== Footer ==================== */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.rci-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.rci-badge i {
    font-size: 32px;
    color: var(--primary-color);
}

.rci-badge span {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: #bdc3c7;
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 18px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-legal span {
    color: #7f8c8d;
}

.copyright,
.developer {
    font-size: 14px;
    color: #bdc3c7;
}

.developer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== Floating Elements ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==================== Loading Overlay ==================== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.loading-content p {
    font-size: 14px;
    color: #7f8c8d;
}

/* ==================== Badges ==================== */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.pending {
    background: #fff3cd;
    color: #856404;
}

.badge.confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.badge.completed {
    background: #d4edda;
    color: #155724;
}

.badge.cancelled,
.badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

.badge.paid {
    background: #d4edda;
    color: #155724;
}

.badge.unpaid {
    background: #f8d7da;
    color: #721c24;
}

.badge.new {
    background: #e74c3c;
    color: white;
}

.badge.read {
    background: #3498db;
    color: white;
}

.badge.responded {
    background: #27ae60;
    color: white;
}

.badge.danger {
    background: var(--danger-color);
    color: white;
}

.badge.success {
    background: var(--success-color);
    color: white;
}

.badge.info {
    background: var(--info-color);
    color: white;
}

/* ==================== Mode Badges ==================== */
.mode-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.mode-badge.online {
    background: #e8f5e9;
    color: #2e7d32;
}

.mode-badge.in-person {
    background: #e3f2fd;
    color: #1565c0;
}

/* ==================== Empty State ==================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #95a5a6;
}

.empty-state i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 18px;
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: #95a5a6;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

/* ==================== Print Styles ==================== */
@media print {
    .main-header,
    .main-footer,
    .whatsapp-float,
    .back-to-top,
    .btn,
    .action-buttons {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    .success-section {
        padding: 0;
    }

    .success-container {
        box-shadow: none;
    }
}
