/* Compass Rose Air Styles */

/* Variables */
:root {
    --primary-color: #0A3161;    /* Navy blue */
    --secondary-color: #E6B325;  /* Gold/Amber */
    --accent-color: #7DBAE8;     /* Sky blue */
    --light-color: #F5F5F5;      /* Light gray */
    --dark-color: #333333;       /* Dark gray for text */
    --white-color: #FFFFFF;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color var(--transition-speed);
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color var(--transition-speed);
}

.btn-secondary:hover {
    background-color: #082a54;
    color: var(--white-color);
}

/* Header */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 500;
    padding: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-speed);
}

nav ul li a:hover,
nav ul li a.active {
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 49, 97, 0.8), rgba(10, 49, 97, 0.8)), url("https://source.unsplash.com/random/1920x1080/?airplane,sky,luxury");
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Section */
.cta {
    background-color: var(--accent-color);
    color: var(--white-color);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

footer h3 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-column p {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--accent-color);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.chat-button:hover {
    transform: translateY(-3px);
    background-color: #d1a323;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Will be replaced with mobile menu */
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
/* Additional styles for inner pages */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 49, 97, 0.8), rgba(10, 49, 97, 0.8)), url("https://source.unsplash.com/random/1920x1080/?airplane,sky,luxury");
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-list {
    padding: 60px 0;
}

