/* ===============================================
   Custom CSS for Rent Portal
   All custom styles for login, index, and dashboard pages
   =============================================== */

/* ===============================================
   Root Variables & Global Styles
   =============================================== */
:root {
    --primary-color: #FE634E;
    --primary-dark: #e54a32;
    --primary-light: #ff7e6a;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===============================================
   LOGIN PAGE STYLES
   =============================================== */

/* Login Body Background */
body.login-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Auth Container */
.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-section img {
    max-height: 60px;
    margin-bottom: 20px;
}

.logo-section h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.logo-section p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-control:hover {
    border-color: #d0d0d0;
}

.form-control:focus,
.form-control:active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(254, 99, 78, 0.15);
    outline: none;
    transform: translateY(-1px);
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #adb5bd;
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.7;
}

/* Input, Textarea, Select - Dark text when active */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
    color: var(--text-dark);
}

input:focus:not([type="checkbox"]):not([type="radio"]),
input:active:not([type="checkbox"]):not([type="radio"]),
textarea:focus,
textarea:active,
select:focus,
select:active {
    color: var(--text-dark) !important;
}

/* Input Group Styles */
.input-group {
    position: relative;
    display: flex;
    width: 100%;
    align-items: stretch;
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #6c757d;
    transition: all 0.3s ease;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.input-group:hover .input-group-text {
    border-color: #d0d0d0;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 12px 15px;
    padding-left: 10px;
    flex: 1;
    height: auto;
    color: var(--text-dark);
}

.input-group .form-control:hover {
    border-color: #e0e0e0;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.input-group:focus-within .form-control,
.input-group .form-control:focus,
.input-group .form-control:active {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    color: var(--text-dark);
}

/* Login Button */
.btn-login {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 99, 78, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

/* Alerts */
.alert {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

.alert i {
    margin-right: 8px;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(254, 99, 78, 0.15);
}

.form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.form-check-label:hover {
    color: var(--primary-color);
}

.form-check-label i {
    color: var(--primary-color);
    opacity: 0.8;
}

/* Forgot Password Link */
.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Register Link */
.register-link {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Back to Home */
.back-home {
    text-align: center;
    margin-top: 20px;
}

.back-home a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-home a:hover {
    text-decoration: underline;
}

/* ===============================================
   INDEX PAGE STYLES
   =============================================== */

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* ===============================================
   BUTTON STYLES - UNIFIED 10px RADIUS
   =============================================== */

/* All Buttons - Unified Border Radius */
.btn,
button,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-sm,
.btn-lg,
.btn-login,
.btn-search {
    border-radius: 10px !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 99, 78, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-danger {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
}

.btn-danger:active {
    transform: translateY(0);
}

.btn-sm {
    border-radius: 10px !important;
    padding: 6px 15px;
}

.btn-lg {
    border-radius: 10px !important;
    padding: 12px 40px;
}

/* Badge Styles - 25px Radius */
.badge {
    border-radius: 25px !important;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-success {
    border-radius: 25px !important;
}

.badge-warning {
    border-radius: 25px !important;
}

.badge-danger {
    border-radius: 25px !important;
}

.badge-info {
    border-radius: 25px !important;
}

.badge-secondary {
    border-radius: 25px !important;
}

.badge-primary {
    border-radius: 25px !important;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    margin-top: 70px;
}

.hero-slider .owl-stage-outer {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 50vh;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(254, 99, 78, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 99, 78, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Owl Carousel Navigation */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.3) !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    outline: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(254, 99, 78, 0.4);
}

.hero-slider .owl-nav button.owl-prev:active,
.hero-slider .owl-nav button.owl-next:active {
    transform: scale(0.95);
}

.hero-slider .owl-nav button span {
    font-size: 24px;
    line-height: 1;
    display: block;
}

.hero-slider .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-slider .owl-nav button.disabled:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1);
}

/* Owl Carousel Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-slider .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider .owl-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

.hero-slider .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 40px;
}

.search-box h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.search-box .form-control,
.search-box select.form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-weight: 500;
    color: var(--text-dark);
}

.search-box .form-control:hover,
.search-box select.form-control:hover {
    border-color: #d0d0d0;
    background: #fff;
}

.search-box .form-control:focus,
.search-box .form-control:active,
.search-box select.form-control:focus,
.search-box select.form-control:active {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(254, 99, 78, 0.15);
    outline: none;
    transform: translateY(-2px);
    color: var(--text-dark);
}

.search-box .btn-search {
    background: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
}

.search-box .btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 99, 78, 0.3);
}

.search-box .btn-search:active {
    transform: translateY(0);
}

/* Category Cards */
.category-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.category-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Featured Properties */
.properties-section {
    padding: 80px 0;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-content {
    padding: 25px;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.property-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.property-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-details i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.step-card {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(254, 99, 78, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===============================================
   TOP MENU (ADMIN PAGES) STYLES
   =============================================== */

.topmenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    transition: all 0.3s ease;
    height: 7.5rem;
}

.topmenu .header-content {
    padding: 0;
    height: 100%;
}

.topmenu .navbar {
    padding: 0.75rem 1.5rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.topmenu .navbar-nav {
    align-items: center;
}

.topmenu .header-left {
    flex: 1;
}

.topmenu .dashboard_bar {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Nunito Sans', sans-serif;
}

.topmenu .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topmenu .header-profile {
    position: relative;
}

.topmenu .header-profile .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
}

.topmenu .header-profile .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.topmenu .header-profile img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
}

.topmenu .header-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.topmenu .header-info span {
    font-weight: 600;
    font-size: 0.9rem;
}

.topmenu .header-info small {
    font-size: 0.75rem;
    color: var(--text-light);
}

.topmenu .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1050;
    min-width: 200px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    background: #fff;
    display: none;
    list-style: none;
}

.topmenu .header-profile.show .dropdown-menu,
.topmenu .dropdown-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topmenu .dropdown-menu li {
    list-style: none;
}

.topmenu .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
}

.topmenu .dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.topmenu .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.topmenu .dropdown-item:active,
.topmenu .dropdown-item:focus {
    background: var(--primary-light);
    color: #fff;
}

.topmenu .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .topmenu {
        height: 5rem;
    }
    
    .topmenu .dashboard_bar {
        font-size: 1.1rem;
    }
    
    .topmenu .navbar {
        padding: 0.5rem 1rem;
    }
    
    .topmenu .header-info {
        display: none;
    }
}

/* ===============================================
   SIDEBAR ACTIVE STATE STYLING
   =============================================== */

/* Active menu item in full sidebar */
.deznav .metismenu li a.active,
.deznav .metismenu li a.mm-active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.deznav .metismenu li a.active i,
.deznav .metismenu li a.mm-active i {
    color: var(--primary-color);
}

/* Active indicator bar on the left */
.deznav .metismenu li a.active::before,
.deznav .metismenu li a.mm-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

/* Hover state for full sidebar menu items */
.deznav .metismenu li a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.deznav .metismenu li a:hover i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Override style.css default before pseudo-element - disable hover animation */
[data-sidebar-style="full"][data-layout="vertical"] .deznav .metismenu > li > a:before {
    display: none !important;
}

/* Show before element only for active items */
[data-sidebar-style="full"][data-layout="vertical"] .deznav .metismenu > li.mm-active > a:before,
[data-sidebar-style="full"][data-layout="vertical"] .deznav .metismenu > li > a.active:before {
    display: block !important;
    width: 4px !important;
    left: 0 !important;
}

/* ===============================================
   LAYOUT FIX - PREVENT SIDEBAR & TOPMENU OVERLAP
   =============================================== */

/* Adjust topmenu position to account for sidebar */
.topmenu {
    left: 18rem; /* Sidebar width */
    width: calc(100% - 18rem);
    transition: all 0.3s ease;
}

/* Adjust content-body position */
.content-body {
    margin-left: 18rem; /* Sidebar width */
    margin-top: 5rem; /* Topmenu height */
    transition: all 0.3s ease;
}

/* When sidebar is collapsed (menu-toggle) */
[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .topmenu {
    left: 5rem;
    width: calc(100% - 5rem);
}

[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .content-body {
    margin-left: 5rem;
}

/* Sidebar should be fixed to prevent scrolling with content */
.deznav {
    position: fixed !important;
    z-index: 200 !important;
}

/* Nav-header is now inside deznav */
.nav-header {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
}

/* Tablet and below adjustments */
@media only screen and (max-width: 1400px) {
    .topmenu {
        left: 17rem;
        width: calc(100% - 17rem);
    }
    
    .content-body {
        margin-left: 17rem;
    }
    
    body.sidebar-mini .topmenu {
        left: 5rem;
        width: calc(100% - 5rem);
    }
    
    body.sidebar-mini .content-body {
        margin-left: 5rem;
    }
    
    [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .topmenu {
        left: 5rem;
        width: calc(100% - 5rem);
    }
    
    [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .content-body {
        margin-left: 5rem;
    }
}

@media only screen and (max-width: 1199px) {
    .topmenu {
        left: 5rem;
        width: calc(100% - 5rem);
        height: 5rem;
    }
    
    .content-body {
        margin-left: 5rem;
        margin-top: 5rem;
    }
    
    /* Collapsed state on mobile */
    .menu-toggle .topmenu {
        left: 0;
        width: 100%;
    }
    
    .menu-toggle .content-body {
        margin-left: 0;
    }
    
    /* Hide sidebar off-screen by default on mobile */
    .deznav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    /* Show sidebar when menu is toggled */
    .menu-toggle .deznav {
        transform: translateX(0);
    }
}

@media only screen and (max-width: 767px) {
    .content-body {
        margin-top: 5rem;
    }
}

/* ===============================================
   HAMBURGER MENU & NAV-CONTROL STYLING
   =============================================== */

/* Nav-control hamburger positioning */
.nav-control {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger active state (X icon) */
.hamburger.is-active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay for sidebar */
@media only screen and (max-width: 1199px) {
    .menu-toggle::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 150;
        display: block;
    }
    
    /* Ensure sidebar appears above overlay */
    .menu-toggle .deznav {
        z-index: 200 !important;
    }
}

/* ===============================================
   SIDEBAR TOGGLE BUTTON (MINI/ICON MODE)
   =============================================== */

/* Toggle button container */
.sidebar-toggle-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Toggle button styling */
.btn-sidebar-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(254, 99, 78, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-sidebar-toggle:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(254, 99, 78, 0.6);
    transform: scale(1.1);
}

.btn-sidebar-toggle:active {
    transform: scale(0.95);
}

.btn-sidebar-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Arrow animation on hover */
.btn-sidebar-toggle:hover i {
    animation: arrowPulse 0.6s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px);
    }
}

/* Ripple effect on click */
.btn-sidebar-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-sidebar-toggle:active::before {
    width: 200%;
    height: 200%;
}

/* Adjust deznav-scroll for nav-header inside deznav */
.deznav .deznav-scroll {
    /* padding-top: 7.5rem; Height of nav-header */
    padding-bottom: 80px; /* Space for toggle button */
}

@media only screen and (max-width: 1199px) {
    .deznav .deznav-scroll {
        padding-top: 5rem; /* Reduced nav-header height on mobile */
        padding-bottom: 20px; /* No toggle button on mobile */
    }
}

/* Mini sidebar state */
body.sidebar-mini .deznav {
    width: 5rem !important;
    overflow: visible;
}

body.sidebar-mini .nav-header {
    width: 100% !important;
}

body.sidebar-mini .nav-header .brand-title {
    display: none;
}

body.sidebar-mini .nav-header .brand-logo {
    justify-content: center;
    padding: 0;
}

body.sidebar-mini .deznav .nav-text {
    display: none;
}

body.sidebar-mini .deznav .metismenu li a {
    padding: 0.625rem 1rem !important; /* Preserve vertical padding from full sidebar (10px), horizontal for icon centering (16px) */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 1400px) {
    body.sidebar-mini .deznav .metismenu li a {
        padding: 0.625rem 0.875rem !important; /* Maintain padding consistency on smaller screens (10px 14px) */
    }
}

body.sidebar-mini .deznav .metismenu li a i {
    margin-right: 0;
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    text-align: center;
}

/* Active state for collapsed sidebar */
body.sidebar-mini .deznav .metismenu li a.active,
body.sidebar-mini .deznav .metismenu li a.mm-active {
    background: var(--primary-color);
    color: white !important;
}

body.sidebar-mini .deznav .metismenu li a.active i,
body.sidebar-mini .deznav .metismenu li a.mm-active i {
    color: white !important;
}

/* Active items should have white arrow in mini mode */
body.sidebar-mini .deznav .metismenu li a.active::before,
body.sidebar-mini .deznav .metismenu li a.mm-active::before {
    border-right-color: white !important;
}

body.sidebar-mini .deznav .metismenu li a.active::after,
body.sidebar-mini .deznav .metismenu li a.mm-active::after {
    background: white !important;
    color: var(--primary-color) !important;
}

/* Hover state for collapsed sidebar */
body.sidebar-mini .deznav .metismenu li a:hover {
    color: var(--primary-color);
}

body.sidebar-mini .deznav .metismenu li a:hover i {
    color: var(--primary-color);
}

/* Active state overrides hover */
body.sidebar-mini .deznav .metismenu li a.active:hover,
body.sidebar-mini .deznav .metismenu li a.mm-active:hover {
    background: var(--primary-color);
    color: white !important;
}

body.sidebar-mini .deznav .metismenu li a.active:hover i,
body.sidebar-mini .deznav .metismenu li a.mm-active:hover i {
    color: white !important;
}

/* Adjust topmenu when sidebar is mini */
body.sidebar-mini .topmenu {
    left: 5rem;
    width: calc(100% - 5rem);
}

body.sidebar-mini .content-body {
    margin-left: 5rem;
}

/* Rotate arrow when collapsed */
body.sidebar-mini .btn-sidebar-toggle i {
    transform: rotate(180deg);
}

/* Tooltip for mini sidebar items */
body.sidebar-mini .deznav .metismenu li {
    position: relative;
}

body.sidebar-mini .deznav .metismenu li a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tooltip arrow */
body.sidebar-mini .deznav .metismenu li a::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 9px;
    z-index: 9999;
}

body.sidebar-mini .deznav .metismenu li a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

body.sidebar-mini .deznav .metismenu li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

/* Hide toggle button on mobile */
@media only screen and (max-width: 1199px) {
    .sidebar-toggle-btn {
        display: none;
    }
}

/* ===============================================
   PROFILE PAGE STYLES
   =============================================== */

/* Profile Card */
.profile-head {
    position: relative;
    margin-bottom: 30px;
}

.profile-head .photo-content {
    position: relative;
}


.profile-head .cover-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(44,62,80,0.12);
}

.profile-head .cover-photo .profile-photo {
    margin-bottom: -75px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
}

.cover-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.06) 0%, rgba(17, 24, 39, 0.58) 100%);
}

.cover-photo-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.cover-photo-copy {
    color: #fff;
    max-width: 600px;
}

.cover-photo-copy h3 {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cover-photo-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.cover-role-pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.cover-membership-card {
    min-width: 250px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.cover-membership-card strong,
.cover-membership-card small,
.cover-membership-card .membership-kicker {
    display: block;
}

.cover-membership-card strong {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.cover-membership-card small {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.membership-kicker {
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cover-membership-card.membership-active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.32) 100%);
}

.cover-membership-card.membership-trial {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.32) 100%);
}

.cover-membership-card.membership-expired {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.32) 100%);
}

