html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Custom Header Design to match image */
.custom-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.custom-header .navbar {
    background-color: #ffffff !important;
    padding: 1rem 0;
}

.custom-brand {
    background-color: transparent !important; /* No background */
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.custom-brand:hover {
    background-color: transparent !important; /* No background on hover */
    opacity: 0.8;
}

.logo-image {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.custom-header .nav-link {
    color: #374151 !important; /* Dark gray text for inactive links */
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-color: transparent !important; /* No background for inactive links */
}

.custom-header .nav-link:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-header .nav-link:hover {
    color: #1e40af !important;
}

.custom-header .nav-link.active {
    background-color: #0a3d62 !important; /* Dark blue background as requested */
    color: #ffffff !important; /* White text for contrast */
    border-radius: 0 !important; /* No border radius */
    text-decoration: none !important;
}

.custom-header .nav-link.active:hover {
    background-color: #0a3d62 !important; /* Keep same background on hover */
    color: #ffffff !important; /* Keep white text on hover */
}

.custom-header .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.custom-header .navbar-toggler:focus {
    box-shadow: none;
}

.custom-header .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%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure proper spacing and alignment */
.custom-header .navbar-nav {
    align-items: center;
}

.custom-header .nav-item {
    margin: 0 0.75rem; /* Increased spacing between nav links */
}

/* Remove all Bootstrap default active states and underlines */
.custom-header .nav-link.active::after,
.custom-header .nav-link::after {
    display: none !important;
}

.custom-header .nav-link.active::before,
.custom-header .nav-link::before {
    display: none !important;
}

/* Ensure no text decoration on any state */
.custom-header .nav-link:link,
.custom-header .nav-link:visited,
.custom-header .nav-link:hover,
.custom-header .nav-link:active,
.custom-header .nav-link:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    backdrop-filter: blur(2px);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
    margin-left: 4rem;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background-color: #0a3d62 !important;
    border-color: #0a3d62 !important;
    color: white !important;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background-color: #083a5c !important;
    border-color: #083a5c !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 61, 98, 0.3);
}

.hero-btn-secondary {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background-color: white !important;
    color: #0a3d62 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Contact Us Page Styling */
.contact-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    color: #ffffff;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    color: #e0e7ff;
    font-weight: 400;
}

.contact-content-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.contact-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form .form-input,
.contact-form .form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f9ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.contact-detail-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.contact-social-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-social-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    background-color: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-social-link svg {
    width: 24px;
    height: 24px;
}

/* Authentication Pages Styling */
.auth-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    color: #ffffff;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.auth-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.auth-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    color: #e0e7ff;
    font-weight: 400;
}

.auth-content-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.auth-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    min-height: 80vh;
}

.auth-grid .auth-benefits-wrapper {
    order: -1;
}


.auth-form-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth-form-card {
    width: 100%;
}

.auth-benefits-wrapper {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
}

.auth-benefits-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.benefit-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.users {
    font-size: 0.875rem;
    color: #6b7280;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.auth-form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auth-alert-error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 3;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9ca3af;
    z-index: 2;
    pointer-events: none;
    display: block;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #6b7280;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.file-input-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #374151;
}

.file-input-label:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.file-input-label:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.file-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    flex-shrink: 0;
}

.file-text {
    font-weight: 500;
    color: #2563eb;
}

.file-name {
    margin-left: auto;
    color: #9ca3af;
    font-size: 0.875rem;
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 4rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Ensure input text doesn't overlap with icons */
.auth-form .form-input::placeholder {
    color: #9ca3af;
    opacity: 1;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    transition: opacity 0.3s ease;
}

.auth-form .form-input:focus::placeholder {
    opacity: 0;
}

.auth-form .form-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
}

.auth-form .form-input {
    text-indent: 0;
    padding-left: 3rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-top: 1rem;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #374151;
    user-select: none;
}

.forgot-password {
    font-size: 0.875rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
    height: 48px;
    min-width: 140px;
    box-sizing: border-box;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e7eb;
}

