:root {
    --primary-color: #0d9488;
    --secondary-color: #0f172a;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --bg-white: #ffffff;
    --border-radius: 1rem;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: #f9fafb;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Card Icon Floating */
.card-icon-floating {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.card-content {
    padding: 35px 25px 25px;
}

.category-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-text {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-link-arrow:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

/* Feature Card */
.feature-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--box-shadow);
}

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

/* Visa Intro Section */
.transform-rotate-3 {
    transform: rotate(3deg);
}

.bg-gradient-dark-transparent {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.vize-intro-image {
    position: relative;
    aspect-ratio: 4/5;
}

@media (max-width: 991px) {
    .vize-intro-image {
        aspect-ratio: 16/9;
    }
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Full Width Comprehensive Section */
.full-width-comprehensive {
    background-color: var(--secondary-color);
}

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

.comprehensive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.comp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.comp-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.comp-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}

/* Tour Card */
.tour-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

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

.tour-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-bg-image {
    transform: scale(1.1);
}

.tour-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tour-content {
    padding: 25px;
}

.tour-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--light-text);
}

.feature-img-lg { height: 300px; }
.feature-img-sm { height: 200px; }

@media (max-width: 768px) {
    .feature-img-lg { height: 200px; }
    .feature-img-sm { height: 150px; }
}

/* Tour Cards */
.tour-card-img-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.btn-circle-sm {
    width: 40px; 
    height: 40px; 
    display: grid; 
    place-items: center;
}

.bg-pattern-dots {
    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 20px 20px;
}

.mw-700 {
    max-width: 700px;
}

.card {
    border: none;
    border-radius: 1rem;
    transition: var(--transition);
}

.group-hover-scale {
    transition: transform 0.7s ease;
}

