/* Global Styles */
:root {
    --primary-color: #024b99;
    --secondary-color: #ffc107;
    --dark-color: #12395f;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

.highlight {
    color: var(--secondary-color);
}

/* Slide 2 Theme */
.slide-2-theme .hero-text h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.slide-2-theme .hero-text .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.slide-2-theme .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.slide-2-theme .feature-list li {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.slide-2-theme .feature-list i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.2rem;
}

.slide-2-theme .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slide-2-theme .secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.slide-2-theme .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.slide-2-theme .restore-img {
    max-height: 50vh;
    width: auto;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 992px) {
    .slide-2-theme .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .slide-2-theme .hero-text .lead {
        font-size: 1.1rem;
    }
    
    .slide-2-theme .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-2-theme .btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero-slide {
    min-height: 80vh;
    display: flex !important;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 50%;
    position: relative;
    z-index: 1;
    padding-right: 0;
    margin-right: 0;
}

.hero-image img {
    max-height: 60vh;
    width: auto;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 8px 0 0 8px;
    display: block;
    margin: 0 0 0 auto;
    padding-right: 0;
}


@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-image {
        margin: 0 auto;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    height: 80vh;
    min-height: 600px;
    display: flex !important;
    align-items: center;
    position: relative;
    color: white;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Slick Carousel Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

/* Navigation arrows removed as per request */

/* Why Choose Hero Section */
.why-choose-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.why-choose-content {
    flex: 1;
    padding-right: 40px;
    color: var(--dark-color);
}

.why-choose-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.feature-list {
    margin-bottom: 30px;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.why-choose-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-image img:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-choose-hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-top: 30px;
    }
    
    .feature-list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-choose-image {
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .why-choose-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .slick-dots {
        bottom: 20px;
    }
}
.banner-section {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 700;
}

.banner-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.cta-buttons {
    margin: 30px 0 40px;
}

.cta-buttons .btn {
    display: inline-block;
}

.why-choose {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}

.why-choose h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.why-choose ul {
    list-style: none;
}

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

.why-choose i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 3px;
}

/* Stats Section */
.stats {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

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

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.1s;
}

/* Animate stats when in view */
.stats.animate .stat-number,
.stats.animate .stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: rgb(255, 255, 255);
    padding: 8px 0;
    font-size: 13px;
}

/* Hide top bar on mobile devices */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar .flex {
    gap: 20px !important;
}

.contact-info span {
    margin-left: 30px;
}

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

/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 144px;
    height: auto;
    min-height: 48px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin: 0 -5px 0 -5px;
    padding-right: 0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .logo {
        width: 160px;
        min-height: 50px;
    }
}

@media (min-width: 992px) {
    .logo {
        width: 190px;
        min-height: 65px;
    }
}

@media (min-width: 1200px) {
    .logo {
        width: 280px;
        min-height: 96px;
    }
}

.main-nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 8px;
    position: relative;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 10px;
    position: relative;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
}

/* Tablet-specific navigation font size */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav a {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .dropdown-content a {
        font-size: 12.5px;
        padding: 8px 20px;
    }
    
    .dropdown > a .fa-chevron-down {
        font-size: 9px;
        margin-left: 4px;
    }
}

