/* Base Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #5a8f9b;
    --accent-color: #ffc107;
    --dark-color: #0a2540;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto Slab', serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.header-top {
    background-color: var(--dark-color);
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 24px;
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.contact-info a:hover {
    color: white;
}

.contact-info a i {
    margin-right: 8px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 18px;
    font-size: 1rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
}

.logo img {
    height: 65px;
    transition: transform var(--transition-speed) ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: all var(--transition-speed) ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 18px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: color var(--transition-speed) ease;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
    width: 100%;
}

.nav-menu li.cta-button a {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
    transition: all var(--transition-speed) ease;
}

.nav-menu li.cta-button a:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 37, 64, 0.25);
}

.nav-menu li.cta-button a:after {
    display: none;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    overflow: hidden;
}

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

.hero-slider {
    height: 100%;
    position: relative;
    z-index: 2;
}

.slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.current {
    opacity: 1;
}

.slide .content {
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide h1 {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.slide p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.slide .buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.slide .buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.slide .buttons .btn.primary {
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.slide .buttons .btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.slide .buttons .btn.secondary {
    border-width: 2px;
}

.slide .buttons .btn.secondary:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.features:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--light-color));
    z-index: 1;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-box {
    background-color: white;
    padding: 50px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover:before {
    transform: scaleX(1);
}

.feature-box .icon {
    width: 85px;
    height: 85px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover .icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-box h3 {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-box p {
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 143, 155, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-preview .image-col {
    position: relative;
}

.about-preview .image-col:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    z-index: -1;
}

.about-preview .image-col img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: translateY(0);
}

.about-preview .image-col:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.about-preview .text-col h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
}

.about-preview .text-col h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-preview .text-col p {
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-preview .text-col .btn {
    margin-top: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.about-preview .text-col .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.services-preview .section-title {
    margin-bottom: 3rem;
    position: relative;
}

.services-preview .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.service-content {
    padding: 30px;
    position: relative;
}

.service-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.service-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-content .btn-link {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
}

.service-content .btn-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-content .btn-link:hover:after {
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.testimonials .section-title {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.testimonials .section-title:after {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(13, 110, 253, 0.1);
    font-family: Georgia, serif;
    z-index: -1;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: none;
}

.testimonial.current {
    display: block;
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial:before, .testimonial:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.testimonial:before {
    top: -15px;
    left: -15px;
}

.testimonial:after {
    bottom: -15px;
    right: -15px;
}

.testimonial .stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.testimonial .quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.8;
    position: relative;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
    padding-top: 15px;
}

.testimonial .author:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s forwards;
}

.cta p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s forwards 0.2s;
    opacity: 0;
}

.cta .btn {
    margin: 0 12px;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s forwards 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.cta .btn.primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}

.cta .btn.primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

.cta .btn.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta .btn.secondary:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
/* Enhanced Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

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

.contact-info {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--primary-color);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 4px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Styles */

/* Sorting styles */
.sortable {
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
    padding-right: 25px !important;
}

.sortable:hover {
    background-color: #f5f5f5;
}

.sort-indicator {
    position: absolute;
    right: 8px;
    font-size: 0.8em;
    color: #666;
}

/* Modern Styles Enhancement */