.group:hover .group-hover-scale {
    transform: scale(1.1);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Reconstructed content from lines 900-1182 (and missing parts inferred) */

/* Modern Hero & CTA (from previous turn) */
.page-hero-modern {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111827;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.9));
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.text-gradient {
    background: linear-gradient(to right, #2dd4bf, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-gradient-gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.filter-btn-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 50px;
    color: #4b5563;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.filter-btn-modern:hover, .filter-btn-modern.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}

/* Villa & Listing Styles (New) */
.bg-white-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

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

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.listing-card {
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.listing-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.listing-card:hover .listing-image {
    transform: scale(1.1);
}

.listing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.listing-location {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
}

.listing-content {
    padding: 1.5rem;
}

.feature-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-bottom: -10px;
    scrollbar-width: none; 
}
.category-scroll-wrapper::-webkit-scrollbar {
    display: none; 
}

/* Footer Styles - Premium Modern */
.main-footer {
    background-color: #0B1120;
    color: #94a3b8;
    padding-top: 5rem;
    font-size: 0.95rem;
    position: relative;
}

/* Add a top border gradient */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-heading {
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    opacity: 0.9;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-brand-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
    color: white;
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

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

.footer-links a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Fixed Contact Widget - Premium Modern */
.fixed-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-trigger {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.contact-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.contact-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    background: #0f766e;
}

.contact-trigger .close-icon {
    display: none;
    font-size: 1.5rem;
}

.contact-trigger.active .open-icon {
    display: none;
}

.contact-trigger.active .close-icon {
    display: block;
    transform: rotate(180deg);
}

.contact-trigger.active {
    background: #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
}

.contact-trigger.active::before {
    animation: none;
}

.contact-items {
    position: absolute;
    bottom: 80px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.contact-items.active {
    pointer-events: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-decoration: none;
    color: white;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: hidden;
}

.contact-items.active .contact-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Staggered animation delays */
.contact-items.active .contact-item:nth-child(3) { transition-delay: 0.05s; }
.contact-items.active .contact-item:nth-child(2) { transition-delay: 0.1s; }
.contact-items.active .contact-item:nth-child(1) { transition-delay: 0.15s; }

.contact-item .contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: white;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-item .contact-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-item .contact-label {
    background: white;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    position: relative;
}

.contact-item .contact-label::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
}

.contact-item:hover .contact-label {
    opacity: 1;
    transform: translateX(0);
}

/* Specific Colors */
.item-whatsapp .contact-icon { 
    background: linear-gradient(135deg, #25D366, #128C7E); 
}
.item-phone .contact-icon { 
    background: linear-gradient(135deg, #3b82f6, #2563eb); 
}
.item-consultation .contact-icon { 
    background: linear-gradient(135deg, #f59e0b, #d97706); 
}

/* Restored Home & Utility Styles */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.home-hero {
    position: relative;
    min-height: 60vh;
    padding-top: 60px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-separator svg {
    fill: #f9fafb;
    width: 100%;
    height: auto;
}

.text-gradient-primary {
    background: linear-gradient(to right, #2dd4bf, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.quick-search-offset {
    margin-top: -50px;
}

.ls-tight { letter-spacing: -0.025em; }
.opacity-90 { opacity: 0.9; }

/* Soft Backgrounds */
.bg-primary-soft { background-color: rgba(13, 148, 136, 0.1); }
.bg-secondary-soft { background-color: rgba(15, 23, 42, 0.1); }
.bg-success-soft { background-color: rgba(16, 185, 129, 0.1); }
.bg-info-soft { background-color: rgba(59, 130, 246, 0.1); }
.bg-warning-soft { background-color: rgba(245, 158, 11, 0.1); }
.bg-danger-soft { background-color: rgba(239, 68, 68, 0.1); }
.bg-dark-soft { background-color: rgba(31, 41, 55, 0.1); }

/* Nature / Bungalov Theme */
.text-gradient-nature {
    background: linear-gradient(to right, #059669, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.hero-overlay-nature {
    background: linear-gradient(to bottom, rgba(20, 83, 45, 0.8), rgba(6, 78, 59, 0.9));
}
.btn-nature {
    background-color: #059669;
    border-color: #059669;
    color: white;
}
.btn-nature:hover {
    background-color: #047857;
    border-color: #047857;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.btn-outline-nature {
    color: #059669;
    border-color: #059669;
}
.btn-outline-nature:hover {
    background-color: #059669;
    color: white;
}
.bg-nature-soft { background-color: rgba(5, 150, 105, 0.1); }
.text-nature { color: #059669 !important; }

/* Transport / Blue Theme */
.text-gradient-blue {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Tour / Turquoise Theme */
.text-gradient-turquoise {
    background: linear-gradient(to right, #0891b2, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Corporate / Purple Theme */
.text-gradient-corporate {
    background: linear-gradient(to right, #7c3aed, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Support / Indigo Theme */
.text-gradient-support {
    background: linear-gradient(to right, #4f46e5, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* =========================================
   RESTORED MISSING UTILITIES & COMPONENTS
   ========================================= */

/* Spacing & Layout */
.section-padding { padding: 5rem 0; }
.pt-5 { padding-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* Navbar & Header (Restored) */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--primary-color) !important;
}

/* Quick Search Widget */
.search-box-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

#bookingTabs .nav-link {
    color: var(--text-color) !important;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

#bookingTabs .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(13, 148, 136, 0.05);
}

#bookingTabs .nav-link.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.bg-grid-pattern {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

.opacity-5 { opacity: 0.05; }
.pointer-events-none { pointer-events: none; }

.input-group-lg .input-group-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 1.1rem;
}

.input-group-lg .form-control,
.input-group-lg .form-select {
    height: 3.5rem;
    font-size: 1rem;
}

.form-label {
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    font-size: 0.75rem !important;
}

/* Hover Transform Utility */
.hover-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.form-control:focus {
    box-shadow: none;
}

/* Badges & Icons */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.border-white-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Filter Icons */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

/* Service Listing & Grid */
.services-listing-section {
    min-height: 600px;
}

/* Breadcrumbs (if used) */
.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--light-text);
}

/* Pagination */
.page-link {
    color: var(--text-color);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 3px;
    transition: all 0.3s;
}

.page-link:hover, .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Floating Actions */
.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

/* Service List Item */
.service-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.service-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.service-list-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Icon Box */
.icon-box-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Form Control Soft */
.form-control-soft {
    border: none !important;
    background: #f8f9fa !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
}

.form-control-soft:focus {
    background: white !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2) !important;
}

/* Button White */
.btn-white {
    background: white;
    color: var(--primary-color);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Border White */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Hover Opacity */
.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Payment Icons */
.payment-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: white;
}

.payment-icon.security {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .home-hero {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .quick-search-offset {
        margin-top: -40px;
    }
    
    .service-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-list-icon {
        margin: 0 auto 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Promo Section */
.promo-card-left {
    position: relative;
    z-index: 2;
}

.transform-rotate-1 {
    transform: rotate(-1deg);
}

.bg-danger-dark {
    background-color: #991b1b;
}

.btn-white {
    background-color: white;
    border: 1px solid #e5e7eb;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
    transform: scale(1.1);
}

#promoTrack {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#promoTrack::-webkit-scrollbar {
    display: none;
}
    border-width: 0.15em;
}

/* Utility Classes */
.ls-1 { letter-spacing: 0.1em; }
.ls-tight { letter-spacing: -0.025em; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* Text Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: #16a34a !important; }
.text-info { color: #0ea5e9 !important; }
.text-warning { color: #f59e0b !important; }
.text-danger { color: #dc2626 !important; }
.text-dark { color: var(--text-color) !important; }
.text-muted { color: var(--light-text) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-success { background-color: #16a34a !important; }
.bg-info { background-color: #0ea5e9 !important; }
.bg-warning { background-color: #f59e0b !important; }
.bg-danger { background-color: #dc2626 !important; }
.bg-dark { background-color: var(--text-color) !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-white { background-color: white !important; }

/* Border Colors */
.border-primary { border-color: var(--primary-color) !important; }
.border-secondary { border-color: var(--secondary-color) !important; }
.border-success { border-color: #16a34a !important; }
.border-info { border-color: #0ea5e9 !important; }
.border-warning { border-color: #f59e0b !important; }
.border-danger { border-color: #dc2626 !important; }
.border-dark { border-color: var(--text-color) !important; }
.border-light { border-color: #e9ecef !important; }

/* Button Variants */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0f766e;
    border-color: #0f766e;
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-success {
    background-color: #16a34a;
    border-color: #16a34a;
    color: white;
}

.btn-success:hover {
    background-color: #15803d;
    border-color: #15803d;
    color: white;
}

.btn-outline-success {
    color: #16a34a;
    border-color: #16a34a;
}

.btn-outline-success:hover {
    background-color: #16a34a;
    color: white;
}

.btn-info {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
}

.btn-info:hover {
    background-color: #0284c7;
    border-color: #0284c7;
    color: white;
}

.btn-outline-info {
    color: #0ea5e9;
    border-color: #0ea5e9;
}

.btn-outline-info:hover {
    background-color: #0ea5e9;
    color: white;
}

.btn-warning {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: white;
}

.btn-outline-warning {
    color: #f59e0b;
    border-color: #f59e0b;
}

.btn-outline-warning:hover {
    background-color: #f59e0b;
    color: white;
}

.btn-danger {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
}

.btn-danger:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: white;
}

.btn-outline-danger {
    color: #dc2626;
    border-color: #dc2626;
}

.btn-outline-danger:hover {
    background-color: #dc2626;
    color: white;
}

.btn-dark {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: white;
}

.btn-dark:hover {
    background-color: #1f2937;
    border-color: #1f2937;
    color: white;
}

.btn-outline-dark {
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline-dark:hover {
    background-color: var(--text-color);
    color: white;
}

.btn-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--text-color);
}

.btn-light:hover {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: var(--text-color);
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: var(--text-color);
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.form-control-soft {
    border: none !important;
    background: #f8f9fa !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
}

.form-control-soft:focus {
    background: white !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2) !important;
}

/* Input Groups */
.input-group-text {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    color: var(--light-text);
}

/* Badges */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0.375rem;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.badge-success {
    background-color: #16a34a;
    color: white;
}

.badge-info {
    background-color: #0ea5e9;
    color: white;
}

.badge-warning {
    background-color: #f59e0b;
    color: white;
}

.badge-danger {
    background-color: #dc2626;
    color: white;
}

.badge-light {
    background-color: #f8f9fa;
    color: var(--text-color);
}

.badge-dark {
    background-color: var(--text-color);
    color: white;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

.alert-primary {
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.alert-secondary {
    background-color: rgba(15, 23, 42, 0.1);
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
}

.alert-success {
    background-color: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

.alert-info {
    background-color: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    border-left: 4px solid #0ea5e9;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-left: 4px solid #f59e0b;
}

.alert-danger {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

/* Modals */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-header {
    background: transparent;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0 !important;
}

.card-footer {
    background: transparent;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 0 0 1rem 1rem !important;
}

/* Progress Bars */
.progress {
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #e5e7eb;
}

.progress-bar {
    border-radius: 0.25rem;
}

/* Tables */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    border-bottom: 2px solid #e5e7eb;
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-color);
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Tooltips */
.tooltip {
    font-size: 0.875rem;
}

.tooltip-inner {
    background-color: var(--text-color);
    color: white;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
}

/* Popovers */
.popover {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.popover-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0.75rem 0.75rem 0 0;
    font-weight: 600;
    color: var(--text-color);
}

/* Accordion */
.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: white;
    color: var(--text-color);
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid #e5e7eb;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    color: var(--light-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.1);
}

.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 1rem 1rem;
    border: 1px solid #e5e7eb;
    border-top: none;
}

/* Nav Pills */
.nav-pills .nav-link {
    border-radius: 0.75rem;
    color: var(--light-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.1);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* Offcanvas */
.offcanvas {
    border: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Placeholders */
.placeholder {
    background-color: #e5e7eb;
    border-radius: 0.375rem;
}

.placeholder-wave {
    animation: placeholder-wave 1.5s linear infinite;
}

@keyframes placeholder-wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Spinners */
.spinner-border {
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-grow {
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow 0.75s linear infinite;
}

@keyframes spinner-grow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.object-fit-fill {
    object-fit: fill;
}

.object-fit-scale-down {
    object-fit: scale-down;
}

/* Cursor Utilities */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* User Select */
.user-select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.user-select-auto {
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

.user-select-all {
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
}

/* Pointer Events */
.pe-none {
    pointer-events: none;
}

.pe-auto {
    pointer-events: auto;
}

/* Resize */
.resize-none {
    resize: none;
}

.resize-y {
    resize: vertical;
}

.resize-x {
    resize: horizontal;
}

.resize {
    resize: both;
}

/* Scroll Behavior */
.scroll-smooth {
    scroll-behavior: smooth;
}

.scroll-auto {
    scroll-behavior: auto;
}

/* Touch Action */
.touch-auto {
    touch-action: auto;
}

.touch-none {
    touch-action: none;
}

.touch-pan-x {
    touch-action: pan-x;
}

.touch-pan-left {
    touch-action: pan-left;
}

.touch-pan-right {
    touch-action: pan-right;
}

.touch-pan-y {
    touch-action: pan-y;
}

.touch-pan-up {
    touch-action: pan-up;
}

.touch-pan-down {
    touch-action: pan-down;
}

.touch-pinch-zoom {
    touch-action: pinch-zoom;
}

.touch-manipulation {
    touch-action: manipulation;
}

/* Word Break */
.word-break-normal {
    word-break: normal;
}

.word-break-all {
    word-break: break-all;
}

.word-break-keep-all {
    word-break: keep-all;
}

/* Z-Index */
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Phone Input Styles - Minimal */
input[type="tel"] {
    direction: ltr;
    text-align: left;
}

input[type="tel"]:focus {
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

input[type="tel"]:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc2626;
}

input[type="tel"]:valid:not(:focus):not(:placeholder-shown) {
    border-color: #16a34a;
}



/* Minimal Form Styles */
.form-control-minimal {
    border: 1px solid #e5e7eb !important;
    background: white !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.form-control-minimal:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15) !important;
}

.form-control-minimal:hover {
    border-color: #cbd5e1 !important;
}

/* Minimal Button Styles */
.btn-minimal {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: white !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.btn-minimal:hover {
    background: #0f766e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25) !important;
}

/* Minimal Input Group */
.input-group-minimal .input-group-text {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    color: var(--primary-color) !important;
    font-size: 14px !important;
    padding: 10px 12px !important;
    min-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.input-group-minimal .form-control,
.input-group-minimal .form-select {
    border: 1px solid #e5e7eb !important;
    border-left: none !important;
    border-radius: 0 8px 8px 0 !important;
    box-shadow: none !important;
}

.input-group-minimal .form-control:focus,
.input-group-minimal .form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15) !important;
}

/* Position */
.position-static { position: static; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Top, Right, Bottom, Left */
.top-0 { top: 0; }
.top-50 { top: 50%; }
.top-100 { top: 100%; }

.bottom-0 { bottom: 0; }
.bottom-50 { bottom: 50%; }
.bottom-100 { bottom: 100%; }

.start-0 { left: 0; }
.start-50 { left: 50%; }
.start-100 { left: 100%; }

.end-0 { right: 0; }
.end-50 { right: 50%; }
.end-100 { right: 100%; }

/* Translate */
.translate-middle {
    transform: translate(-50%, -50%);
}

.translate-middle-x {
    transform: translateX(-50%);
}

.translate-middle-y {
    transform: translateY(-50%);
}

/* Border Radius */
.rounded-0 { border-radius: 0; }
.rounded-1 { border-radius: 0.25rem; }
.rounded-2 { border-radius: 0.375rem; }
.rounded-3 { border-radius: 0.5rem; }
.rounded-4 { border-radius: 0.75rem; }
.rounded-5 { border-radius: 1rem; }
.rounded-circle { border-radius: 50%; }
.rounded-pill { border-radius: 50rem; }

/* Border Width */
.border-0 { border: 0; }
.border-1 { border: 1px solid #dee2e6; }
.border-2 { border: 2px solid #dee2e6; }
.border-3 { border: 3px solid #dee2e6; }
.border-4 { border: 4px solid #dee2e6; }
.border-5 { border: 5px solid #dee2e6; }

/* Border Top */
.border-top-0 { border-top: 0; }
.border-top-1 { border-top: 1px solid #dee2e6; }
.border-top-2 { border-top: 2px solid #dee2e6; }
.border-top-3 { border-top: 3px solid #dee2e6; }
.border-top-4 { border-top: 4px solid #dee2e6; }
.border-top-5 { border-top: 5px solid #dee2e6; }

/* Border Right */
.border-end-0 { border-right: 0; }
.border-end-1 { border-right: 1px solid #dee2e6; }
.border-end-2 { border-right: 2px solid #dee2e6; }
.border-end-3 { border-right: 3px solid #dee2e6; }
.border-end-4 { border-right: 4px solid #dee2e6; }
.border-end-5 { border-right: 5px solid #dee2e6; }

/* Border Bottom */
.border-bottom-0 { border-bottom: 0; }
.border-bottom-1 { border-bottom: 1px solid #dee2e6; }
.border-bottom-2 { border-bottom: 2px solid #dee2e6; }
.border-bottom-3 { border-bottom: 3px solid #dee2e6; }
.border-bottom-4 { border-bottom: 4px solid #dee2e6; }
.border-bottom-5 { border-bottom: 5px solid #dee2e6; }

/* Border Left */
.border-start-0 { border-left: 0; }
.border-start-1 { border-left: 1px solid #dee2e6; }
.border-start-2 { border-left: 2px solid #dee2e6; }
.border-start-3 { border-left: 3px solid #dee2e6; }
.border-start-4 { border-left: 4px solid #dee2e6; }
.border-start-5 { border-left: 5px solid #dee2e6; }

/* Shadow */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175); }

/* Width */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }
.w-auto { width: auto; }

/* Height */
.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }
.h-auto { height: auto; }

/* Max Width */
.mw-100 { max-width: 100%; }

/* Max Height */
.mh-100 { max-height: 100%; }

/* Min Width */
.min-vw-100 { min-width: 100vw; }

/* Min Height */
.min-vh-100 { min-height: 100vh; }

/* Viewport Width */
.vw-100 { width: 100vw; }

/* Viewport Height */
.vh-100 { height: 100vh; }

/* Flexbox */
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-column-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }

.flex-fill { flex: 1 1 auto; }
.flex-grow-0 { flex-grow: 0; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-shrink-1 { flex-shrink: 1; }

.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.justify-content-evenly { justify-content: space-evenly; }

.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }

.align-content-start { align-content: flex-start; }
.align-content-end { align-content: flex-end; }
.align-content-center { align-content: center; }
.align-content-between { align-content: space-between; }
.align-content-around { align-content: space-around; }
.align-content-stretch { align-content: stretch; }

.align-self-auto { align-self: auto; }
.align-self-start { align-self: flex-start; }
.align-self-end { align-self: flex-end; }
.align-self-center { align-self: center; }
.align-self-baseline { align-self: baseline; }
.align-self-stretch { align-self: stretch; }

/* Flex Order */
.order-first { order: -1; }
.order-0 { order: 0; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-last { order: 6; }

/* Grid */
.d-grid { display: grid; }
.d-inline-grid { display: inline-grid; }

/* Grid Template Columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* Grid Template Rows */
.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }
.grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)); }
.grid-rows-5 { grid-template-rows: repeat(5, minmax(0, 1fr)); }
.grid-rows-6 { grid-template-rows: repeat(6, minmax(0, 1fr)); }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

/* Margin */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }
.m-auto { margin: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-auto { margin-bottom: auto; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 3rem; }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 3rem; }
.mr-auto { margin-right: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 1rem; margin-right: 1rem; }
.mx-4 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-5 { margin-left: 3rem; margin-right: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 1rem; }
.pl-4 { padding-left: 1.5rem; }
.pl-5 { padding-left: 3rem; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 1rem; }
.pr-4 { padding-right: 1.5rem; }
.pr-5 { padding-right: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Display */
.d-none { display: none; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-block { display: block; }
.d-table { display: table; }
.d-table-row { display: table-row; }
.d-table-cell { display: table-cell; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-grid { display: grid; }
.d-inline-grid { display: inline-grid; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Transform */
.text-lowercase { text-transform: lowercase; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }

/* Font Weight */
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-bolder { font-weight: 800; }

/* Font Size */
.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.fs-6 { font-size: 1rem; }
.fs-sm { font-size: 0.875rem; }
.fs-xs { font-size: 0.75rem; }

/* Line Height */
.lh-1 { line-height: 1; }
.lh-sm { line-height: 1.25; }
.lh-base { line-height: 1.5; }
.lh-lg { line-height: 1.75; }

/* Text Decoration */
.text-decoration-none { text-decoration: none; }
.text-decoration-underline { text-decoration: underline; }
.text-decoration-line-through { text-decoration: line-through; }

/* White Space */
.text-nowrap { white-space: nowrap; }
.text-wrap { white-space: normal; }

/* Word Wrap */
.text-break { word-wrap: break-word; }

/* Font Style */
.fst-italic { font-style: italic; }
.fst-normal { font-style: normal; }

/* Letter Spacing */
.ls-1 { letter-spacing: 0.1em; }
.ls-2 { letter-spacing: 0.2em; }
.ls-3 { letter-spacing: 0.3em; }
.ls-tight { letter-spacing: -0.025em; }

/* Text Color */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: #16a34a !important; }
.text-info { color: #0ea5e9 !important; }
.text-warning { color: #f59e0b !important; }
.text-danger { color: #dc2626 !important; }
.text-dark { color: var(--text-color) !important; }
.text-light { color: #f8f9fa !important; }
.text-muted { color: var(--light-text) !important; }
.text-white { color: white !important; }
.text-black { color: black !important; }

/* Background Color */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-success { background-color: #16a34a !important; }
.bg-info { background-color: #0ea5e9 !important; }
.bg-warning { background-color: #f59e0b !important; }
.bg-danger { background-color: #dc2626 !important; }
.bg-dark { background-color: var(--text-color) !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-white { background-color: white !important; }
.bg-black { background-color: black !important; }

/* Border Color */
.border-primary { border-color: var(--primary-color) !important; }
.border-secondary { border-color: var(--secondary-color) !important; }
.border-success { border-color: #16a34a !important; }
.border-info { border-color: #0ea5e9 !important; }
.border-warning { border-color: #f59e0b !important; }
.border-danger { border-color: #dc2626 !important; }
.border-dark { border-color: var(--text-color) !important; }
.border-light { border-color: #f8f9fa !important; }
.border-white { border-color: white !important; }
.border-black { border-color: black !important; }

/* Border Radius */
.rounded-0 { border-radius: 0 !important; }
.rounded-1 { border-radius: 0.25rem !important; }
.rounded-2 { border-radius: 0.375rem !important; }
.rounded-3 { border-radius: 0.5rem !important; }
.rounded-4 { border-radius: 0.75rem !important; }
.rounded-5 { border-radius: 1rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

/* Shadow */
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

/* Width */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height */
.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* Max Width */
.mw-100 { max-width: 100% !important; }

/* Max Height */
.mh-100 { max-height: 100% !important; }

/* Min Width */
.min-vw-100 { min-width: 100vw !important; }

/* Min Height */
.min-vh-100 { min-height: 100vh !important; }

/* Viewport Width */
.vw-100 { width: 100vw !important; }

/* Viewport Height */
.vh-100 { height: 100vh !important; }

/* Flexbox */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.flex-fill { flex: 1 1 auto !important; }
.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.align-content-start { align-content: flex-start !important; }
.align-content-end { align-content: flex-end !important; }
.align-content-center { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around { align-content: space-around !important; }
.align-content-stretch { align-content: stretch !important; }

.align-self-auto { align-self: auto !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch { align-self: stretch !important; }

/* Flex Order */
.order-first { order: -1 !important; }
.order-0 { order: 0 !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }
.order-3 { order: 3 !important; }
.order-4 { order: 4 !important; }
.order-5 { order: 5 !important; }
.order-last { order: 6 !important; }

/* Grid */
.d-grid { display: grid !important; }
.d-inline-grid { display: inline-grid !important; }

/* Grid Template Columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat
