* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: white;
    box-shadow: 0 2px 10px 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: 20px;
}

.logo h1 {
    color: #0f3460;
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    font-size: 12px;
    color: #666;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #e94560;
}

.contact-info {
    font-weight: 600;
    color: #e94560;
}

.hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #e94560;
    color: white;
}

.btn-primary:hover {
    background: #c62a45;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f3460;
}

.quote-form {
    background: white;
    color: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quote-form h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.quote-form p {
    color: #666;
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.quote-form button {
    width: 100%;
    padding: 14px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-form button:hover {
    background: #c62a45;
}

.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 48px;
    color: #e94560;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.destinations {
    padding: 80px 0;
}

.destinations h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dest-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dest-card h3 {
    padding: 15px 20px 5px;
    font-size: 20px;
}

.dest-card p {
    padding: 0 20px;
    color: #666;
}

.enquire-btn {
    margin: 15px 20px 20px;
    padding: 10px 20px;
    background: #0f3460;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 40px);
    transition: background 0.3s;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.enquire-btn:hover {
    background: #e94560;
}

.page-hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.flight-search {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-box h2 {
    margin-bottom: 25px;
    color: #0f3460;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.search-btn {
    width: 100%;
    padding: 14px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.flight-offers, .packages {
    padding: 60px 0;
}

.offers-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card i {
    font-size: 48px;
    color: #e94560;
    margin-bottom: 15px;
}

.offer-card h3 {
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 24px;
    color: #e94560;
    font-weight: bold;
    margin: 10px 0;
}

.airline {
    display: block;
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.destinations-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 5px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #e94560;
    color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dest-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dest-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dest-info {
    padding: 20px;
}

.dest-info h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: #e94560;
    font-weight: bold;
    margin: 10px 0;
}

.view-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.package-card.featured {
    border: 2px solid #e94560;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e94560;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-details {
    padding: 20px;
}

.package-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.package-price {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    font-size: 28px;
    color: #e94560;
    font-weight: bold;
    margin-right: 5px;
}

.book-now {
    display: inline-block;
    padding: 10px 20px;
    background: #e94560;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.about-text h2 {
    margin: 20px 0 15px;
    color: #0f3460;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin: 10px 0;
}

.about-text li i {
    color: #e94560;
    margin-right: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.stat-card h3 {
    font-size: 36px;
    color: #e94560;
    margin-bottom: 10px;
}

.team {
    background: #f8f9fa;
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.team-member i {
    font-size: 80px;
    color: #0f3460;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member span {
    color: #666;
    font-size: 14px;
}

.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #e94560;
}

.info-item h4 {
    margin-bottom: 5px;
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form-box button {
    width: 100%;
    padding: 14px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Privacy Policy Page Styles */
.privacy-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.privacy-header p {
    color: #666;
    font-size: 16px;
}

.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h2 i {
    color: #667eea;
    font-size: 22px;
}

.privacy-section h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 10px;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.highlight-box {
    background: #f0f4ff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.last-updated {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.back-to-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

/* Footer Links */
footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e94560;
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #e94560;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .container, 
    .contact-grid, 
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .privacy-card {
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 32px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
}

/* ===== FIXED FOOTER STYLES ===== */
footer {
    background: #0a1c2a;
    color: #e2edf7;
    padding-top: 56px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col p {
    color: #bcd0e2;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-icons a {
    background: #1f3e51;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bcd0e2;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #e67e22;
    padding-left: 4px;
}

.footer-col i {
    width: 28px;
    color: #e67e22;
    margin-right: 6px;
}

.footer-col form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.footer-col input {
    padding: 12px 16px;
    border-radius: 60px;
    border: none;
    background: #1f3e51;
    color: white;
}

.footer-col input::placeholder {
    color: #aac2d4;
}

.footer-col button {
    background: #e67e22;
    border: none;
    padding: 10px 16px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

.footer-col button:hover {
    background: #cf711f;
}

.footer-bottom {
    border-top: 1px solid #1f3e51;
    padding: 24px 0 32px;
    text-align: center;
    font-size: 0.85rem;
    color: #9bb7cc;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2a3a;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER STYLES
   ======================================== */
header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b3b5f;
    letter-spacing: -0.3px;
}

.logo span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #e67e22;
    display: block;
    margin-top: 2px;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e50;
    transition: 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #e67e22;
}

.contact-info a {
    text-decoration: none;
    color: #c25d00;
}

.contact-info {
    background: #fef3e8;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #c25d00;
    transition: 0.3s;
}

.contact-info:hover {
    background: #e67e22;
    color: white;
}

.contact-info:hover a {
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0b3b5f;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #0b3b5f;
    z-index: 2000;
    padding: 80px 30px;
    transition: 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    padding: 70px 0;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1.2;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0b3b5f;
    margin-bottom: 20px;
}

.hero-content h2 .highlight {
    color: #e67e22;
}

.hero-content p {
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: #e67e22;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: white;
    color: #e67e22;
    border: 2px solid #e67e22;
}

.btn-secondary:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #5e7b9c;
}

.trust-indicators i {
    color: #e67e22;
}

/* Quote Form */
.quote-form {
    flex: 0.9;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quote-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b3b5f;
    margin-bottom: 5px;
}

.quote-form p {
    color: #e67e22;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.btn-submit {
    width: 100%;
    background: #e67e22;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #cf711f;
    transform: translateY(-2px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b3b5f;
    margin-bottom: 12px;
}

.section-header p {
    color: #6c86a3;
    font-size: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #6c86a3;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations {
    background: #fefaf5;
    padding: 80px 0;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dest-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.dest-image {
    position: relative;
}

.dest-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dest-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #e67e22;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.dest-info {
    padding: 20px;
}

.dest-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.dest-info p {
    color: #6c86a3;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.dest-info p i {
    color: #e67e22;
    margin-right: 5px;
}

.enquire-btn {
    display: inline-block;
    background: none;
    color: #e67e22;
    padding: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.enquire-btn:hover {
    color: #cf711f;
    transform: translateX(5px);
    display: inline-block;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #0b3b5f, #1a5276);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #bcd0e2;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e67e22;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #cf711f;
    transform: translateY(-2px);
}

/* ========================================
   FOOTER STYLES (PROFESSIONAL)
   ======================================== */
footer {
    background: #0a1c2a;
    color: #e2edf7;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e67e22;
}

.footer-col p {
    color: #bcd0e2;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    background: #1f3e51;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bcd0e2;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: #e67e22;
}

.footer-col ul li a:hover {
    color: #e67e22;
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #bcd0e2;
}

.contact-list li i {
    color: #e67e22;
    width: 20px;
    margin-top: 3px;
}

.contact-list li a {
    color: #bcd0e2;
    text-decoration: none;
}

.contact-list li a:hover {
    color: #e67e22;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: #1f3e51;
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: #8aaec2;
}

.newsletter-form button {
    background: #e67e22;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: #cf711f;
}

.newsletter-msg {
    font-size: 0.75rem;
    margin-top: 8px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.trust-badges img {
    height: 35px;
    width: auto;
    background: white;
    border-radius: 8px;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid #1f3e51;
    padding: 24px 0 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #9bb7cc;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9bb7cc;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #e67e22;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}