.auth-divider span {
    background-color: #ffffff;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
    transform: translateY(-1px);
}

.social-btn-google:hover {
    border-color: #db4437;
    background-color: #fef2f2;
}

.social-btn-facebook:hover {
    border-color: #1877f2;
    background-color: #f0f8ff;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
}

.auth-switch p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-benefits-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.auth-benefits-card {
    width: 100%;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f9ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.benefit-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.benefits-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.trust-badge {
    text-align: center;
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.trust-stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.trust-text {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.rating {
    font-weight: 600;
    color: #1f2937;
}

.users {
    color: #6b7280;
}

.password-requirements {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.75rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background-color: #ef4444;
}

.strength-fill.fair {
    width: 50%;
    background-color: #f59e0b;
}

.strength-fill.good {
    width: 75%;
    background-color: #3b82f6;
}

.strength-fill.strong {
    width: 100%;
    background-color: #10b981;
}

.strength-text {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.strength-text.weak {
    color: #ef4444;
}

.strength-text.fair {
    color: #f59e0b;
}

.strength-text.good {
    color: #3b82f6;
}

.strength-text.strong {
    color: #10b981;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.requirement-icon {
    width: 16px;
    height: 16px;
    stroke: #d1d5db;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.requirement-text {
    color: #6b7280;
    transition: color 0.3s ease;
}

.requirement-item.valid .requirement-icon {
    stroke: #10b981;
    fill: #10b981;
}

.requirement-item.valid .requirement-text {
    color: #10b981;
}

.requirement-item.invalid .requirement-icon {
    stroke: #ef4444;
}

.requirement-item.invalid .requirement-text {
    color: #ef4444;
}

.terms-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Multi-Step Form Styling */
.form-step {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.step-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    gap: 1rem;
}

/* Center the Next Step button in Step 1 */
#step1 .step-actions {
    justify-content: center;
}

.step-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 48px;
    min-width: 140px;
    box-sizing: border-box;
}

.step-btn:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
    transform: translateY(-1px);
}

.step-btn-next {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: #2563eb;
}

.step-btn-next:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.step-icon {
    width: 20px;
    height: 20px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e5e7eb;
    transition: all 0.3s ease;
}

.step-dot.active {
    background-color: #2563eb;
    transform: scale(1.2);
}

.step-line {
    width: 40px;
    height: 2px;
    background-color: #e5e7eb;
    transition: all 0.3s ease;
}

.step-dot.active + .step-line {
    background-color: #2563eb;
}

/* Error state for form inputs */
.form-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Responsive adjustments for multi-step form */
@media (max-width: 768px) {
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-btn {
        width: 100%;
        justify-content: center;
    }
    
    .step-indicator {
        margin-top: 1.5rem;
    }
}

/* Agency Dashboard Layout Styles */
.agency-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 250px;
    transition: all 0.3s ease;
}

/* Override Bootstrap grid for sidebar */
.agency-sidebar.col-md-3,
.agency-sidebar.col-lg-2 {
    flex: none;
    max-width: none;
    width: 250px !important;
}

.agency-sidebar-content {
    padding: 2rem 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.agency-sidebar-header {
    padding: 0 1.5rem 2rem 1.5rem;
    border-bottom: 1px solid #374151;
    margin-bottom: 2rem;
}

.agency-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.agency-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.agency-nav-item {
    margin: 0;
}

.agency-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.agency-nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    text-decoration: none;
}

.agency-nav-link.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.agency-nav-link.active::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #3b82f6;
    border-radius: 0 2px 2px 0;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-text {
    font-size: 0.875rem;
}

.logout-item {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #374151;
}

.logout-link {
    color: #ef4444;
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.agency-main-content {
    margin-left: 250px;
    min-height: 100vh;
    background: #f8fafc;
    padding: 0;
    width: calc(100% - 250px);
}

/* Override Bootstrap grid for main content */
.agency-main-content.col-md-9,
.agency-main-content.col-lg-10 {
    flex: none;
    max-width: none;
    width: calc(100% - 250px) !important;
}

.agency-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.agency-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 1.5rem 0;
    margin-left: 250px;
    border-top: 1px solid #374151;
    width: calc(100% - 250px);
}