/* Admin Dashboard Styles */
.admin-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.admin-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.admin-welcome {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bg-blue { background-color: #3498db; }
.bg-green { background-color: #2ecc71; }
.bg-orange { background-color: #f39c12; }
.bg-red { background-color: #e74c3c; }

.stat-value {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
}

.stat-footer {
    color: #666;
    font-size: 14px;
}

.filter-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bookings-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bookings-table th {
    background-color: #2c3e50;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 500;
}

.bookings-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.bookings-table tr:last-child td {
    border-bottom: none;
}

.bookings-table tr:hover {
    background-color: #f9f9f9;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Action Button Styles */
.action-btn {
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-btn {
    background-color: #3498db;
}

.edit-btn {
    background-color: #2ecc71;
}

.cancel-btn {
    background-color: #e74c3c;
}

.complete-booking-btn {
    background-color: #9b59b6;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.vessels-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.vessels-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vessels-table th {
    background-color: #2c3e50;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 500;
}

.vessels-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.vessels-table tr:last-child td {
    border-bottom: none;
}

.vessels-table tr:hover {
    background-color: #f9f9f9;
}

.action-btn:active {
    transform: translateY(1px);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
}

.status-confirmed {
    background-color: #2ecc71;
    color: white;
}

.status-completed {
    background-color: #3498db;
    color: white;
}

/* View Booking Modal Styles */
.view-booking-modal .form-group input[readonly],
.view-booking-modal .form-group select[disabled] {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #333;
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
}

.view-booking-modal .form-group select[disabled] {
    pointer-events: none;
}

.view-booking-modal.edit-mode .form-group input,
.view-booking-modal.edit-mode .form-group select {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
}

.view-booking-modal.edit-mode .form-group select {
    appearance: auto;
    -webkit-appearance: auto;
}

/* Save and Cancel buttons for edit mode */
.save-changes-btn,
.cancel-changes-btn {
    display: none;
}

.view-booking-modal.edit-mode .save-changes-btn,
.view-booking-modal.edit-mode .cancel-changes-btn {
    display: inline-flex;
}

.save-changes-btn {
    background-color: #2ecc71;
    color: white;
}

.cancel-changes-btn {
    background-color: #95a5a6;
    color: white;
}

.view-booking-modal.edit-mode .edit-btn {
    display: none;
}

.status-canceled {
    background-color: #95a5a6;
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.edit-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Loading Indicator */
.loading {
    text-align: center;
    padding: 40px;
}

.loading i {
    font-size: 2em;
    color: #3498db;
    animation: spin 1s infinite linear;
}

.loading p {
    margin-top: 15px;
    color: #666;
}

.no-bookings {
    text-align: center;
    padding: 40px;
    color: #666;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sorting styles */
.sortable {
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
    padding-right: 25px !important;
}

.sortable:hover {
    background-color: #f5f5f5;
}

.sort-indicator {
    position: absolute;
    right: 8px;
    font-size: 0.8em;
    color: #666;
}

/* Modern Styles Enhancement */

/* Page Banner Enhancement */
.page-banner {
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('/images/page-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s forwards;
}

.banner-content h1 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}

/* Timeline Enhancement */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-start;
    width: 50%;
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item .year {
    position: absolute;
    top: 0;
    right: calc(100% + 30px);
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.timeline-item:nth-child(even) .year {
    right: auto;
    left: calc(100% + 30px);
}

.timeline-item .content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-left: 60px;
    width: calc(100% - 60px);
}

.timeline-item:nth-child(even) .content {
    margin-left: 0;
    margin-right: 60px;
}

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

.timeline-item .content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -12px;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
    z-index: 1;
}

.timeline-item:nth-child(even) .content:before {
    left: auto;
    right: -12px;
}

.timeline-item .content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Team Section Enhancement */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.team-member h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin: 25px 0 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 25px 25px;
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.7;
}

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

.contact-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.contact-card .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

.contact-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-card .btn-link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

/* Form Enhancement */
.form-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.form-group button {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.form-group button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* FAQ Section Enhancement */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.question h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.question:hover h3 {
    color: var(--primary-color);
}

.toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
    background-color: var(--primary-color);
    color: white;
}

.answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.active .answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

.answer p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 3.5rem;
    }
    
    .banner-content p {
        font-size: 1.3rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item .year {
        left: -20px;
        right: auto;
        top: -40px;
    }
    
    .timeline-item:nth-child(even) .year {
        left: -20px;
    }
    
    .timeline-container:before {
        left: 20px;
    }
    
    .timeline-item .content,
    .timeline-item:nth-child(even) .content {
        margin-left: 60px;
        margin-right: 0;
        width: calc(100% - 60px);
    }
    
    .timeline-item .content:before,
    .timeline-item:nth-child(even) .content:before {
        left: -12px;
        right: auto;
    }
    
    .about-preview .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Header responsive styles */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 3.5rem;
    }
    
    .slide p {
        font-size: 1.4rem;
    }
    
    .slide .buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide .buttons .btn {
        width: 100%;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links a:first-child {
        margin-left: 0;
    }
    
    /* Header responsive styles for smaller screens */
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .contact-info a {
        margin-right: 0;
    }
    
    .social-links {
        margin-top: 5px;
    }
    
    .main-nav .container {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .slide h1 {
        font-size: 2.8rem;
    }
    
    .slide p {
        font-size: 1.2rem;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}