/* Specific 820x1180 tablet view navigation */
@media (min-width: 820px) and (max-width: 1180px) {
    .main-nav a {
        font-size: 12px;
        padding: 5px 7px;
    }
    
    .dropdown-content a {
        font-size: 11.5px;
        padding: 7px 18px;
    }
    
    .dropdown > a .fa-chevron-down {
        font-size: 8px;
        margin-left: 3px;
    }
    
    /* Move contact dropdown to left for tablet view */
    .main-nav .dropdown:last-child .dropdown-content {
        left: auto;
        right: 0;
        min-width: 200px;
    }
    
    /* Optimize main navigation layout for tablet view */
    .main-header .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .main-nav ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .main-nav li {
        margin: 0 4px;
    }
    
    .main-nav a {
        padding: 6px 8px;
        white-space: nowrap;
    }
    
    /* Ensure dropdowns don't overflow */
    .dropdown-content {
        min-width: 180px;
        max-width: 220px;
    }
    
    /* Adjust logo size for better fit */
    .logo {
        max-width: 120px;
        margin-right: 15px;
    }
    
    /* Ensure mobile menu button is hidden on tablet */
    .mobile-menu-btn {
        display: none !important;
    }
    
    /* Show main navigation on tablet */
    .main-nav {
        display: flex !important;
    }
    
    /* Footer optimizations for 820x1180 tablet view */
    .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    
    .footer-about, .footer-links, .footer-contact {
        flex: 1 1 200px;
        min-width: 200px;
        margin-bottom: 20px;
    }
    
    .footer-about {
        flex: 2 1 250px;
    }
    
    .footer-logo {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .footer-about p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .footer-links ul {
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
        color: #a8b2bd;
        padding: 4px 0;
        display: block;
    }
    
    .footer-links a:hover {
        color: #fff;
    }
    
    .footer-contact h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .footer-contact-list li {
        margin-bottom: 10px;
        font-size: 14px;
        color: #a8b2bd;
    }
    
    .footer-contact-list i {
        font-size: 16px;
        margin-right: 8px;
        width: 20px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 14px;
        color: #a8b2bd;
    }
    
    /* Apply home page footer alignment settings to all pages */
    .footer-top {
        background: #002244;
    }
    
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: space-between;
    }
    
    .footer-about {
        flex: 1 1 220px;
        min-width: 220px;
        color: #fff;
        text-align: left;
    }
    
    .footer-links {
        flex: 1 1 160px;
        min-width: 160px;
        color: #fff;
        text-align: left;
        margin-right: 24px;
    }
    
    .footer-links:last-of-type {
        margin-right: 0;
    }
    
    .footer-contact {
        flex: 1 1 220px;
        min-width: 220px;
        color: #fff;
        text-align: left;
    }
    
    .footer-logo {
        color: #fff;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .footer-about p {
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .social-links {
        display: flex;
        justify-content: flex-start;
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-links a {
        color: #a8b2bd;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        color: #fff;
    }
    
    .footer-links h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-links ul {
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    .footer-links li {
        margin-bottom: 6px;
        color: #a8b2bd;
    }
    
    .footer-links a {
        color: #a8b2bd;
        text-decoration: none;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .footer-links a:hover {
        color: #fff;
    }
    
    .footer-links a i {
        font-size: 12px;
        margin-right: 8px;
        width: 16px;
    }
    
    .footer-contact h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    .footer-contact-list li {
        margin-bottom: 8px;
        color: #a8b2bd;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contact-list i {
        font-size: 18px;
        margin-right: 8px;
        width: 20px;
        flex-shrink: 0;
    }
    
    .footer-contact-list a {
        color: inherit;
        text-decoration: none;
    }
    
    .footer-contact-list a:hover {
        color: #fff;
    }
    
    .footer-bottom {
        background: #001122;
        text-align: center;
        padding: 12px 0;
        color: #fff;
    }
    
    .footer-bottom p {
        color: #fff;
        font-size: 14px;
        margin: 0;
    }
}

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

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Dropdown arrow */
.dropdown > a .fa-chevron-down {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 240px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 12px 0;
    z-index: 10;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    padding: 10px 25px;
    display: block;
    color: var(--dark-color);
    font-size: 14.5px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-content a::before {
    content: '→';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--secondary-color);
}

.dropdown-content a:hover::before {
    opacity: 1;
    left: 20px;
}

.book-btn {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.book-btn:hover {
    background-color: #e0a800;
    transform: none;
    box-shadow: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
    margin-bottom: 6px; /* space between lines */
}
.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Footer Styles */
.main-footer {
    background-color: #1a2634;
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-top {
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    background-color: #1e2a3a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-about {
    padding-right: 5px;
}

.footer-logo {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 18px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-about p {
    color: #a8b2bd;
    margin: 0 0 25px;
    font-size: 14.5px;
    line-height: 1.8;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #1a2634;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), #ffdb70);
    border-radius: 2px;
}

.footer-links {
    padding: 0 5px;
}

.footer-links ul {
    padding-left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

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

.contact-info span {
    display: inline-block;
    margin-left: 0;
}

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

.contact-info li.business-hours {
    align-items: flex-start;
}

.contact-info li.business-hours i {
    margin-top: 3px;
    color: var(--primary);
}

.contact-info li.business-hours > div {
    margin-left: 15px;
    line-height: 1.5;
}

.contact-info li.business-hours > div > div {
    margin-bottom: 3px;
}

.contact-info li.business-hours > div > div:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    text-align: center;
    position: relative;
    top: 2px;
}

.contact-info a {
    color: #a8b2bd;
    transition: all 0.25s ease;
    line-height: 1.6;
    font-size: 14.5px;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 18px 0;
    font-size: 13.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #8a94a1;
    font-size: 13.5px;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #a8b2bd;
    transition: all 0.25s ease;
    font-size: 13.5px;
    font-weight: 400;
}

.footer-legal a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Services */
.footer-services {
    grid-column: span 1;
    margin-left: -20px;
}

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

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

.footer-services a {
    color: #a8b2bd;
    display: block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0;
    font-size: 14.5px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-services a i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--secondary-color);
    transition: all 0.25s ease;
}

.footer-services a:hover {
    color: #fff;
    padding-left: 7px;
    text-decoration: none;
}

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

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

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4,
    .footer-contact h4 {
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links a i {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .why-choose {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .book-btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .stat-item {
        min-width: 150px;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