.agency-footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.agency-footer-content p {
    margin: 0;
    font-size: 0.875rem;
}

/* Agency Dashboard Styles */
.dashboard-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dashboard-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
}

.dashboard-stats-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.dashboard-stats-container {
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: #2563eb;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.stat-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.dashboard-actions-section {
    padding: 4rem 0;
    background: white;
}

.dashboard-actions-container {
    padding: 0;
}

.actions-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 0 0 3rem 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
    text-decoration: none;
    color: inherit;
}

.action-icon {
    width: 40px;
    height: 40px;
    color: #2563eb;
    flex-shrink: 0;
}

.action-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.action-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.agency-info-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.agency-info-container {
    padding: 0;
}

.agency-info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.agency-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.agency-info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #374151;
}

.info-value {
    color: #6b7280;
}

/* Manage Tours Styles */
.manage-tours-hero-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.manage-tours-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.manage-tours-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
}

.tours-management-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tours-management-container {
    padding: 0;
}

.tours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.tours-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.add-tour-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.add-tour-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.add-icon {
    width: 20px;
    height: 20px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tour-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.tour-image-placeholder svg {
    width: 48px;
    height: 48px;
}

.tour-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #10b981;
    color: white;
}

.status-draft {
    background: #f59e0b;
    color: white;
}

.status-inactive {
    background: #6b7280;
    color: white;
}

.tour-content {
    padding: 1.5rem;
}

.tour-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.featured-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-icon {
    width: 16px;
    height: 16px;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tour-actions {
    display: flex;
    gap: 0.75rem;
}

.tour-action-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.edit-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.edit-btn:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
}

.delete-btn {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.delete-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    text-decoration: none;
}

.empty-tours {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-tours-icon {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin: 0 auto 1.5rem;
}

.empty-tours-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-tours-description {
    color: #6b7280;
    margin: 0 0 2rem 0;
}

.empty-tours-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.empty-tours-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

/* Bookings Styles */
.bookings-hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.bookings-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bookings-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
}

.bookings-management-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.bookings-management-container {
    padding: 0;
}

.bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.bookings-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.bookings-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.booking-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.customer-avatar svg {
    width: 24px;
    height: 24px;
}

.customer-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.customer-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-unknown {
    background: #f3f4f6;
    color: #374151;
}

.booking-content {
    margin-bottom: 1rem;
}

.booking-tour h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-icon {
    width: 16px;
    height: 16px;
}

