/* Middle-Eastern Patterned Shopping Assistant Styles */
:root {
    --primary: #FC9500;
    --secondary: #FDC300;
    --accent-1: #FDD798;
    --accent-2: #FECCB5;
    --dark: #2C1810;
    --light: #FFF8F0;
    --text: #3D2817;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 28px;
    color: var(--primary);
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    color: var(--primary);
    font-size: 24px;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(252, 149, 0, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(252, 149, 0, 0.05) 35px, rgba(252, 149, 0, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(253, 195, 0, 0.05) 35px, rgba(253, 195, 0, 0.05) 70px);
    opacity: 0.7;
}

.pattern-overlay {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 30px;
}

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

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Buttons */
.btn-primary {
    background: var(--primary) !important;
    border: none !important;
    color: white !important;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 149, 0, 0.3);
}

.btn-primary:hover {
    background: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 195, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
    padding: 12px 33px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px);
}

.btn-hover {
    position: relative;
    overflow: hidden;
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hover:hover::before {
    width: 300px;
    height: 300px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

/* Broken Grid Layout */
.broken-grid .content-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.broken-grid .content-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.box-offset-1 {
    margin-top: 50px;
}

.box-offset-2 {
    margin-top: -30px;
}

.rounded-shadow {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services */
.services-section {
    background: white;
}

.service-card {
    background: linear-gradient(135deg, var(--accent-2) 0%, white 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(252, 149, 0, 0.2);
}

.service-offset {
    margin-top: 40px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    color: var(--secondary);
}

/* Trust Badges */
.trust-section {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    padding: 60px 0;
}

.trust-badge {
    padding: 30px;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.trust-badge:hover i {
    transform: scale(1.2);
}

.trust-badge h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.trust-badge p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

/* Advantages */
.advantages-section {
    background: white;
}

.advantage-item {
    text-align: center;
    padding: 30px;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: rotateY(360deg);
}

.advantage-icon i {
    font-size: 32px;
    color: white;
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.advantage-item p {
    color: var(--text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,0.05) 50px, rgba(255,255,255,0.05) 100px);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.btn-cta {
    background: white !important;
    color: var(--primary) !important;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 35px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    background: var(--light) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(252, 149, 0, 0.05) 35px, rgba(252, 149, 0, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(253, 195, 0, 0.05) 35px, rgba(253, 195, 0, 0.05) 70px);
    opacity: 0.7;
}

.form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

.form-label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent-1);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text);
    background: white;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 149, 0, 0.1);
    background: var(--light);
}

.form-control::placeholder {
    color: rgba(61, 40, 23, 0.5);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FC9500' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-check {
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    border: 2px solid var(--accent-1);
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(252, 149, 0, 0.1);
    border-color: var(--primary);
}

.form-check-label {
    margin-left: 10px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.error-message {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 50px;
    font-size: 18px;
}

.btn-lg i {
    margin-right: 8px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 80px);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
}

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

.content-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Programs */
.program-card {
    background: white;
    border: 2px solid var(--accent-1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.program-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(252, 149, 0, 0.2);
}

.program-card.featured {
    background: linear-gradient(135deg, var(--accent-2) 0%, white 100%);
    border-color: var(--primary);
    border-width: 3px;
}

.program-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon i {
    font-size: 32px;
    color: white;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.program-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.program-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.program-features i {
    color: var(--primary);
    font-size: 18px;
}

/* Accordion */
.accordion-item {
    background: white;
    border: 1px solid var(--accent-1);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, var(--accent-2) 0%, white 100%);
    color: var(--dark);
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(38%) sepia(8%) saturate(1374%) hue-rotate(356deg) brightness(94%) contrast(88%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    background: white;
    color: var(--text);
    line-height: 1.8;
}

/* Experts / About Masters */
.expert-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.expert-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
}

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

.expert-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.expert-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.expert-bio {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

/* Tables */
.session-table,
.package-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.session-table thead,
.package-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.session-table th,
.package-table th {
    padding: 18px;
    font-weight: 600;
    border: none;
}

.session-table td,
.package-table td {
    padding: 16px;
    border-bottom: 1px solid var(--accent-1);
}

.session-table tbody tr:hover,
.package-table tbody tr:hover {
    background: var(--accent-2);
}

/* Description Items */
.description-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, white 0%, var(--accent-2) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.description-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-item h3 i {
    color: var(--primary);
}

.description-item p {
    color: var(--text);
    margin: 0;
}

/* Advantage Cards (for online page) */
.advantage-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.advantage-card .advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 15px 0;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--text);
    font-size: 15px;
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--text);
    margin: 0;
}

/* Trust Badge Large */
.trust-badge-large {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-badge-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.trust-badge-large i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
}

.trust-badge-large h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.trust-badge-large p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

/* Vintage specific styles */
.trust-badge-vintage {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-badge-vintage:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.trust-badge-vintage i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.trust-badge-vintage h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.trust-badge-vintage p {
    color: var(--text);
    font-size: 13px;
    margin: 0;
}

.search-category {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.search-category:hover {
    border-left: 4px solid var(--primary);
    transform: translateX(5px);
}

.search-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-category h3 i {
    color: var(--primary);
}

.search-category p {
    color: var(--text);
    margin: 0;
}

.service-list {
    margin-top: 20px;
}

.service-item {
    background: linear-gradient(135deg, white 0%, var(--accent-2) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    color: var(--primary);
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text);
    margin: 0;
}

/* Sidebar */
.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-1);
}

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

.sidebar-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    border-bottom: 1px solid var(--accent-2);
}

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

.sidebar-list i {
    color: var(--primary);
    font-size: 18px;
}

.testimonial {
    background: linear-gradient(135deg, var(--accent-2) 0%, white 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 15px;
    color: var(--text);
}

.testimonial footer {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

.contact-info {
    line-height: 2.2;
    color: var(--text);
}

.contact-info i {
    color: var(--primary);
    margin-right: 8px;
}

.find-list {
    list-style: none;
    padding: 0;
}

.find-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--accent-1);
    color: var(--text);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: var(--primary);
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-contact {
    line-height: 2;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 8px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* Legal Pages */
.legal-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text);
}

/* Success Page */
.success-box {
    background: white;
    padding: 80px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.success-box h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.success-box p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 35px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .cta-title {
        font-size: 34px;
    }
    
    .service-offset {
        margin-top: 0;
    }
    
    .box-offset-1,
    .box-offset-2 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 70px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    .sidebar-box {
        padding: 25px;
    }
    
    .program-card {
        padding: 25px;
    }
    
    .process-step {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-brand {
        font-size: 16px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .expert-card {
        padding: 15px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .btn-lg {
        padding: 14px 35px;
        font-size: 16px;
        width: 100%;
    }
    
    .table-responsive {
        font-size: 14px;
    }
    
    .session-table th,
    .session-table td,
    .package-table th,
    .package-table td {
        padding: 10px;
    }
    
    .success-box {
        padding: 50px 25px;
    }
    
    .success-box h1 {
        font-size: 32px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

/* Extra safety for very small screens (320px) */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .content-box {
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 14px;
    }
    
    .nav-link {
        padding: 6px 10px !important;
        font-size: 14px;
    }
}