.cover-membership-card.membership-none {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.2) 0%, rgba(71, 85, 105, 0.32) 100%);
}

.profile-cover-summary {
    margin-top: 1.25rem;
}

/* Cover Photo Edit Button */
.btn-edit-cover {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.btn-edit-cover:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(254, 99, 78, 0.4);
}

.btn-edit-cover i {
    font-size: 18px;
}

.profile .profile-info {
    position: relative;
    margin-top: -80px;
    padding: 0 20px;
}

.profile .profile-photo {
    width: 150px;
    height: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* ===============================================
   FORM LAYOUT STYLES - ROOMS & PROPERTIES
   =============================================== */

/* Required Field Indicator */
.form-label.required::after {
    content: ' *';
    color: #dc3545;
    font-weight: 700;
    margin-left: 3px;
}

/* Card Spacing & Consistency */
.card {
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
}

.card-header h5.card-title {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.card-body {
    padding: 20px;
}

/* Form Control Enhancements */
.form-control:disabled,
.form-control[readonly] {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #fff;
    cursor: pointer;
}

.form-select:hover {
    border-color: #d0d0d0;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(254, 99, 78, 0.15);
    outline: none;
    color: var(--text-dark);
}

/* Textarea Enhancements */
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Small Text Helper */
small.text-muted {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Form Check Styling */
.form-check {
    padding-left: 0;
    margin-bottom: 10px;
}

.form-check .form-check-input {
    margin-right: 8px;
    margin-top: 3px;
}

.form-check .form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
}

/* Checkbox Grid Layout for Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

/* Button Group Spacing */
.btn-group .btn {
    margin: 0 5px;
}

.btn-group .btn:first-child {
    margin-left: 0;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Page Header Styles */
.page-header {
    margin-bottom: 25px;
}

.page-header h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.page-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Alert Enhancements */
.alert {
    margin-bottom: 20px;
}

.alert .btn-close {
    padding: 10px;
}

/* Responsive Design - Mobile & Tablet */
@media (max-width: 991px) {
    /* Adjust column layout for tablets */
    .col-lg-8,
    .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }
    
    /* Card spacing */
    .card {
        margin-bottom: 15px;
    }
    
    /* Button stacking */
    .d-flex.justify-content-between .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    /* Full width columns on mobile */
    .col-md-6,
    .col-md-4,
    .col-md-12 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* Reduce padding on cards */
    .card-body {
        padding: 15px;
    }
    
    .card-header {
        padding: 12px 15px;
    }
    
    /* Button full width on mobile */
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    /* Amenities checkboxes - single column on mobile */
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Page header adjustments */
    .page-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .page-header .d-flex > div {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Input Number Spinner Styling */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Date Input Styling */
input[type="date"] {
    cursor: pointer;
}

/* Sidebar Sticky on Desktop */
@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 20px;
    }
}

.profile .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.profile .profile-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile .profile-name h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.profile .profile-name p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.profile .profile-email h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.profile .profile-email p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.85rem;
}

/* Profile Statistics */
.profile-statistics {
    padding: 20px 0;
}

.profile-statistics .row {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.profile-statistics h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-statistics span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Profile Tabs */
.profile-tab .custom-tab-1 .nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

.profile-tab .custom-tab-1 .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-tab .custom-tab-1 .nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.profile-tab .custom-tab-1 .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

/* Password Toggle Button */
.input-group .btn-outline-secondary {
    border-color: #e0e0e0;
    color: #6c757d;
}

.input-group .btn-outline-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Avatar Modal */
#avatarModal .modal-content {
    border-radius: 15px;
}

#avatarModal .rounded-circle {
    border: 3px solid var(--primary-color);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile .profile-info {
        margin-top: -60px;
    }

    .cover-photo-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .cover-photo-copy h3 {
        font-size: 1.5rem;
    }

    .cover-membership-card {
        width: 100%;
        min-width: 0;
    }
    
    .profile .profile-photo {
        width: 100px;
        height: 100px;
        aspect-ratio: 1 / 1;
    }
    
    .profile .profile-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 10px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===============================================
   DASHBOARD PAGE STYLES
   =============================================== */

.bg-primary { 
    background-color: var(--primary-color) !important; 
}

.text-primary { 
    color: var(--primary-color) !important; 
}

.btn-primary { 
    background-color: var(--primary-color) !important; 
    border-color: var(--primary-color) !important; 
}

.btn-primary:hover { 
    background-color: var(--primary-dark) !important; 
    border-color: var(--primary-dark) !important; 
}

/* ===============================================
   RESPONSIVE STYLES
   =============================================== */

@media (max-width: 768px) {
    .hero-slide {
        height: 100vh;
        min-height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .search-box {
        margin-top: 30px;
    }
    
    .hero-slider .owl-nav {
        padding: 0 15px;
    }
    
    .hero-slider .owl-nav button.owl-prev,
    .hero-slider .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-slider .owl-nav button span {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider .owl-nav button.owl-prev,
    .hero-slider .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.4) !important;
    }
    
    .hero-slider .owl-nav button span {
        font-size: 16px;
    }
}