.service-item {
    display: flex;
    margin-bottom: 50px;
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 0 0 40%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-content {
    flex: 0 0 60%;
    padding: 30px;
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.booking-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.booking-form {
    max-width: 800px;
    margin: 30px auto 0;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 30px;
}

/* About Page */
.about-story {
    padding: 60px 0;
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 0 0 60%;
}

.about-image {
    flex: 0 0 40%;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-values {
    background-color: var(--light-color);
    padding: 60px 0;
}

.mission-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
}

.mission-box h3 {
    color: var(--white-color);
}

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

.value-item {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.team-member {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-photo {
    height: 200px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

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

.member-bio {
    padding: 0 20px 20px;
}

.certifications {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.cert-logo {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    width: 180px;
    text-align: center;
}

.cert-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

/* Fleet Page */
.fleet-intro {
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fleet-categories {
    padding: 20px 0 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.tab-button.active, .tab-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aircraft-item {
    display: flex;
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aircraft-image {
    flex: 0 0 35%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.aircraft-info {
    flex: 0 0 65%;
    padding: 25px;
}

.aircraft-specs {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.spec {
    background-color: var(--light-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.spec-label {
    font-weight: 500;
    margin-right: 5px;
}

.aircraft-description {
    margin-bottom: 20px;
}

.maintenance-info {
    background-color: var(--light-color);
    padding: 60px 0;
}

.maintenance-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.maintenance-text {
    flex: 0 0 60%;
}

.maintenance-image {
    flex: 0 0 40%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white-color);
}

.maintenance-image img {
    width: 100%;
    height: auto;
    display: block;
}

.maintenance-highlights {
    margin-top: 20px;
    padding-left: 20px;
}

.maintenance-highlights li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.maintenance-highlights li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/* Contact Page */
.contact-options {
    padding: 60px 0;
}

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

.contact-card {
    background-color: var(--white-color);
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon img {
    width: 35px;
    height: 35px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card a {
    display: block;
    margin: 10px 0;
    font-weight: 500;
    color: var(--primary-color);
}

.hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.contact-form-container {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
}

.form-info {
    flex: 0 0 40%;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.form-info h2 {
    color: var(--white-color);
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form {
    flex: 0 0 60%;
    padding: 40px;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    height: 400px;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
}

/* Responsive adjustments for inner pages */
@media (max-width: 768px) {
    .service-item,
    .aircraft-item,
    .about-story .container,
    .maintenance-content,
    .contact-form-container {
        flex-direction: column;
    }
    
    .service-image,
    .aircraft-image,
    .about-image,
    .maintenance-image,
    .form-info {
        flex: 0 0 100%;
    }
    
    .service-content,
    .aircraft-info,
    .about-content,
    .maintenance-text,
    .contact-form {
        flex: 0 0 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
}
/* Destinations Page Styles */
.destinations-intro {
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.destinations-map {
    padding: 20px 0 60px;
}

.popular-destinations {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.destination-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.destination-image {
    height: 200px;
    background-color: var(--light-color);
    overflow: hidden;
}

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

.destination-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h3 {
    margin-bottom: 15px;
}

.destination-content p {
    margin-bottom: 20px;
}

.airports {
    margin-bottom: 20px;
    flex-grow: 1;
}

.airports h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.airports ul {
    padding-left: 20px;
}

.airports li {
    margin-bottom: 5px;
    list-style-type: disc;
}

.popular-routes {
    padding: 60px 0;
}

.routes-list {
    margin-top: 30px;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.route-cities {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.route-arrow {
    margin: 0 15px;
    color: var(--secondary-color);
}

.route-info {
    display: flex;
    align-items: center;
}

.route-details {
    margin-right: 20px;
}

.detail {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.custom-destinations {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.custom-destinations p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Blog Page Styles */
.blog-content {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    margin-bottom: 40px;
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 300px;
    background-color: var(--light-color);
    overflow: hidden;
}

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

.post-meta {
    display: flex;
    gap: 20px;
    padding: 15px 25px 0;
    font-size: 0.9rem;
    color: #666;
}

.blog-post h2 {
    padding: 10px 25px;
    font-size: 1.5rem;
}

.post-excerpt {
    padding: 0 25px 20px;
}

.read-more {
    display: inline-block;
    margin: 0 25px 25px;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-speed);
}

.read-more:hover {
    border-color: var(--secondary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 15px;
    border-radius: 4px;
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination a:hover:not(.active) {
    background-color: var(--light-color);
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.categories-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
}

.recent-posts-list li {
    margin-bottom: 15px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list a {
    display: flex;
    gap: 15px;
}

.post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--light-color);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

.post-info span {
    font-size: 0.8rem;
    color: #666;
}

.subscribe-form {
    margin-top: 15px;
}

.subscribe-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Responsive adjustments for blog and destinations */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .route-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .route-info {
        margin-top: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .route-details {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .pagination a {
        padding: 5px 10px;
    }
}
/* Enhanced styles for Compass Rose Air - Luxury Edition */

/* Import additional fonts for luxurious look */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Variables - Refined Color Palette */
:root {
    --primary-color: #0A3161;    /* Deep navy blue */
    --secondary-color: #C8A951;  /* Rich gold - updated for more elegance */
    --accent-color: #6B9AC4;     /* Refined sky blue */
    --light-color: #F8F9FA;      /* Lighter gray for better contrast */
    --dark-color: #212529;       /* Darker text for better readability */
    --white-color: #FFFFFF;
    --light-gold: #E9DCAE;       /* Light gold for subtle accents */
    --dark-navy: #051C38;        /* Darker navy for depth */
    --transition-speed: 0.3s;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Base Styles Refinement */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--dark-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-weight: 300;
    font-size: 1.05rem;
}

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

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

/* Header Enhancement */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: var(--primary-color);
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    padding: 5px 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(rgba(5, 28, 56, 0.85), rgba(5, 28, 56, 0.85)), url('https://source.unsplash.com/random/1920x1080/?private,jet,luxury');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 180px 0;
    position: relative;
}

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

.hero h2 {
    font-size: 3.2rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Enhanced Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    box-shadow: 0 6px 15px rgba(200, 169, 81, 0.25);
}

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

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
}

/* Sections Enhancement */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Page Header Enhancement */
.page-header {
    background: linear-gradient(rgba(5, 28, 56, 0.85), rgba(5, 28, 56, 0.85)), url('https://source.unsplash.com/random/1920x1080/?airplane,sky');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
}

/* Enhanced Service Items */
.service-item {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--white-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-content {
    flex: 0 0 55%;
    padding: 40px;
}

.service-content h2 {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 1.8rem;
}

.service-content h2::after {
    left: 0;
    transform: none;
    width: 50px;
}

.service-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-weight: 300;
}

.service-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/* Footer Enhancement */
footer {
    background-color: var(--dark-navy);
    color: var(--white-color);
    padding: 80px 0 20px;
}

footer h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-column a {
    color: var(--light-gold);
    transition: color var(--transition-speed);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transition: all var(--transition-speed);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.chat-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 169, 81, 0.3);
}

/* Enhanced Form Styles */
input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(107, 154, 196, 0.2);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .service-item,
    .aircraft-item {
        flex-direction: column;
    }
    
    .service-image,
    .aircraft-image {
        flex: 0 0 100%;
        height: 300px;
    }
    
    .service-content,
    .aircraft-info {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    nav ul {
        display: none; /* Will be replaced with mobile menu */
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Add animations for more elegance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2, 
.hero p, 
.hero .btn-primary {
    animation: fadeIn 1s ease-out forwards;
}

.hero p {
    animation-delay: 0.2s;
}

.hero .btn-primary {
    animation-delay: 0.4s;
}

/* Custom styles for testimonials */
.testimonial-slider {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: #777;
}
/* Animation styles */
.service-item, .destination-card, .team-member, .value-item, .cta, .testimonial-slider {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Add elegant hover effects */
.service-item, .destination-card, .team-member {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover, .destination-card:hover, .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
/* Blog Post Page Styles */
.blog-post-content {
    padding: 60px 0;
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #0A3161;
    text-align: left;
}

.post-content h2::after {
    left: 0;
    transform: none;
    width: 50px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.post-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C8A951;
}

.post-cta {
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #C8A951;
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 15px;
    color: #0A3161;
}

.sidebar-widget {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #0A3161;
}

.recent-posts, .categories {
    list-style: none;
    padding: 0;
}

.recent-posts li, .categories li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-posts li:last-child, .categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a, .categories a {
    color: #0A3161;
    transition: color 0.3s;
}

.recent-posts a:hover, .categories a:hover {
    color: #C8A951;
}

@media (max-width: 992px) {
    .blog-post-content .container {
        grid-template-columns: 1fr;
    }
}
/* 404 Error Page Styles */
.error-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #C8A951;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 5px 15px rgba(200, 169, 81, 0.2);
}

.error-message {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0A3161;
}

.error-container p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 10px;
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #C8A951;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0A3161;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader {
    width: 100px;
    height: 100px;
}

.compass-loader {
    animation: spin 2s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Email Notice Styling */
.email-notice {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.notice-box {
    background-color: #fff;
    border-left: 4px solid #C8A951;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.notice-box h3 {
    margin-bottom: 10px;
    color: #0A3161;
}

.notice-box p {
    margin-bottom: 0;
}
/* Fix chat and back-to-top button overlap */
.back-to-top {
    bottom: 100px; /* Move the back-to-top button higher */
}

/* Service cards styling for homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 30px;
}

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

.service-icon {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card h3 {
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 1.5rem;
    color: #0A3161;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    display: inline-block;
    color: #C8A951;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C8A951;
    transition: width 0.3s;
}

.service-link:hover::after {
    width: 100%;
}
/* Mobile Menu Styles */





@media (max-width: 992px) {
    
    header nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 999;
    }
    
    header nav.active {
        right: 0;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    header nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    header nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
}
/* Fix destination buttons */
.destination-content .btn-secondary {
    background-color: #0A3161;
    color: #fff;
    border: 1px solid #0A3161;
}

.destination-content .btn-secondary:hover {
    background-color: transparent;
    color: #0A3161;
}

.action-buttons .btn-secondary {
    background-color: #0A3161;
    color: #fff;
    border: 1px solid #0A3161;
}

.action-buttons .btn-secondary:hover {
    background-color: transparent;
    color: #0A3161;
}
/* Ensure background images work */
.hero {
    background-size: cover;
    background-position: center;
}

.page-header {
    background-size: cover;
    background-position: center;
}
/* Mobile Menu Styles */





@media (max-width: 992px) {
    
    header nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 999;
    }
    
    header nav.active {
        right: 0;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    header nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    header nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
}
/* Fix background images */
.hero {
    background-size: cover !important;
    background-position: center !important;
}

.page-header {
    background-size: cover !important;
    background-position: center !important;
}
/* Clear Mobile Menu Styles */






@media (max-width: 992px) {
    
    header nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 999;
    }
    
    header nav.active {
        right: 0;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    header nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    header nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
}
/* Simple and reliable mobile menu */

@media (max-width: 992px) {
    
    header nav {
        display: none;
    }
    
    header nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    header nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    header nav ul li {
        margin: 10px 0;
        width: 100%;
    }
}
/* Ensure background images work properly */
.hero {
    background-size: cover !important;
    background-position: center !important;
}

.page-header {
    background-size: cover !important;
    background-position: center !important;
}

/* Fix destination buttons */
.destination-content .btn-secondary,
.action-buttons .btn-secondary,
.custom-destinations .btn-secondary {
    background-color: #0A3161 !important;
    color: #fff !important;
    border: 1px solid #0A3161 !important;
}

.destination-content .btn-secondary:hover,
.action-buttons .btn-secondary:hover,
.custom-destinations .btn-secondary:hover {
    background-color: transparent !important;
    color: #0A3161 !important;
}

/* Fix chat widget positioning */
.chat-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
}
/* Fix background images */
.hero {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.page-header {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.hero .container, .page-header .container {
    position: relative;
    z-index: 1;
}
/* Hero background fix */
.hero {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
    z-index: 1;
}

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

/* Page header background fix */
.page-header {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}
/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 30px;
}

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

.service-icon {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card h3 {
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 1.5rem;
    color: #0A3161;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    display: inline-block;
    color: #C8A951;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C8A951;
    transition: width 0.3s;
}

.service-link:hover::after {
    width: 100%;
}
/* Hero background fix */
.hero {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
    z-index: 1;
}

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

/* Page header background fix */
.page-header {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}
/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 30px;
}

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

.service-icon {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card h3 {
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 1.5rem;
    color: #0A3161;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    display: inline-block;
    color: #C8A951;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C8A951;
    transition: width 0.3s;
}

.service-link:hover::after {
    width: 100%;
}
/* Mobile Menu Styles */
@media (max-width: 992px) {
    /* The button is visible by default */
    
    /* Hide the nav by default on mobile */
    header nav {
        display: none;
    }
    
    /* Show the nav when it has the active class */
    header nav.active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    /* Make the menu items stack vertically */
    header nav.active ul {
        flex-direction: column !important;
    }
    
    header nav.active ul li {
        margin: 10px 0 !important;
        width: 100% !important;
    }
}
/* Clean and simple background image styles */
.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.page-header {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 49, 97, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 1;
}
/* Simple mobile menu styles */

@media (max-width: 992px) {
    
    header nav {
        display: none;
    }
    
    header nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    header nav.active ul {
        flex-direction: column;
    }
    
    header nav.active ul li {
        margin: 10px 0;
        width: 100%;
    }
}
/* Mobile dropdown behavior only */
@media (max-width: 992px) {
    /* Hide nav by default on mobile */
    header nav {
        display: none;
    }
    
    /* Show nav when it has the active class */
    header nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    /* Adjust menu items for vertical layout */
    header nav.active ul {
        flex-direction: column;
    }
    
    header nav.active ul li {
        margin: 10px 0;
        width: 100%;
    }
}
/* Mobile menu styles */
@media (max-width: 992px) {
    header nav {
        display: none;
    }
    
    header nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    header nav.active ul {
        flex-direction: column;
    }
    
    header nav.active ul li {
        margin: 10px 0;
        width: 100%;
    }
}
/* Contact Icon Styling */
.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #eaeaea;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}
/* Contact Icon Styling */
.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #eaeaea;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon img {
    width: 35px;
    height: 35px;
}

.contact-card {
    background-color: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card h3 {
    color: #0A3161;
    margin-bottom: 10px;
}

.contact-card a {
    display: block;
    margin: 10px 0;
    font-weight: 500;
    color: #0A3161;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #C8A951;
}

.hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}
/* Fix for contact icons */
.contact-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.contact-icon {
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Chat button and link styling */
.chat-btn {
    background-color: #C8A951 !important;
    color: white !important;
}

.chat-btn:hover {
    background-color: #b69746 !important;
}

.chat-link {
    color: #C8A951;
    font-weight: 500;
    text-decoration: underline;
}

.chat-link:hover {
    color: #b69746;
}
/* Ensure consistent logo styling */
.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: var(--primary-color);
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}
/* Improved Mobile Menu Styles */








@media (max-width: 992px) {
    
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    header nav.active {
        right: 0;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    header nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    header nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    /* Add overlay when menu is active */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    body.menu-active::after {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 992px) {
  /* Force nav text to be visible */
  header nav ul li a {
    color: #0A3161 !important;
    font-size: 18px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    padding: 12px 0 !important;
  }
  
  /* Make sure nav is properly positioned and transitions correctly */
  header nav {
    background-color: white !important;
    padding-top: 70px !important;
  }
  
  header nav ul {
    display: flex !important;
    flex-direction: column !important;
  }
  
  header nav ul li {
    margin: 0 0 10px 0 !important;
    width: 100% !important;
  }
}
/* Clean Navigation Menu Styles */
.nav-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #0A3161;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  border-radius: 2px;
}

.nav-toggle span:nth-child(1) {
  top: 0px;
}

.nav-toggle span:nth-child(2) {
  top: 9px;
}

.nav-toggle span:nth-child(3) {
  top: 18px;
}

.nav-toggle.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-toggle.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  
  header .container {
    position: relative;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  header nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background: white;
    padding: 70px 20px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  header nav.open {
    right: 0;
  }
  
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  header nav ul li {
    margin: 10px 0;
    width: 100%;
  }
  
  header nav ul li a {
    display: block;
    padding: 8px 0;
    color: #0A3161;
    font-size: 16px;
    opacity: 1;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* Enhanced Mobile Navigation Menu - Ensure Items Are Visible */

/* Extra specificity to override any conflicting styles */
@media (max-width: 992px) {
  /* Force the navigation to be visible when open */
  header nav.open {
    right: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: white !important;
    z-index: 1000 !important;
    width: 250px !important;
    height: 100vh !important;
    overflow-y: auto !important;
    padding: 80px 25px 30px !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Force the navigation list to be visible */
  header nav.open ul {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }
  
  /* Force each list item to be visible */
  header nav.open ul li {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-bottom: 1px solid #eaeaea !important;
  }
  
  /* Force each link to be visible and properly formatted */
  header nav.open ul li a {
    display: block !important;
    padding: 12px 0 !important;
    color: #0A3161 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s !important;
  }
  
  /* Style hover state for links */
  header nav.open ul li a:hover {
    color: #C8A951 !important;
  }
  
  /* Make active link stand out */
  header nav.open ul li a.active {
    color: #C8A951 !important;
    font-weight: 600 !important;
  }
  
  /* Ensure toggle button is properly displayed */
  .nav-toggle {
    display: block !important;
    cursor: pointer !important;
  }
  
  /* Make sure the spans are visible in the toggle button */
  .nav-toggle span {
    background: #0A3161 !important;
    opacity: 1 !important;
  }

  /* Ensure the overlay is properly positioned above content but below navigation */
  .overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important; 
    visibility: hidden !important;
    z-index: 999 !important;
    transition: opacity 0.3s ease !important;
  }
  
  .overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
