/* ========================================
   AD FACILITIES - COMPLETE CSS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */

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: 15px 20px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 26px;
    font-weight: 800;
}

.logo span {
    font-size: 11px;
    color: #666;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

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;
    font-size: 14px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 60px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.atol-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.atol-badge i {
    margin-right: 6px;
}

/* ========================================
   QUOTE FORM - SMALL & RESPONSIVE
   ======================================== */

.quote-form {
    background: white;
    color: #1a1a2e;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    max-width: 420px;
    width: 100%;
    margin-left: auto;
}

.quote-form h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: #1a1a2e;
    text-align: center;
}

.quote-form > p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
}

/* Trip Toggle */
.trip-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
}

.trip-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.trip-btn.active {
    background: #e94560;
    color: white;
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.form-group label i {
    margin-right: 5px;
    color: #e94560;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Airport Suggestions */
.airport-input {
    position: relative;
}

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
    background: #e94560;
    color: white;
}

.suggestion-item strong {
    display: block;
    font-size: 14px;
}

.suggestion-item small {
    font-size: 11px;
    color: #666;
}

.suggestion-item:hover small {
    color: #ddd;
}

/* Passengers Section */
.passengers-section {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.passengers-section > label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 13px;
}

.passenger-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.passenger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.counter-btn:hover {
    background: #e94560;
    color: white;
    border-color: #e94560;
}

.counter span {
    min-width: 25px;
    text-align: center;
    font-weight: 600;
}

/* Search Button */
.search-btn {
    width: 100%;
    padding: 12px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
}

.search-btn:hover {
    background: #c62a45;
    transform: translateY(-2px);
}

/* Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 13px;
    display: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 13px;
    display: none;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 60px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 45px;
    color: #e94560;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */

.destinations {
    padding: 60px 0;
    background: #f8f9fa;
}

.destinations h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.dest-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dest-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.dest-card p {
    padding: 0 15px;
    color: #e94560;
    font-weight: bold;
}

.view-deal {
    display: block;
    padding: 12px 15px;
    margin: 10px 15px 15px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.view-deal:hover {
    background: #e94560;
}

/* ========================================
   STEPS SECTION
   ======================================== */

.steps {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
}

.steps h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: #e94560;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    opacity: 0.8;
    font-size: 14px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #1a1a2e;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p, .footer-col ul {
    font-size: 13px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #e94560;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e94560;
}

.footer-col input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.footer-col button {
    width: 100%;
    padding: 10px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #888;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .quote-form {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 12px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .quote-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feature-grid,
    .dest-grid,
    .step-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .quote-form h3 {
        font-size: 18px;
    }
    
    .passenger-controls {
        gap: 8px;
    }
    
    .counter-btn {
        width: 24px;
        height: 24px;
    }
}
/* ========================================
   DESTINATIONS PAGE CSS
   ======================================== */

/* Page Hero Section */
.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;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* All Destinations Section */
.all-destinations {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Filter Buttons */
.destinations-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #1a1a2e;
}

.filter-btn:hover {
    background: #e94560;
    border-color: #e94560;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #e94560;
    border-color: #e94560;
    color: white;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Destination Card */
.dest-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dest-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-item:hover img {
    transform: scale(1.05);
}

/* Destination Info */
.dest-info {
    padding: 20px;
}

.dest-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.dest-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #e94560;
    margin: 12px 0;
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

/* View Button */
.view-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.view-btn:hover {
    background: #e94560;
    transform: translateX(5px);
}

/* Animation for filter */
.dest-item {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 16px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 60px;
    color: #e94560;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .all-destinations {
        padding: 40px 0;
    }
    
    .destinations-filter {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .dest-item img {
        height: 200px;
    }
    
    .dest-info h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .destinations-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .dest-info {
        padding: 15px;
    }
    
    .dest-info h3 {
        font-size: 18px;
    }
    
    .dest-info p {
        font-size: 13px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .view-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .all-destinations {
        background: #1a1a2e;
    }
    
    .dest-item {
        background: #16213e;
    }
    
    .dest-info h3 {
        color: white;
    }
    
    .dest-info p {
        color: #aaa;
    }
    
    .filter-btn {
        background: #16213e;
        border-color: #333;
        color: white;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: #e94560;
        border-color: #e94560;
    }
}

/* ========================================
   DESTINATIONS PAGE CSS
   ======================================== */

/* Page Hero Section */
.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;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* All Destinations Section */
.all-destinations {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Filter Buttons */
.destinations-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #1a1a2e;
}

.filter-btn:hover {
    background: #e94560;
    border-color: #e94560;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #e94560;
    border-color: #e94560;
    color: white;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Destination Card */
.dest-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dest-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-item:hover img {
    transform: scale(1.05);
}

/* Destination Info */
.dest-info {
    padding: 20px;
}

.dest-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.dest-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #e94560;
    margin: 12px 0;
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

/* View Button */
.view-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.view-btn:hover {
    background: #e94560;
    transform: translateX(5px);
}

/* Animation for filter */
.dest-item {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 16px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 60px;
    color: #e94560;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .all-destinations {
        padding: 40px 0;
    }
    
    .destinations-filter {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .dest-item img {
        height: 200px;
    }
    
    .dest-info h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .destinations-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .dest-info {
        padding: 15px;
    }
    
    .dest-info h3 {
        font-size: 18px;
    }
    
    .dest-info p {
        font-size: 13px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .view-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .all-destinations {
        background: #1a1a2e;
    }
    
    .dest-item {
        background: #16213e;
    }
    
    .dest-info h3 {
        color: white;
    }
    
    .dest-info p {
        color: #aaa;
    }
    
    .filter-btn {
        background: #16213e;
        border-color: #333;
        color: white;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: #e94560;
        border-color: #e94560;
    }
}

/* ========================================
   HOLIDAYS/PACKAGES PAGE CSS
   Same theme as Destinations Page
   ======================================== */

/* Packages Section */
.packages {
    padding: 60px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Package Card - Same as Destinations Card */
.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card:hover img {
    transform: scale(1.05);
}

/* Featured Package Card */
.package-card.featured {
    border: 2px solid #e94560;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.15);
}

.package-card.featured:hover {
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.25);
}

/* Badge - Same as Destinations */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e94560;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Package Image - Same as Destinations */
.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Package Details - Same as Destinations */
.package-details {
    padding: 20px;
}

.package-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.package-details > p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Package Features */
.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.package-features span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-features i {
    color: #e94560;
    font-size: 14px;
}

/* Package Price - Same as Destinations Price */
.package-price {
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
    color: #e94560;
}

.package-price span:last-child {
    color: #666;
    font-size: 14px;
}

/* Book Now Button - Same as View Button in Destinations */
.book-now {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: #0f3460;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.book-now:hover {
    background: #e94560;
    transform: translateX(5px);
}

/* Animation - Same as Destinations */
.package-card {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Same as Destinations */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .packages {
        padding: 40px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card img {
        height: 200px;
    }
    
    .package-details {
        padding: 15px;
    }
    
    .package-details h3 {
        font-size: 20px;
    }
    
    .package-features {
        gap: 12px;
    }
    
    .package-features span {
        font-size: 12px;
    }
    
    .new-price {
        font-size: 24px;
    }
    
    .book-now {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .packages {
        padding: 30px 0;
    }
    
    .package-details {
        padding: 12px;
    }
    
    .package-details h3 {
        font-size: 18px;
    }
    
    .package-details > p {
        font-size: 13px;
    }
    
    .package-features {
        gap: 10px;
    }
    
    .package-features span {
        font-size: 11px;
    }
    
    .old-price {
        font-size: 14px;
    }
    
    .new-price {
        font-size: 22px;
    }
    
    .book-now {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
}

/* Dark Mode Support - Same as Destinations */
@media (prefers-color-scheme: dark) {
    .packages {
        background: #1a1a2e;
    }
    
    .package-card {
        background: #16213e;
    }
    
    .package-details h3 {
        color: white;
    }
    
    .package-details > p {
        color: #aaa;
    }
    
    .package-features {
        border-top-color: #333;
        border-bottom-color: #333;
    }
    
    .package-features span {
        color: #ccc;
    }
    
    .package-price span:last-child {
        color: #aaa;
    }
}


/* ========================================
   CONTACT PAGE CSS
   Same theme as Destinations & Holidays
   ======================================== */

/* Contact Page Section */
.contact-page {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-info-box > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e94560;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: #e94560;
    color: white;
    transform: scale(1.05);
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.info-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

/* Social Links */
.social-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e94560;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e94560;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-form-box > p {
    color: #666;
    margin-bottom: 25px;
}

/* Form Groups */
.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.contact-form-box .form-group label i {
    margin-right: 6px;
    color: #e94560;
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

/* Form Row */
.contact-form-box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #0f3460;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e94560;
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Success/Error Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 20px;
    }
    
    .contact-form-box .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-item {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .info-item h4 {
        font-size: 16px;
    }
    
    .map-section iframe {
        height: 250px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 15px;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 22px;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .info-item h4 {
        font-size: 15px;
    }
    
    .info-item p {
        font-size: 13px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .map-section iframe {
        height: 200px;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-page {
        background: #1a1a2e;
    }
    
    .contact-info-box,
    .contact-form-box {
        background: #16213e;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        color: white;
    }
    
    .contact-info-box > p,
    .contact-form-box > p {
        color: #aaa;
    }
    
    .info-item {
        border-bottom-color: #333;
    }
    
    .info-item h4 {
        color: white;
    }
    
    .info-item p {
        color: #aaa;
    }
    
    .info-item i {
        background: #1a1a2e;
    }
    
    .social-links {
        border-top-color: #333;
    }
    
    .social-links h4 {
        color: white;
    }
    
    .social-icons a {
        background: #1a1a2e;
    }
    
    .contact-form-box .form-group label {
        color: #ccc;
    }
    
    .contact-form-box .form-group input,
    .contact-form-box .form-group select,
    .contact-form-box .form-group textarea {
        background: #1a1a2e;
        border-color: #333;
        color: white;
    }
    
    .contact-form-box .form-group input::placeholder,
    .contact-form-box .form-group textarea::placeholder {
        color: #666;
    }
}





/* ========================================
   CONTACT PAGE CSS
   Same theme as Holidays & Destinations Page
   ======================================== */

/* Contact Page Section */
.contact-page {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Info Box - Same as Package Card */
.contact-info-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-info-box > p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Info Items - Same as Package Features */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e94560;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: #e94560;
    color: white;
    transform: scale(1.05);
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.info-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 3px 0;
}

/* Social Links */
.social-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e94560;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e94560;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Box - Same as Package Card */
.contact-form-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-form-box > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Form Groups */
.contact-form-box .form-group {
    margin-bottom: 18px;
}

.contact-form-box .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.contact-form-box .form-group label i {
    margin-right: 6px;
    color: #e94560;
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

/* Form Row */
.contact-form-box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

/* Submit Button - Same as Book Now Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #0f3460;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e94560;
    transform: translateX(5px);
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section - Same as Card */
.map-section {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Animation - Same as Packages */
.contact-info-box,
.contact-form-box {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   Same as Holidays Page
   ======================================== */

@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 20px;
    }
    
    .contact-form-box .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-item {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .info-item h4 {
        font-size: 15px;
    }
    
    .info-item p {
        font-size: 12px;
    }
    
    .map-section iframe {
        height: 280px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 15px;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 20px;
    }
    
    .contact-info-box > p,
    .contact-form-box > p {
        font-size: 13px;
    }
    
    .info-item {
        gap: 10px;
    }
    
    .info-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .info-item h4 {
        font-size: 14px;
    }
    
    .info-item p {
        font-size: 11px;
    }
    
    .map-section iframe {
        height: 200px;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .success-message,
    .error-message {
        font-size: 12px;
        padding: 10px;
    }
}

/* ========================================
   DARK MODE SUPPORT
   Same as Holidays Page
   ======================================== */

@media (prefers-color-scheme: dark) {
    .contact-page {
        background: #1a1a2e;
    }
    
    .contact-info-box,
    .contact-form-box {
        background: #16213e;
    }
    
    .contact-info-box h2,
    .contact-form-box h2 {
        color: white;
    }
    
    .contact-info-box > p,
    .contact-form-box > p {
        color: #aaa;
    }
    
    .info-item {
        border-bottom-color: #333;
    }
    
    .info-item h4 {
        color: white;
    }
    
    .info-item p {
        color: #aaa;
    }
    
    .info-item i {
        background: #1a1a2e;
        color: #e94560;
    }
    
    .social-links {
        border-top-color: #333;
    }
    
    .social-links h4 {
        color: white;
    }
    
    .social-icons a {
        background: #1a1a2e;
        color: #e94560;
    }
    
    .social-icons a:hover {
        background: #e94560;
        color: white;
    }
    
    .contact-form-box .form-group label {
        color: #ccc;
    }
    
    .contact-form-box .form-group input,
    .contact-form-box .form-group select,
    .contact-form-box .form-group textarea {
        background: #1a1a2e;
        border-color: #333;
        color: white;
    }
    
    .contact-form-box .form-group input:focus,
    .contact-form-box .form-group select:focus,
    .contact-form-box .form-group textarea:focus {
        border-color: #e94560;
    }
    
    .contact-form-box .form-group input::placeholder,
    .contact-form-box .form-group textarea::placeholder {
        color: #666;
    }
    
    .contact-form-box .form-group select option {
        background: #1a1a2e;
        color: white;
    }
}



/* ========================================
   ABOUT US PAGE CSS
   Same theme as Destinations Page
   ======================================== */

/* About Content Section */
.about-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* About Text - Same styling as Destinations info */
.about-text {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e94560;
    border-radius: 2px;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Why Choose Us List - Same as Destinations */
.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-text li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.about-text li i {
    color: #e94560;
    font-size: 18px;
    width: 24px;
}

/* About Stats - Same as Destinations Grid */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Stat Card - Same as Destination Card */
.stat-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a2e;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e94560;
    border-radius: 2px;
}

/* Team Grid - Same as Destinations Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Team Member Card - Same as Destination Card */
.team-member {
    background: #f8f9fa;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member i {
    font-size: 70px;
    color: #e94560;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.team-member:hover i {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.team-member p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-member span {
    color: #e94560;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 20px;
}

/* Animation - Same as Destinations */
.about-text,
.stat-card,
.team-member {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   Same as Destinations Page
   ======================================== */

@media (max-width: 992px) {
    .about-grid {
        gap: 35px;
    }
    
    .about-text {
        padding: 25px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .team h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 0;
    }
    
    .team {
        padding: 40px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 22px;
        margin: 15px 0 10px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-text li {
        font-size: 14px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-card h3 {
        font-size: 32px;
    }
    
    .stat-card p {
        font-size: 14px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-member i {
        font-size: 60px;
    }
    
    .team-member h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 30px 0;
    }
    
    .team {
        padding: 30px 0;
    }
    
    .about-text {
        padding: 15px;
    }
    
    .about-text h2 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .about-text li {
        font-size: 13px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .team h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .team-member i {
        font-size: 50px;
    }
    
    .team-member h3 {
        font-size: 17px;
    }
}

/* ========================================
   DARK MODE SUPPORT
   Same as Destinations Page
   ======================================== */

@media (prefers-color-scheme: dark) {
    .about-content {
        background: #1a1a2e;
    }
    
    .about-text {
        background: #16213e;
    }
    
    .about-text h2 {
        color: white;
    }
    
    .about-text p {
        color: #aaa;
    }
    
    .about-text li {
        color: #ccc;
    }
    
    .stat-card {
        background: #16213e;
    }
    
    .stat-card p {
        color: #aaa;
    }
    
    .team {
        background: #1a1a2e;
    }
    
    .team h2 {
        color: white;
    }
    
    .team-member {
        background: #16213e;
    }
    
    .team-member h3 {
        color: white;
    }
    
    .team-member p {
        color: #aaa;
    }
    
    .team-member:hover {
        background: #1a2a3e;
    }
}


/* ========================================
   TOP BAR STYLES
   ======================================== */

.top-bar {
    background: #0f3460;
    color: white;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left i {
    margin-right: 8px;
    color: #e94560;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.top-bar-right a i {
    margin-right: 6px;
    color: #e94560;
}

.top-bar-right a:hover {
    color: #e94560;
}

.atol-badge-top {
    background: rgba(233, 69, 96, 0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.atol-badge-top i {
    margin-right: 5px;
    color: #e94560;
}

/* ========================================
   MAIN HEADER STYLES
   ======================================== */

header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    background: linear-gradient(135deg, #0f3460 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 2px;
}

.logo span {
    font-size: 11px;
    color: #666;
    display: block;
    letter-spacing: 0.5px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #e94560;
}

nav a.active {
    color: #e94560;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e94560;
    border-radius: 2px;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.free-quote-btn {
    background: linear-gradient(135deg, #e94560 0%, #c62a45 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-quote-btn i {
    font-size: 13px;
}

.free-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    background: linear-gradient(135deg, #c62a45 0%, #e94560 100%);
}

/* ========================================
   RESPONSIVE HEADER
   ======================================== */

@media (max-width: 992px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-right {
        justify-content: center;
    }
    
    header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    nav ul {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .top-bar-right {
        gap: 12px;
    }
    
    .top-bar-right a {
        font-size: 11px;
    }
    
    .atol-badge-top {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    header .container {
        flex-direction: column;
        padding: 12px 20px;
    }
    
    .logo {
        text-align: center;
    }
    
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 13px;
    }
    
    .header-buttons {
        margin-top: 5px;
    }
    
    .free-quote-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .free-quote-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .top-bar {
        background: #0a1a2e;
    }
    
    header {
        background: #16213e;
    }
    
    .logo span {
        color: #aaa;
    }
    
    nav a {
        color: #ccc;
    }
    
    nav a:hover,
    nav a.active {
        color: #e94560;
    }
}