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

body {
    font-family: 'Noto Kufi Arabic', 'Montserrat', sans-serif;
    text-align: right;
    background-color: #f8f8fa;
}

.container {
    min-height: 100vh;
    width: 80%;
    overflow: hidden;
    margin: auto auto;
}

/* Header */
.header {
    background-color: transparent !important;
    width: 80%;
    margin: auto auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #2c5f5a;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a4a45;
}

.nav-menu a.active {
    font-weight: 900;
    color: #082c2b;
    text-shadow: 0 0 5px rgba(8, 44, 43, 0.3), 0 0 10px rgba(8, 44, 43, 0.3), 0 0 15px rgba(8, 44, 43, 0.3);
    border-radius: 5px;
    padding: 5px 10px;
}

.login-btn {
    background: #082c2b;
    color: #00efd2;
    padding: 8px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #1a4a45;
}


.logo img {
    width: 100px;
}


/* Desktop: keep existing styles unchanged */

/* Tablet & smaller screens */
@media (max-width: 1024px) {
    .header {
        width: 90%;
        padding: 15px 10px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .login-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo img {
        width: 90px;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Mobile & tablet nav adjustments */
@media (max-width: 768px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}


/* Mobile: collapse menu */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        display: none;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 18px;
        cursor: pointer;
    }

    .hamburger div {
        height: 3px;
        background: #2c5f5a;
        border-radius: 2px;
    }

    .header {
        justify-content: space-between;
    }

    .login-btn {
        order: 2;
    }
}

/* Show menu when active */
.nav-menu.active {
    display: flex;
}


/* Hero Section */
.hero-section {
    
    position: relative;
    height: 100vh;
    background-image: url('../images/Asset 1@4x.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.hero-container{
    width: 80%;
    margin: auto auto;
}
@media (max-width: 992px) {
  .hero-container {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .hero-container {
    width: 100%;
    padding: 0 15px; 
  }
}

.hero-content {
    max-width: 500px;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.4;
    font-weight: 800;
}

/* Form Box */
.booking-form {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 15rem 0 0;


}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.toggle-options {
    display: flex;
    gap: 20px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.toggle-switch input {
    display: none;
}

.slider {
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active state */
.toggle-switch input:checked+.slider {
    background: #2c5f5a;
}

.toggle-switch input:checked+.slider::before {
    transform: translateX(20px);
}


.hidden-input {
    position: absolute;
    left: -9999px;
    /* إخفاء input الأصلي */
}

.select-date-btn {
    padding: 10px 16px;
    margin-right: 10px;
    background: #2c5f5a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}


.plan-tabs {
    display: flex;
    gap: 0;
}

.plan-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.plan-tab.active {
    color: #333;
    border-bottom-color: #2d5a52;
    font-weight: 500;
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 5px;
}

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

.field-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.date-input-group {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (max-width: 600px) {
  .date-input-group {
    flex-direction: column; 
    align-items: flex-start;  
    gap: 8px;
    width: 100%;  
  }

 
}

.date-time-field {
    margin-top: 5px;
    display: flex; /* 2. display flex to the rescue */
    flex-direction: row;
}
.date-time-input{
    height: 40px !important;
}

.date-time-field input[type=time]{
    height: 33px;
    float: left;
    padding: 3px 5px;
    border:solid 1px #bbbbbb;
    border-radius:5px 5px 5px 5px;
    -moz-border-radius:5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
}
.date-time-field input[type=text]{
    height: 33px;
    float: left;
    padding: 3px 5px;
    border:solid 1px #bbbbbb;
    border-radius:5px 5px 5px 5px;
    -moz-border-radius:5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
}

.date-time-field select{
    font-size: 17px;
    width: 30%;
    height: 33px;
    float: right;
    padding: 4px;
    padding-bottom: 6px;
    border-radius:0 5px 5px 0;
    -moz-border-radius:0 5px 5px 0;
    -webkit-border-radius:0 5px 5px 0;
    border:solid 1px #bbbbbb;
    border-left: none;
}

.text-light .date-time-field select,
.text-light .date-time-field input[type=text],
.text-light .form-control{
    color:#ffffff;
    background: none;
    border-color:#555555;
}

.date-display {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 8px;
    width: 200px;
    font-size: 13px;
    padding: 7px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    justify-content: right;
}

.branch-display {
    width: 100%;
    height: 40px;
    padding: 7px 16px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}


/* Tablet */
@media (max-width: 1024px) {
    .date-display::before {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .date-display::before {
        font-size: 11px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .date-display::before {
        font-size: 9px;
    }
}

.select-date-btn {
    padding: 10px 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-date-btn:hover {
    border-color: #2d5a52;
    color: #2d5a52;
}

.location-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: white;
    width: 100%;
    cursor: pointer;
}

.form-footer {
    display: flex;
    justify-content: flex-start;
}

.find-vehicle-btn {
    background: #082c2b;
    color: #00efd2;
    border: none;
    padding: 10px 15px;
    margin-top: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.find-vehicle-btn:hover {
    background: #1e3d36;
    transform: translateY(-1px);
}




  .date-display {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    background: #f9f9f9;
  }

  .hidden-date {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

@media (max-width: 768px) {
    .form-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .radio-options {
        justify-content: center;
    }

    .plan-tabs {
        justify-content: center;
    }
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {

    /* Header */
    .header {
        width: 90%;
        padding: 15px 10px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .login-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo img {
        width: 90px;
    }

    /* Hero content */
    .hero-content {
        max-width: 400px;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    /* Booking form */
    .booking-form {
        width: 100%;
        margin: 6rem auto;
        padding: 15px 20px;
    }

    .form-fields {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .field-label {
        font-size: 11px;
    }

    .select-date-btn,
    .location-select {
        font-size: 13px;
        padding: 10px 14px;
    }

    .find-vehicle-btn {
        font-size: 13px;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {

    /* Hero content */
    .hero-content {
        max-width: 100%;
        padding-top: 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Form layout */
    .form-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .radio-options,
    .plan-tabs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .plan-tab {
        padding: 10px 15px;
        font-size: 13px;
    }



    .select-date-btn,
    .location-select {
        font-size: 12px;
        padding: 10px 12px;
    }

    .find-vehicle-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .booking-form {
        margin: 4rem auto;
        padding: 12px 15px;
    }

    .plan-tab {
        padding: 8px 12px;
        font-size: 12px;
    }

    .radio-option {
        font-size: 12px;
        gap: 5px;
    }

    .select-date-btn,
    .location-select {
        font-size: 11px;
        padding: 8px 10px;
    }

    .find-vehicle-btn {
        font-size: 12px;
        padding: 10px;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 70%;
    margin: 7rem auto;
    height: 500px;
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.one {
    background-image: url('../images/pexels-photo-1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.carousel-slide.two {
    background-image: url('../images/pexels-photo-2.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;

}

.carousel-slide.three {
    background-image: url('../images/pexels-photo-3.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
     border-radius: 20px;

}


.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    padding: 60px;
    z-index: 2;
    position: absolute;
    left: 40px;
    /* distance from left edge */
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    /* optional, keeps text readable */
    text-align: left;
}

.slide-text {
    max-width: 500px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    color: #02f1d4;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.slide-button {
    background-color: #02f1d4;
    color: #1a3b3a;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.slide-button:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.slide-image {
    flex: 1;
    height: 100%;
    position: relative;
 }

.slide-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.carousel-container {
  position: relative;
 }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; /* شيل الخلفية */
  border: none;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  z-index: 5; /* خليهم فوق أي محتوى */
  color: black; /* السهم أسود */
  font-size: 2rem; /* حجم السهم */
  line-height: 1;
  transition: transform 0.3s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.2);
}

.carousel-prev {
  left: -60px; /* خارج السلايد من اليسار */
}

.carousel-next {
  right: -60px; /* خارج السلايد من اليمين */
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4ade80;
    border-color: #4ade80;
}

.indicator:hover {
    border-color: #4ade80;
}

/* Carousel Responsive Design */
@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
        margin-bottom: 40px;
    }

    .carousel-slide {
        flex-direction: column;
        text-align: center;
    }

    .slide-content {
        padding: 40px 20px 20px 20px;
        flex: none;
        left: 0;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-image {
        flex: 1;
        min-height: 200px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 350px;
    }

    .slide-content {
        padding: 30px 15px 15px 15px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .slide-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;

}

.filters {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.filter-dropdown {
  background: white;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  padding: 12px 40px 12px 16px;  
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;

  /* Hide default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;  
  background-size: 16px;
}


.filter-dropdown:hover {
    border-color: #3498db;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Desktop (default) */
.Catalogue-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tablet */
@media (max-width: 1024px) {
    .Catalogue-section {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .Catalogue-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
}


.Catalogue {
    width: 90%;
    margin: auto auto;
}


.Catalogue-section header {
    text-align: end;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 3rem 0;
    text-align: end;
}

/* Optional: make it responsive for smaller screens */
@media (max-width: 1024px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .car-grid {
        grid-template-columns: 1fr;
    }
}

.car-card {
    background: white;
    border-radius: 40px;
    padding: 24px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.car-card img{
    width: 100%;
}

/* .car-info {
    margin-bottom: 10rem;
} */

.car-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.currency img {
    width: 15px;
    height: 15px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
}

.amount-small {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
}

.period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.car-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f2f5;
}

.car-features .fas {
    color: #3b3b3bb0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: #95a5a6;
    border-radius: 4px;
    position: relative;
    opacity: 0.7;
}

.feature-icon.transmission::before {
    content: "⚙";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.feature-icon.seats::before {
    content: "🪑";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.feature-icon.mpg::before {
    content: "⛽";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.feature span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .filters {
        justify-content: center;
        gap: 12px;
        order: 1;
    }

    .filter-dropdown {
        min-width: 100px;
        padding: 10px 35px;
        font-size: 0.9rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .car-card {
        padding: 20px;
    }

    .amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-dropdown {
        width: 100%;
        min-width: auto;
    }

    .car-features {
        gap: 8px;
    }

    .feature span {
        font-size: 0.8rem;
    }
}

/* About Section Styles */
.about-section {
    width: 90%;
    margin: auto auto;
    margin-top: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    direction: ltr;
}



.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 24px 24px 0 0;
    text-align: left;
}

.feature-description {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    color: #666;
    margin: 2px 24px 0 0;
    text-align: justify;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        margin-top: 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-image {
        height: 180px;
    }

    .feature-title {
        font-size: 1.25rem;
        margin: 20px 20px 14px 20px;
    }

    .feature-description {
        font-size: 0.9rem;
        margin: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-image {
        height: 160px;
    }
}

/* Footer styles */
.footer {
    background: #082c2b;
    color: white;
    padding: 60px 40px 30px;
    margin-top: 80px;
    direction: ltr;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    text-align: left;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #02e6cb;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4dd0d0;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 180px;
}

.app-button i {
    font-size: 2rem;
    margin-right: 12px;
}

.app-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.app-text .small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-text .big {
    font-size: 1rem;
    font-weight: bold;
}

/* Google Play Button */
.app-button.google {
    border: 1px solid #fff;
    color: #fff;
}

/* App Store Button */
.app-button.apple {
    border: 1px solid #fff;
    color: #fff;
}

/* Hover effect */
.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #4dd0d0;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4dd0d0;
}

.footer-bottom {
    border-top: 1px solid #2c5f5a;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-weight: 500;
    color: #02e6cb;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .car-image {
        width: 500px;
    }

    .form-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-form {
        margin: 0 0;
        padding: 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }


}

/* Language Switcher Styles */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn {
  padding: 6px 12px;
  text-decoration: none;
  color: #666;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: none;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  position: relative;
  min-width: 36px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-btn:hover {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(74, 170, 164, 0.4);
}

.lang-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(74, 170, 164, 0.3);
}

.lang-separator {
  color: #666;
  font-weight: bold;
}

/* Login Page Styles */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('http://localhost/web/images/Asset%201@4x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 40px;
}

.login-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.login-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.login-header {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.login-form-container {
  padding: 40px 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus {
  outline: none;
  border-color: #4AAAA4;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 170, 164, 0.1);
}

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

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4AAAA4;
}

.remember-me label {
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.forgot-password {
  color: #4AAAA4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #3a9a94;
}

.login-btn-submit {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.login-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 170, 164, 0.3);
}

.login-btn-submit:active {
  transform: translateY(0);
}

.divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
}

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

.divider span {
  background: white;
  padding: 0 15px;
  color: #666;
  font-size: 13px;
}

.register-link {
  text-align: center;
  margin-top: 20px;
}

.register-link p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.register-link a {
  color: #4AAAA4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link a:hover {
  color: #3a9a94;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 15px 30px;
  }
  
  .login-header {
    padding: 30px 20px;
  }
  
  .login-header h1 {
    font-size: 24px;
  }
  
  .login-form-container {
    padding: 30px 20px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* Alert Messages for Login */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.alert-error {
  background-color: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.alert-success {
  background-color: #efe;
  color: #363;
  border: 1px solid #cfc;
}

.alert i {
  font-size: 16px;
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-close:hover {
  opacity: 0.7;
}

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

/* Register Page Styles */
.register-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('http://localhost/web/images/Asset%201@4x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 40px;
}

.register-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.register-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.register-header {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.register-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.register-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.register-form-container {
  padding: 40px 30px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus {
  outline: none;
  border-color: #4AAAA4;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 170, 164, 0.1);
}

.phone-group {
  grid-column: 1;
}

.phone-input-group {
  display: flex;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.phone-input-group:focus-within {
  border-color: #4AAAA4;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 170, 164, 0.1);
}

.country-code {
  padding: 12px 8px;
  border: none;
  border-right: 1px solid #e9ecef;
  background: transparent;
  font-size: 14px;
  width: 80px;
  text-align: center;
  font-weight: 600;
  color: #4AAAA4;
}

.phone-input-group input[type="text"] {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 12px 16px;
}

.phone-input-group input[type="text"]:focus {
  box-shadow: none;
}

.form-options {
  margin: 10px 0;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4AAAA4;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-checkbox label {
  font-size: 13px;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
}

.register-btn-submit {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.register-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 170, 164, 0.3);
}

.register-btn-submit:active {
  transform: translateY(0);
}

.register-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login-link {
  text-align: center;
  margin-top: 20px;
}

.login-link p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.login-link a {
  color: #4AAAA4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link a:hover {
  color: #3a9a94;
}

/* Responsive Design for Register */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 15px 30px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-header {
    padding: 30px 20px;
  }
  
  .register-header h1 {
    font-size: 24px;
  }
  
  .register-form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .phone-group {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .phone-input-group {
    flex-direction: column;
  }
  
  .country-code {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
  }
}

/* Account Dashboard Styles */
.dashboard-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  min-height: 70vh;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}

/* Profile Sidebar */
.profile-sidebar {
  position: sticky;
  top: 20px;
}

.profile-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 170, 164, 0.1);
}

.profile-avatar {
  text-align: center;
  margin-bottom: 30px;
}

.profile-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #4AAAA4;
  position: relative;
}

.profile-image::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  z-index: -1;
}

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

.profile-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
}

.profile-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.profile-menu {
  margin-top: 20px;
}

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

.menu-list li {
  margin-bottom: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #666;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.menu-item:hover {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  transform: translateX(5px);
}

.menu-item.active {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 170, 164, 0.3);
  font-weight: 900;
}

.menu-item.logout {
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.menu-item.logout:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.menu-item i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Dashboard Content */
.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 170, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Orders Card */
.orders-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 170, 164, 0.1);
  overflow: hidden;
}

.card-header {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  padding: 25px 30px;
  border-bottom: none;
}

.card-header h3 {
  margin: 0;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

.card-content {
  padding: 30px;
}

.orders-container {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dashboard-layout {
    grid-template-columns: 280px 1fr;
    gap: 25px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .dashboard-section {
    padding: 40px 0;
  }
  
  .dashboard-container {
    padding: 0 15px;
  }
  
  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .profile-sidebar {
    position: static;
  }
  
  .profile-card {
    padding: 25px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 25px;
  }
  
  .card-header {
    padding: 20px 25px;
  }
  
  .card-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .dashboard-section {
    padding: 30px 0;
  }
  
  .profile-card {
    padding: 20px;
  }
  
  .profile-image {
    width: 80px;
    height: 80px;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .card-header {
    padding: 20px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .menu-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Profile Settings Styles */
.settings-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 170, 164, 0.1);
  overflow: hidden;
}

/* Profile Message Styles */
.profile-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.profile-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.profile-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.profile-message i {
  font-size: 16px;
  flex-shrink: 0;
}

.profile-message .message-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.profile-message .message-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

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

.profile-form {
  padding: 0;
}

.form-tabs {
  width: 100%;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 30px;
}

.tab-item {
  padding: 15px 25px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #666;
}

.tab-item.active {
  color: #4AAAA4;
  border-bottom-color: #4AAAA4;
}

.tab-item:hover {
  color: #4AAAA4;
}

.tab-content {
  margin-top: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

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

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input:focus {
  outline: none;
  border-color: #4AAAA4;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 170, 164, 0.1);
}

.phone-input-group {
  display: flex;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.phone-input-group:focus-within {
  border-color: #4AAAA4;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 170, 164, 0.1);
}

.country-code {
  padding: 12px 8px;
  border: none;
  border-right: 1px solid #e9ecef;
  background: transparent;
  font-size: 14px;
  width: 80px;
  text-align: center;
  font-weight: 600;
  color: #4AAAA4;
}

.phone-input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
}

.phone-input:focus {
  box-shadow: none;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.btn-submit {
  background: linear-gradient(135deg, #4AAAA4, #3a9a94);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 170, 164, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive Design for Profile Form */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tab-item {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .form-actions {
    justify-content: center;
  }
  
  .btn-submit {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .form-grid {
    gap: 15px;
  }
  
  .tab-item {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .form-input,
  .phone-input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .country-code {
    width: 70px;
    padding: 10px 6px;
    font-size: 13px;
  }
  
  .btn-submit {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* Car Book Button Styling */
.car-book-btn {
  margin-top: 5px;
  background-color: #2c3e50;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 40px;
  width: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.car-book-btn:hover {
  background-color: #1a252f;
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced Modal Styles */
.enhanced-modal {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: none;
  overflow: hidden;
}

.enhanced-modal .modal-header {
  border-bottom: none;
  padding: 20px 25px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.enhanced-modal .modal-body {
  padding: 20px 25px;
}

.enhanced-modal .modal-footer {
  border-top: none;
  padding: 15px 25px 20px;
  gap: 10px;
}

/* Modal Icons */
.modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

/* Error Modal Styles */
.error-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.error-header .modal-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.error-body {
  background-color: #fdf2f2;
  color: #721c24;
}

.error-footer {
  background-color: #fdf2f2;
}

/* Warning Modal Styles */
.warning-header {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.warning-header .modal-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.warning-body {
  background-color: #fffbf0;
  color: #8b4513;
}

.warning-footer {
  background-color: #fffbf0;
}

/* Success Modal Styles */
.success-header {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
}

.success-header .modal-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.success-body {
  background-color: #f0fdf4;
  color: #166534;
}

.success-footer {
  background-color: #f0fdf4;
}

/* Enhanced Buttons */
.enhanced-btn {
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  background-color: #2c3e50 !important;
  color: white !important;
}

.enhanced-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Message Styling */
.error-message p,
.warning-message p,
.success-message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Close Button Enhancement */
.enhanced-modal .close {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.enhanced-modal .close:hover {
  color: white;
}

/* Modal Title Enhancement */
.enhanced-modal .modal-title {
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}

/* Simple Car Loading */
.car-loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
}

/* RTL Support for Loading */
[dir="rtl"] .car-loading-container {
  margin-right: 150%;
}

[dir="ltr"] .car-loading-container {
  margin-left: 150%;
}

.car-loading-spinner {
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2c3e50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

.loading-text {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.x32 {
    width: 32px !important;
    height: 32px !important;
}

.months_card {
    border-right: 5px solid #ffffff;
    padding: 0px;
    position: relative;
    background: none;
    width: 100%;
    float: left;
    text-align: center;
    margin-right: 20px;
    background: #2c3e50;
    padding-top: 5px;
    font-weight: bold;
    color: #ffffff;
}

.months_card:hover {
    cursor: pointer;
    box-shadow: 1px 1px 19px 0px #abb7b7;
}

/* Search Filters Styles */
.price-range-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.filter-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    width: 120px;
}

.price-separator {
    color: #666;
    font-weight: bold;
}

.sorting-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.sort-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2c5f5a;
}

.search-btn {
    background: linear-gradient(135deg, #2c5f5a, #3a7a75);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1e4a45, #2c5f5a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 90, 0.3);
}

/* Search Filters Section */
.search-filters-section {
    width: 80%;
    margin: 40px auto;
    padding: 0 20px;
}

.filters {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 25px;
    background: white;
    border-radius: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* Responsive Design for Search Filters */
@media (max-width: 768px) {
    .search-filters-section {
        width: 95%;
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
    }
    
    .sorting-options {
        justify-content: center;
    }
    
    .price-range-group {
        justify-content: center;
    }
}

/* Info Page Styles */
.info-hero {
    background: #082c2b;
    padding: 100px 0 80px;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

.background-decoration {
    position: fixed;
    bottom: 0;
    margin-bottom: -1300px;
    right: 0;
    width: 1500px;
    height: 1400px;
    background-image: url('/web/images/back1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.info-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 50px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-hero .hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-hero .hero-content h4 {
    color: #00F1D4;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 10px;
    display: inline-block;
    text-align: right;
    width: 100%;
}

.info-hero .hero-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.info-hero .hero-content .rtl {
    margin-bottom: 25px;
}

.info-hero .hero-content .rtl:first-child {
    margin-bottom: 35px;
}

/* Branches Page Styles */
.branches-main-container {
    display: flex;
    min-height: 100vh;
    background: #082c2b;
    padding-top: 80px;
}

/* Left Panel - Map */
.map-container {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#map {
    width: 100%;
    height: calc(100vh - 120px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: none;
}

/* Right Panel - Branch Information */
.branches-panel {
    width: 400px;
    background: #082c2b;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Branches page specific navbar colors */
.branches-main-container ~ * .nav-menu a,
body:has(.branches-main-container) .nav-menu a {
    color: #00F1D4 !important;
}

.branches-main-container ~ * .nav-menu a:hover,
body:has(.branches-main-container) .nav-menu a:hover {
    color: #00F1D4 !important;
    opacity: 0.8;
}

.branches-main-container ~ * .nav-menu a.active,
body:has(.branches-main-container) .nav-menu a.active {
    color: #00F1D4 !important;
    text-shadow: 0 0 5px rgba(0, 241, 212, 0.3), 0 0 10px rgba(0, 241, 212, 0.3), 0 0 15px rgba(0, 241, 212, 0.3);
}

/* Branches page specific logo */
.branches-main-container ~ * .logo img,
body:has(.branches-main-container) .logo img {
    content: url('/web/images/colored-logo.png') !important;
}

.panel-title {
    text-align: center;
    margin-bottom: 30px;
}

.panel-title h2 {
    color: #00F1D4 !important;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.branch-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.branch-selector {
    margin-bottom: 0;
}

.branch-selector label {
    color: #082c2b !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.branch-selector select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #082c2b !important;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.branch-selector select:focus {
    outline: none;
    border-color: #00F1D4;
    box-shadow: 0 0 0 3px rgba(0, 241, 212, 0.1);
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-address,
.branch-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #082c2b !important;
    font-size: 1rem;
    font-weight: 500;
}

.branch-address i,
.branch-phone i {
    color: #082c2b !important;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.branch-address span,
.branch-phone span {
    flex: 1;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .branches-main-container {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .branches-panel {
        width: 100%;
        padding: 20px;
    }
    
    .map-container {
        padding: 10px;
    }
    
    #map {
        height: 400px;
    }
    
    .panel-title h2 {
        font-size: 1.5rem;
    }
}

/* Call Sajil Page Styles */
.call-sajil-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #082c2b 0%, #0a3a37 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: calc(100vh - 80px);
    align-items: start;
}

/* Contact Panel */
.contact-panel {
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
}

.main-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.main-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #064941, #0c5047);
    border-radius: 16px;
    margin-left: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-details {
    flex: 1;
}

.contact-title {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.contact-info {
    color: #082c2b;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Section Titles */
.section-title {
    color: white !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

/* Social Network Section */
.social-section {
    margin-bottom: 50px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #082c2b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-item:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #082c2b !important;
}

.social-item span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: #082c2b !important;
}

/* Apps Section */
.apps-section {
    margin-bottom: 40px;
}

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-download {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #082c2b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-download:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    margin-left: 20px;
    flex-shrink: 0;
}

.app-logo i {
    font-size: 1.5rem;
    color: #082c2b !important;
}

.app-info {
    flex: 1;
}

.app-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 2px;
}

.app-name {
    font-size: 1rem;
    font-weight: 700;
}


/* Background Decoration */
.call-sajil-decoration {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

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

/* Call Sajil page specific navbar colors */
.call-sajil-container ~ * .nav-menu a,
body:has(.call-sajil-container) .nav-menu a {
    color: white !important;
}

.call-sajil-container ~ * .nav-menu a:hover,
body:has(.call-sajil-container) .nav-menu a:hover {
    color: white !important;
    opacity: 0.8;
}

.call-sajil-container ~ * .nav-menu a.active,
body:has(.call-sajil-container) .nav-menu a.active {
    color: white !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Call Sajil page specific logo */
.call-sajil-container ~ * .logo img,
body:has(.call-sajil-container) .logo img {
    content: url('/web/images/colored-logo.png') !important;
}

/* Responsive Design for Call Sajil */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .contact-panel {
        max-width: 100%;
    }
    
    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .main-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .social-item {
        padding: 15px 10px;
    }
    
    .social-item i {
        font-size: 1.5rem;
    }
    
    .social-item span {
        font-size: 0.75rem;
    }
    
    .call-sajil-decoration {
        width: 400px;
        height: 400px;
        bottom: -100px;
        right: -100px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 0 15px 0;
    }
    
    .app-download {
        padding: 15px 20px;
    }
    
    .app-logo {
        margin: 0 0 0 15px;
    }
}

/* Work Periods Page Styles */
.work-periods-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #082c2b 0%, #0a3a37 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.work-periods-container .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: calc(100vh - 80px);
    align-items: start;
}

/* Work Periods Panel */
.work-periods-panel {
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.work-periods-header {
    margin-bottom: 60px;
    text-align: center;
}

.work-periods-header .main-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.work-periods-header .main-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Work Days Grid */
.work-days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.work-days-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Work Day Cards */
.work-day-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.work-day-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.day-title {
    color: #082c2b !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 2px solid #082c2b;
    padding-bottom: 10px;
}

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

.work-hours li {
    color: #082c2b !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(8, 44, 43, 0.1);
    display: flex;
    align-items: center;
}

.work-hours li:last-child {
    border-bottom: none;
}

.work-hours li:before {
    content: "🕒";
    margin-left: 10px;
    font-size: 0.9rem;
}

/* Background Decoration */
.work-periods-decoration {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.work-periods-container .geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.work-periods-container .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.work-periods-container .shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.work-periods-container .shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.work-periods-container .shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

/* Work Periods page specific navbar colors */
.work-periods-container ~ * .nav-menu a,
body:has(.work-periods-container) .nav-menu a {
    color: white !important;
}

.work-periods-container ~ * .nav-menu a:hover,
body:has(.work-periods-container) .nav-menu a:hover {
    color: white !important;
    opacity: 0.8;
}

.work-periods-container ~ * .nav-menu a.active,
body:has(.work-periods-container) .nav-menu a.active {
    color: white !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Work Periods page specific logo */
.work-periods-container ~ * .logo img,
body:has(.work-periods-container) .logo img {
    content: url('/web/images/colored-logo.png') !important;
}

/* Responsive Design for Work Periods */
@media (max-width: 768px) {
    .work-periods-container .content-wrapper {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .work-periods-panel {
        max-width: 100%;
    }
    
    .work-periods-header .main-title {
        font-size: 2.5rem;
    }
    
    .work-days-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-day-card {
        padding: 20px;
    }
    
    .day-title {
        font-size: 1.2rem;
    }
    
    .work-periods-decoration {
        width: 400px;
        height: 400px;
        bottom: -100px;
        right: -100px;
    }
    
    .work-periods-container .shape-1, 
    .work-periods-container .shape-2, 
    .work-periods-container .shape-3 {
        display: none;
    }
}

/* Info page specific navbar colors */
.info-hero ~ * .nav-menu a,
body:has(.info-hero) .nav-menu a {
    color: #00F1D4 !important;
}

.info-hero ~ * .nav-menu a:hover,
body:has(.info-hero) .nav-menu a:hover {
    color: #00F1D4 !important;
    opacity: 0.8;
}

.info-hero ~ * .nav-menu a.active,
body:has(.info-hero) .nav-menu a.active {
    color: #00F1D4 !important;
    text-shadow: 0 0 5px rgba(0, 241, 212, 0.3), 0 0 10px rgba(0, 241, 212, 0.3), 0 0 15px rgba(0, 241, 212, 0.3);
}

/* Info page specific logo */
.info-hero ~ * .logo img,
body:has(.info-hero) .logo img {
    content: url('/web/images/colored-logo.png') !important;
}