:root {
    --primary-color: #d9232d; /* Red from original site */
    --primary-dark: #b31b24;
    --secondary-color: #00a0c6; /* Blue accent */
    --text-color: #333333;
    --text-light: #747474;
    --bg-color: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e1e1e1;
    --font-family: Arial, Calibri, sans-serif;
    --header-height: 80px;
    --topbar-height: 40px;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 13px;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar .top-links a {
    color: #fff;
    margin-left: 15px;
}

.top-bar .contact-info a {
    color: #fff;
}

.top-bar a:hover {
    text-decoration: underline;
}

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

/* Header */
header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: 
        linear-gradient(to right, transparent calc(50% - 1px), var(--primary-color) calc(50% - 1px), var(--primary-color) calc(50% + 1px), transparent calc(50% - 1px)) top center / 100% 12px no-repeat,
        linear-gradient(to right, transparent calc(50% - 1px), var(--primary-color) calc(50% - 1px), var(--primary-color) calc(50% + 1px), transparent calc(50% - 1px)) bottom center / 100% 12px no-repeat,
        linear-gradient(to bottom, transparent calc(50% - 1px), var(--primary-color) calc(50% - 1px), var(--primary-color) calc(50% + 1px), transparent calc(50% - 1px)) left center / 12px 100% no-repeat,
        linear-gradient(to bottom, transparent calc(50% - 1px), var(--primary-color) calc(50% - 1px), var(--primary-color) calc(50% + 1px), transparent calc(50% - 1px)) right center / 12px 100% no-repeat;
    z-index: 2;
}

.logo-icon i {
    z-index: 3;
    font-size: 16px;
    color: #000;
    transform: rotate(-45deg) scaleX(0.6) scaleY(1.4) !important;
}

.footer-logo .logo-icon i {
    color: #fff !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
}

.logo-main {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.logo-main span {
    color: var(--primary-color);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

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

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

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

/* Dropdown Navigation */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    border-top: 3px solid var(--primary-color);
    z-index: 100;
    padding: 0;
    margin: 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    text-transform: none;
}

.nav-menu .dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

/* Login Button in Nav */
.nav-menu a.login-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a.login-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.nav-menu a.login-btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
}
.btn-secondary:hover {
    background: #0087a6;
}

/* Services Overview */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Call to Action */
.cta {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Page Headers (About, Services, Contact) */
.page-header {
    background: var(--bg-light);
    padding: 35px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 40px;
    color: var(--text-color);
}

/* Inner Page Content */
.content-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.main-content {
    flex: 2;
    min-width: 300px;
}

.sidebar {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        height: auto;
        padding: 10px 0;
        text-align: center;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin-left: 0 !important;
        margin-bottom: 5px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background: var(--bg-light);
        min-width: 100%;
    }
    
    .nav-menu .dropdown-menu a {
        padding-left: 40px;
    }

    header .container {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero .btn {
        display: block;
        margin: 10px auto !important;
        width: 80%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-content, .sidebar {
        min-width: 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
}

/* Swiper Hero Slider */
.hero-swiper {
    width: 100%;
    height: 600px;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-swiper h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: "Antic Slab", Arial, sans-serif;
}

.hero-swiper p {
    font-size: 20px;
    margin-bottom: 0;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 500px;
    }
    .hero-swiper h1 {
        font-size: 32px;
    }
    .hero-swiper p {
        font-size: 16px;
    }
}


/* Form Styles from book-online */

        .checkbox-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            row-gap: 5px;
            column-gap: 50px;
            margin-bottom: 25px;
            margin-left: 30px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--text-light);
        }

        .checkbox-item input[type="checkbox"] {
            margin-right: 10px;
            width: 16px;
            height: 16px;
        }

        .form-section-title {
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-color);
        }

        .inline-input-group {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .inline-input-group input[type="text"],
        .inline-input-group input[type="email"],
        .inline-input-group input[type="tel"] {
            flex: 1;
        }

        .inline-input-group label {
            min-width: 150px;
            margin-bottom: 0;
            color: var(--text-light);
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
            .inline-input-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            .inline-input-group label {
                margin-bottom: 5px;
            }
        }
    


/* Mega Menu Styles */
.nav-menu li.mega-dropdown {
    position: static; /* Force static so the dropdown can span the header */
}

header {
    position: relative; /* Ensure header is the relative parent */
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* slightly lighter grey for a cleaner look */
    z-index: 100;
    border-top: 3px solid var(--primary-color);
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Invisible bridge to catch the mouse during hover gap */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.nav-menu .mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-item {
    display: flex;
    background-color: transparent;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
    align-items: flex-start;
    padding: 10px;
}

.mega-item:hover {
    background-color: rgba(255,255,255,0.5);
    color: var(--primary-color);
}

.mega-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 2px;
}

.mega-text {
    flex: 1;
}

.mega-text h4 {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 700;
}

.mega-item:hover .mega-text h4 {
    color: var(--primary-color);
}

.mega-text p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}