.booking-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.booking-amount {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.amount-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.amount-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.booking-date {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.date-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.date-value {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
}

.booking-actions {
    display: flex;
    gap: 0.75rem;
}

.booking-action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-btn {
    background: #2563eb;
    color: white;
}

.view-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.empty-bookings {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-bookings-icon {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin: 0 auto 1.5rem;
}

.empty-bookings-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-bookings-description {
    color: #6b7280;
    margin: 0;
}

/* Contact Messages Styles */
.contact-messages-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.contact-messages-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-messages-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
}

.contact-messages-management-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-messages-management-container {
    padding: 0;
}

.contact-messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-messages-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.contact-messages-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.message-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.message-sender {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sender-avatar {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.sender-avatar svg {
    width: 24px;
    height: 24px;
}

.sender-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.sender-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.message-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.message-number {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.message-date {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
}

.message-content {
    margin-bottom: 1rem;
}

.message-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
}

.message-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.time-icon {
    width: 16px;
    height: 16px;
}

.message-actions-buttons {
    display: flex;
    gap: 0.75rem;
}

.message-action-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.reply-btn {
    background: #2563eb;
    color: white;
}

.reply-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.empty-messages {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-messages-icon {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin: 0 auto 1.5rem;
}

.empty-messages-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-messages-description {
    color: #6b7280;
    margin: 0;
}

/* Reviews Styles */
.reviews-hero-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.reviews-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews-hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
}

.reviews-management-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.reviews-management-container {
    padding: 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.reviews-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-tour h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.tour-destination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.destination-icon {
    width: 16px;
    height: 16px;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 20px;
    height: 20px;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: #e5e7eb;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.review-content {
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.date-icon {
    width: 16px;
    height: 16px;
}

.empty-reviews {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-reviews-icon {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin: 0 auto 1.5rem;
}

.empty-reviews-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-reviews-description {
    color: #6b7280;
    margin: 0;
}



.error-message {
    background: #fef2f2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


/* Authentication Responsive Design */
@media (max-width: 768px) {
    
    .auth-hero-title {
        font-size: 2rem;
    }
    
    .auth-hero-subtitle {
        font-size: 1rem;
    }
    
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-form-wrapper,
    .auth-benefits-wrapper {
        padding: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .trust-text {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Contact Us Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card,
    .contact-social-card {
        padding: 1.5rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        align-self: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Dream Tour Section */
.dream-tour-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.dream-tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dream-tour-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dream-tour-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.dream-tour-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.dream-tour-form-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.dream-tour-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    align-items: end;
}

.form-row .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row .form-group:last-child {
    flex: none;
    align-items: center;
}

.form-row .search-btn {
    width: auto;
    min-width: 140px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
    line-height: 1;
    cursor: pointer;
    margin-top: 1.5rem;
}

.form-row .search-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-row .search-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Responsive adjustments for dream tour section */
@@media (max-width: 768px) {
    .dream-tour-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row .form-group {
        flex: none;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* General search button styles removed - using specific .search-btn-group .search-btn instead */

/* General search-icon styles removed - using specific .search-btn-group .search-icon instead */

/* Responsive Design for Dream Tour */
@media (max-width: 768px) {
    .dream-tour-container {
        padding: 0 1rem;
    }
    
    .dream-tour-title {
        font-size: 2rem;
    }
    
    .dream-tour-subtitle {
        font-size: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dream-tour-form-wrapper {
        padding: 1.5rem;
    }
}

/* Popular Destinations Section */
.popular-destinations-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destinations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.destinations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.destinations-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
    margin: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 300px;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.destination-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.destination-price {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    display: inline-block;
    align-self: flex-start;
}

/* Responsive Design for Destinations */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .destinations-container {
        padding: 0 1rem;
    }
    
    .destinations-title {
        font-size: 2rem;
    }
    
    .destinations-subtitle {
        font-size: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        height: 250px;
    }
    
    .destination-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .destination-name {
        font-size: 1.25rem;
    }
    
    .destination-price {
        font-size: 1rem;
    }
}

/* Upcoming Tours Section */
.upcoming-tours-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.upcoming-tours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.upcoming-tours-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.upcoming-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.upcoming-tour-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    height: 140px;
    transition: transform 0.2s ease;
}

.upcoming-tour-card:hover {
    transform: translateY(-2px);
}

.upcoming-tour-image-wrapper {
    flex: 0 0 30%;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    min-height: 140px;
    border-radius: 0.5rem 0 0 0;
    padding-bottom: 0.75rem;
}

.upcoming-tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 140px;
    padding-bottom: 20%;
}

.upcoming-tour-details {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 140px;
}

.upcoming-tour-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.upcoming-tour-meta {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.upcoming-tour-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

.upcoming-tour-book-btn {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin: 0;
}

.upcoming-tour-book-btn:hover {
    background: linear-gradient(135deg, #1e5f8a 0%, #0a3d62 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(10, 61, 98, 0.3);
}

/* Responsive Design for Upcoming Tours */
@media (max-width: 1024px) {
    .upcoming-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .upcoming-tours-container {
        padding: 0 1rem;
    }
    
    .upcoming-tours-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .upcoming-tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .upcoming-tour-card {
        height: 120px;
    }
    
    .upcoming-tour-image-wrapper {
        flex: 0 0 30%;
        min-height: 120px;
        padding-bottom: 0.5rem;
    }
    
    .upcoming-tour-image {
        padding-bottom: 20%;
    }
    
    .upcoming-tour-details {
        min-height: 120px;
        padding: 0.75rem;
    }
    
    .upcoming-tour-title {
        font-size: 0.9rem;
    }
    
    .upcoming-tour-meta {
        font-size: 0.7rem;
    }
    
    .upcoming-tour-price {
        font-size: 1rem;
    }
    
    .upcoming-tour-book-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Student Information Section */
.student-info-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.student-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.student-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.student-info-table {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.table-header {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    padding: 1rem 1.5rem;
}

.table-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.table-content {
    padding: 0;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #1f2937;
    text-align: left;
}

.header-row {
    background-color: #f9fafb;
}

.header-cell {
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Responsive Design for Student Information */
@media (max-width: 768px) {
    .student-info-container {
        padding: 0 1rem;
    }
    
    .student-info-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .table-cell {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        text-align: left;
    }
}

/* Custom Footer */
.custom-footer {
    background-color: #f8fafc;
    color: #212529;
    padding: 3rem 0 2rem 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.footer-tagline-secondary {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #212529;
    text-decoration: none;
}

.contact-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.footer-copyright p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link:hover .social-icon {
    color: #212529;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #6c757d;
    transition: color 0.2s ease;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .custom-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-title {
        font-size: 1.125rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* About Us Page Styling */
.about-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    color: #ffffff;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
}

.about-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0 0 0.5rem 0;
}

.stat-item:nth-child(1) .stat-number::after,
.stat-item:nth-child(2) .stat-number::after {
    content: "+";
    color: #2563eb;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.mission-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #ffffff;
}

.mission-icon svg {
    width: 30px;
    height: 30px;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.mission-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.team-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.team-role {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.team-bio {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.team-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.team-social .social-link {
    width: 36px;
    height: 36px;
    background-color: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.team-social .social-link:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.team-social .social-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design for About Us */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-container,
    .mission-container,
    .about-content-container {
        padding: 0 1rem;
    }
    
    /* Agency Pages Responsive */
    .contact-messages-hero-title,
    .reviews-hero-title {
        font-size: 2rem;
    }
    
    .contact-messages-hero-subtitle,
    .reviews-hero-subtitle {
        font-size: 1rem;
    }
    
    .messages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-messages-header,
    .reviews-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .contact-messages-stats,
    .reviews-stats {
        align-self: stretch;
        justify-content: center;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .update-btn,
    .back-btn {
        justify-content: center;
    }
    
    /* Packages Page Styles */
.packages-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 4rem 0 3rem 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    max-height: 400px !important;
}

.packages-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.packages-hero-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    text-align: center !important;
}

.packages-hero-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 1.5rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
}

.packages-hero-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.packages-hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.packages-hero-subtitle {
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    margin-bottom: 0 !important;
    color: white !important;
}

.packages-content-section {
    padding: 4rem 0 !important;
    background: #f8fafc !important;
    min-height: 400px !important;
}

.packages-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

.package-card {
    background: white !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e5e7eb !important;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

.package-image-wrapper .featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.package-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.package-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.package-btn svg {
    width: 16px;
    height: 16px;
}

/* Packages Empty State */
.packages-content-section .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.packages-content-section .empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-content-section .empty-state-icon svg {
    width: 40px;
    height: 40px;
    fill: #9ca3af;
}

.packages-content-section .empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.packages-content-section .empty-state-message {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.packages-content-section .empty-state .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #d1d5db;
}

.empty-state-icon svg {
    width: 100%;
    height: 100%;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Privacy Page Styles */
.privacy-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.privacy-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section:last-of-type {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.privacy-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

.privacy-link {
    color: #0a3d62;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #1e5f8a;
    text-decoration: underline;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.privacy-updated {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Profile Dashboard Styles */
.profile-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.profile-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.profile-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.profile-info-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 3rem;
}

.profile-info-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.profile-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.profile-info-content {
    padding: 2rem;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.profile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.profile-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.profile-info-icon svg {
    width: 24px;
    height: 24px;
}

.profile-info-details {
    flex: 1;
}

.profile-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-info-value {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.bookings-section, .reviews-section {
    margin-bottom: 3rem;
}

.bookings-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.booking-card, .review-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.booking-card:hover, .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.booking-image {
    height: 200px;
    overflow: hidden;
}

.booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.booking-card:hover .booking-img {
    transform: scale(1.05);
}

.booking-content, .review-content {
    padding: 1.5rem;
}

.booking-title, .review-tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.booking-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.booking-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.booking-status {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-default {
    background: #f3f4f6;
    color: #374151;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.booking-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.booking-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.booking-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.booking-btn.secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
    text-decoration: none;
}

.booking-btn.danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.booking-btn.danger:hover {
    background: #fecaca;
    color: #7f1d1d;
}

.booking-btn svg {
    width: 16px;
    height: 16px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #d1d5db;
}

.star-icon.filled {
    color: #fbbf24;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #d1d5db;
}

.empty-state-icon svg {
    width: 100%;
    height: 100%;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    font-size: 1rem;
    margin-bottom: 0;
}

.empty-state-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.empty-state-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Profile Dashboard Responsive */
@media (max-width: 768px) {
    .profile-hero-title {
        font-size: 2.5rem;
    }
    
    .profile-hero-subtitle {
        font-size: 1rem;
    }
    
    .profile-container {
        padding: 0 1rem;
    }
    
    .profile-info-grid {
        grid-template-columns: 1fr;
    }
    
    .bookings-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .booking-btn {
        justify-content: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Privacy Responsive */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-container {
        padding: 0 1rem;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .privacy-section-title {
        font-size: 1.25rem;
    }
    
    .privacy-text {
        font-size: 0.875rem;
    }
}

/* Packages Responsive */
@media (max-width: 768px) {
    .packages-hero-title {
        font-size: 2.5rem;
    }
    
    .packages-hero-subtitle {
        font-size: 1rem;
    }
    
    .packages-container {
        padding: 0 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .package-btn {
        justify-content: center;
    }
    
    .packages-hero-icon {
        width: 60px;
        height: 60px;
    }
    
    .packages-hero-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .package-meta {
        gap: 0.25rem;
    }
    
    .package-meta-item {
        font-size: 0.8rem;
    }
    
    .meta-icon {
        width: 14px;
        height: 14px;
    }
}

/* Agency Dashboard Responsive */
    .agency-sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
        height: auto;
    }
    
    .agency-main-content {
        margin-left: 0;
    }
    
    .agency-content-wrapper {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .agency-footer {
        margin-left: 0;
    }
    
    .agency-sidebar-content {
        height: auto;
        padding: 1rem 0;
    }
    
    .agency-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0 0.5rem;
    }
    
    .agency-nav-item {
        flex: 1;
        min-width: calc(50% - 0.125rem);
    }
    
    .agency-nav-link {
        padding: 0.75rem 0.5rem;
        justify-content: center;
        text-align: center;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
    
    .logout-item {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        border-left: 1px solid #374151;
        flex: 0 0 100%;
    }
}

/* Tour Create Page Styles */
.tour-create-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.tour-create-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-create-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tour-create-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.tour-create-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-create-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tour-create-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tour-create-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-create-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.tour-create-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-icon {
    width: 16px;
    height: 16px;
    fill: #6366f1;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-switch-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-switch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-switch-input {
    width: 20px;
    height: 20px;
    accent-color: #6366f1;
}

.form-switch-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.form-switch-icon {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

.form-switch-help {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.file-input-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #374151;
}

.file-input-label:hover {
    border-color: #6366f1;
    background: #f0f4ff;
}

.file-input-icon {
    width: 20px;
    height: 20px;
    fill: #6b7280;
}

.file-input-text {
    font-size: 0.875rem;
}

.current-image-wrapper {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.current-image-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.current-image {
    max-width: 200px;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Tour Edit Page Styles */
.tour-edit-hero-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.tour-edit-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-edit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tour-edit-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.tour-edit-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-edit-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tour-edit-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tour-edit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-edit-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

/* Tour Delete Page Styles */
.tour-delete-hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.tour-delete-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-delete-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tour-delete-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.tour-delete-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-delete-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tour-delete-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tour-delete-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-delete-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.tour-delete-preview {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.tour-preview-image-wrapper {
    position: relative;
}

.tour-preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
}

.tour-preview-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-preview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.tour-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.preview-meta-item .meta-icon {
    width: 16px;
    height: 16px;
    fill: #6b7280;
}

.tour-preview-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.delete-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.warning-icon {
    width: 24px;
    height: 24px;
    fill: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-text {
    color: #dc2626;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Tour Details Page Styles */
.tour-details-hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.tour-details-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-details-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tour-details-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.tour-details-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-details-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tour-details-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tour-details-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-details-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tour-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.tour-details-image-wrapper {
    position: relative;
    background: #f3f4f6;
}

.tour-details-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-details-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.tour-details-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.tour-details-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    white-space: nowrap;
}

.tour-details-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.tour-meta-item:last-child {
    border-bottom: none;
}

.meta-icon {
    width: 20px;
    height: 20px;
    fill: #6366f1;
    flex-shrink: 0;
}

.meta-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-weight: 500;
    color: #374151;
}

.status-active {
    color: #059669;
    font-weight: 600;
}

.status-draft {
    color: #d97706;
    font-weight: 600;
}

.status-inactive {
    color: #dc2626;
    font-weight: 600;
}

.tour-details-description {
    margin-top: 1rem;
}

.description-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.description-text {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.tour-details-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Search Results Page Styles */
.search-results-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.search-results-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.search-results-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.search-results-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-results-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.search-results-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.search-results-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.search-icon {
    width: 32px;
    height: 32px;
    fill: #6366f1;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.search-result-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-result-image-wrapper {
    position: relative;
    height: 200px;
    background: #f3f4f6;
}

.search-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.search-meta-item .meta-icon {
    width: 16px;
    height: 16px;
    fill: #6b7280;
}

.search-result-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.search-result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.search-result-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

/* Responsive Design for Tour Pages */
@media (max-width: 768px) {
    .tour-details-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-details-image-wrapper {
        height: 250px;
    }
    
    .tour-details-info {
        padding: 2rem;
    }
    
    .tour-details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tour-details-title {
        font-size: 1.5rem;
    }
    
    .tour-details-actions {
        flex-direction: column;
    }
    
    .tour-delete-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tour-preview-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .tour-create-hero-title,
    .tour-edit-hero-title,
    .tour-delete-hero-title,
    .tour-details-hero-title,
    .search-results-hero-title {
        font-size: 2rem;
    }
    
    .tour-create-container,
    .tour-edit-container,
    .tour-delete-container,
    .tour-details-container,
    .search-results-container {
        padding: 0 1rem;
    }
    
    .tour-create-card,
    .tour-edit-card,
    .tour-delete-card {
        padding: 2rem;
    }
}

/* Custom Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.custom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.custom-modal-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: modalSlideIn 0.3s ease;
}

.custom-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.modal-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
    color: #f59e0b;
}

.modal-icon.warning {
    background: #fef3c7;
    color: #f59e0b;
}

.modal-icon.danger {
    background: #fee2e2;
    color: #dc2626;
}

.modal-icon.success {
    background: #d1fae5;
    color: #059669;
}

.modal-icon.info {
    background: #dbeafe;
    color: #2563eb;
}

.modal-icon svg {
    width: 24px;
    height: 24px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.custom-modal-body {
    padding: 1rem 1.5rem;
    text-align: center;
}

.custom-modal-body p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.custom-modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.modal-btn-primary {
    background: #0a3d62;
    color: white;
}

.modal-btn-primary:hover {
    background: #083a5c;
    transform: translateY(-1px);
}

.modal-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.modal-btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.modal-btn-danger {
    background: #dc2626;
    color: white;
}

.modal-btn-danger:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Modal */
@@media (max-width: 480px) {
    .custom-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .custom-modal-header,
    .custom-modal-body,
    .custom-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .custom-modal-footer {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* Review Page Styles - Maximum Priority Override */
body .review-page-wrapper {
    /* Override any global styles */
}

body .review-page-wrapper .review-hero-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%) !important;
    padding: 3rem 0 !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

body .review-page-wrapper .review-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

body .review-page-wrapper .review-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

body .review-page-wrapper .review-hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

body .review-page-wrapper .review-hero-subtitle {
    font-size: 1.25rem !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    color: white !important;
}

body .review-page-wrapper .review-form-section {
    background-color: #f8fafc !important;
    padding: 3rem 0 !important;
    min-height: 60vh;
}

body .review-page-wrapper .review-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

body .review-page-wrapper .review-form-card {
    background: white !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden;
}

body .review-page-wrapper .review-form-header {
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%) !important;
    padding: 2rem !important;
    color: white !important;
    text-align: center;
}

body .review-page-wrapper .review-form-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white !important;
}

body .review-page-wrapper .review-icon {
    width: 28px;
    height: 28px;
    color: white !important;
}

body .review-page-wrapper .review-form-content {
    padding: 2rem !important;
}

body .review-page-wrapper .form-group {
    margin-bottom: 1.5rem !important;
}

body .review-page-wrapper .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 0.75rem !important;
}

body .review-page-wrapper .form-icon {
    width: 16px;
    height: 16px;
    color: #0a3d62 !important;
}

body .review-page-wrapper .form-select,
body .review-page-wrapper .form-control {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    background-color: white !important;
    transition: all 0.2s ease;
}

body .review-page-wrapper .form-select:focus,
body .review-page-wrapper .form-control:focus {
    outline: none !important;
    border-color: #0a3d62 !important;
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1) !important;
}

body .review-page-wrapper .form-control {
    resize: vertical;
    min-height: 120px;
}

body .review-page-wrapper .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem !important;
}

body .review-page-wrapper .submit-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

body .review-page-wrapper .submit-btn:hover {
    background: linear-gradient(135deg, #1e5f8a 0%, #0a3d62 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 61, 98, 0.3);
    color: white !important;
}

body .review-page-wrapper .submit-btn svg {
    width: 16px;
    height: 16px;
    color: white !important;
}

body .review-page-wrapper .cancel-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    background: #f8fafc !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

body .review-page-wrapper .cancel-btn:hover {
    background: #f1f5f9 !important;
    color: #374151 !important;
    border-color: #9ca3af !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body .review-page-wrapper .cancel-btn svg {
    width: 16px;
    height: 16px;
    color: #374151 !important;
}

body .review-page-wrapper .text-danger {
    font-size: 0.875rem !important;
    color: #dc2626 !important;
    margin-top: 0.25rem !important;
}

/* Responsive Design for Review Page */
@media (max-width: 768px) {
    body .review-page-wrapper .review-hero-section {
        padding: 2rem 0 !important;
    }
    
    body .review-page-wrapper .review-hero-title {
        font-size: 2rem !important;
    }
    
    body .review-page-wrapper .review-hero-subtitle {
        font-size: 1rem !important;
    }
    
    body .review-page-wrapper .review-form-container {
        padding: 0 1rem !important;
    }
    
    body .review-page-wrapper .review-form-header {
        padding: 1.5rem !important;
    }
    
    body .review-page-wrapper .review-form-title {
        font-size: 1.5rem !important;
    }
    
    body .review-page-wrapper .review-form-content {
        padding: 1.5rem !important;
    }
    
    body .review-page-wrapper .form-actions {
        flex-direction: column !important;
    }
    
    body .review-page-wrapper .submit-btn,
    body .review-page-wrapper .cancel-btn {
        width: 100% !important;
        justify-content: center;
    }
}
