/* Main CSS File for Golden Wings Travel Agency */

/* ==================== COLOR SCHEME OVERRIDES ==================== */
:root {
  --primary-color: #0B2545 !important; /* Dark navy blue */
  --secondary-color: #D4AF37 !important; /* Gold */
  --dark-color: #071330 !important; /* Darker navy */
  --light-gold: #F9EFB0 !important; /* Lighter gold */
  --navy-light: #13315C !important; /* Lighter navy */
  --light-color: #f4f4f4;
  --danger-color: #dc3545;
  --success-color: #28a745;
}

.btn:hover { 
  background-color: var(--secondary-color) !important; 
  color: var(--dark-color) !important; 
}

.logo-text h1 { 
  color: var(--secondary-color) !important; 
}

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

nav ul li a::after { 
  background-color: var(--secondary-color) !important; 
}

.footer-column h3 { 
  color: var(--secondary-color) !important; 
}

.footer-column h3::after { 
  background-color: var(--secondary-color) !important; 
}

.footer-links a:hover { 
  color: var(--secondary-color) !important; 
}

.social-icons a:hover { 
  background-color: var(--secondary-color) !important; 
  color: var(--dark-color) !important; 
}

/* ==================== COMMON STYLES MOVED ==================== */
/* All common styles (animations, global styles, buttons, section headers) moved to css/shared/common.css */

/* Header and navigation styles moved to header.css */

/* Hero Section - Moved to heroes.css */

/* Featured Offers Section */
.featured-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.offer-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 7px 14px; /* Reduced for better proportion */
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap; /* Prevent text wrapping */
}

.offer-badge.discount {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.offer-badge.new {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.offer-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.offer-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-price {
    text-align: center;
    padding: 15px 0;
    margin: 20px 0 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    opacity: 0.8;
    margin-left: 10px;
}

.new-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.couple-note {
    color: var(--secondary-color);
    font-size: 13px; /* Reduced for better proportion */
    font-weight: 600;
    background: rgba(212, 175, 55, 0.2);
    padding: 3px 7px; /* Reduced for better proportion */
    border-radius: 12px;
    white-space: nowrap;
}

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

.offer-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.offer-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.offer-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

.offer-features i {
    color: var(--secondary-color);
}

.offer-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 13px; /* Reduced for better proportion */
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    white-space: nowrap; /* Prevent text wrapping */
    min-height: 48px; /* Maintain good touch target */
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f1f9f5; /* Light green tint */
}

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

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.service-card-link:hover .service-card::before {
    left: 100%;
}

.service-card-link:hover .service-card {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--secondary-color);
    background-color: #fff;
}

.service-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card-link:hover .service-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1); /* Light gold background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-card .icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card .icon i {
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-card .icon i {
    color: var(--dark-color);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-card h3 {
    color: var(--primary-color);
}

.service-card-link:hover .service-card p {
    color: #555;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* About Main Section */
.about-main {
    display: block;
    margin-bottom: 20px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 5px;
    min-width: 40px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}



/* Statistics Section */
.about-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-light));
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mission Section */
.about-mission {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.mission-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.point i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.point span {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.mission-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.mission-cta h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-cta p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px !important;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0) !important;
    color: var(--primary-color) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.about-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(45deg, #f9efb0, var(--secondary-color)) !important;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .about-stats {
        padding: 40px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-mission {
        padding: 30px 20px;
    }
    
    .mission-text h3 {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .highlight-item i {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-highlights {
        gap: 20px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .overlay-content i {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f1f5f9;
}

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

.contact-info {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Form styles moved to css/shared/common.css */

/* Footer styles moved to footer.css */

/* Media Queries */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Improve section spacing */
    .featured-offers,
    .featured-destinations,
    .services,
    .about,
    .contact-cta {
        padding: 60px 0 !important;
    }
    
    /* Section headers optimization */
    .section-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }
    
    /* Services grid improvements */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px !important;
    }
    
    .service-card .icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px;
    }
    
    .service-card .icon i {
        font-size: 1.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
        margin-bottom: 30px;
    }
    
    /* Contact grid improvements */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* About section mobile optimization */
    .about {
        padding: 60px 0 !important;
    }
    
    .about-content {
        gap: 40px !important;
    }
    
    .about-intro h3 {
        font-size: 1.75rem !important;
    }
    
    .about-intro p {
        font-size: 1rem !important;
    }
    
    /* Offers slider mobile optimization */
    .offers-slider {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Destinations grid mobile */
    .destinations-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Make cards more compact on mobile */
    .offer-card,
    .destination-card {
        max-width: 100% !important;
    }
    
    .offer-image,
    .destination-image {
        min-height: 180px !important;
    }
}

@media (max-width: 576px) {
    /* Ultra-small device optimizations */
    .featured-offers,
    .featured-destinations,
    .services,
    .about,
    .contact-cta {
        padding: 40px 0 !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header p {
        font-size: 0.875rem !important;
    }
    
    /* Services grid for very small screens */
    .services-grid {
        gap: 15px !important;
    }

    .service-card {
        padding: 20px 15px !important;
    }
    
    /* Contact card mobile optimization */
    .contact-card {
        padding: 20px !important;
        gap: 15px !important;
    }

    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }

    /* Form elements */
    .form-group select,
    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px !important;
    }

    /* Phone input adjustments */
    .phone-group .phone-input select {
        min-width: 100px !important;
        font-size: 12px !important;
    }

    .phone-group .phone-input input {
        font-size: 16px !important;
    }

    /* Featured offers mobile */
    .featured-offers {
        padding: 40px 0 !important;
    }

    .offers-slider {
        gap: 15px !important;
    }

    .offer-content {
        padding: 15px !important;
    }

    .offer-content h3 {
        font-size: 1.1rem !important;
    }

    .offer-features {
        gap: 8px !important;
        margin-bottom: 15px;
    }

    .offer-features span {
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
    }
    
    /* Button optimizations */
    .btn {
        padding: 10px 18px !important; /* Further reduced for mobile proportion */
        font-size: 0.9rem !important;
        min-height: 44px !important; /* Reduced minimum height */
    }
    
    /* Offer button mobile optimization */
    .offer-btn {
        padding: 10px !important; /* Reduced for mobile proportion */
        font-size: 0.9rem !important;
        min-height: 44px !important; /* Reduced minimum height */
    }
    
    /* Stats container mobile */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
}

/* Tablet Responsive Design */
@media (max-width: 992px) {
    /* Featured Offers Tablet */
    .offers-slider {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Add styles for the Travel Consultant Section */
.travel-consultant {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    gap: 20px;
}

.contact-card {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
    background-color: #ffffff;
}

.contact-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon img {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-action {
    background: linear-gradient(45deg, var(--primary-color), var(--navy-light));
    color: #ffffff;
    transform: translateY(-2px);
}

.services-title {
    margin-top: 20px;
}

.services-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-icon-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    min-height: 140px;
}

.service-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 108, 53, 0.9); /* Saudi green */
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

/* Larger screens - keep 2 columns but with larger images */
@media (min-width: 993px) {
    .services-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-icon-card img {
        height: 180px;
    }
}

/* Medium screens - 2 columns */
@media (min-width: 768px) and (max-width: 992px) {
    .services-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-icon-card img {
        height: 150px;
    }
}

/* Small screens - 1 column */
@media (max-width: 767px) {
    .services-icons {
        grid-template-columns: 1fr;
    }
    
    .service-icon-card img {
        height: 180px;
    }
}

/* Responsive styles for contact-options */
@media (max-width: 767px) {
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Panoramic Services Layout */
.services-panorama {
    margin-bottom: 40px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.service-panorama-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 200px;
    cursor: pointer;
    flex: 1;
}

.service-panorama-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: white;
    text-decoration: none;
}

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive styles for panoramic services */
@media (max-width: 767px) {
    .service-row {
        grid-template-columns: 1fr;
    }
    
    .service-panorama-card {
        height: 200px;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .service-panorama-card {
        height: 160px;
    }
}

@media (min-width: 993px) {
    .service-panorama-card {
        height: 180px;
    }
}

/* Utility classes moved to css/shared/common.css */

/* Terms & Privacy Pages */
.terms-section {
    padding: 60px 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 40px;
}

.terms-item h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.terms-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.terms-item p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.terms-item ul {
    padding-right: 20px;
    margin-bottom: 15px;
}

.terms-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Tax Certificate Page */
.certificate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.certificate-container img {
    max-width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.certificate-info {
    margin-top: 30px;
    text-align: right;
}

.certificate-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.certificate-info p {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Payment Methods Page */
.payment-methods-section {
    padding: 60px 0;
}

.payment-methods-container {
    max-width: 900px;
    margin: 0 auto;
}

.payment-method-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.payment-method-item img {
    width: 100px;
    margin-left: 20px;
}

.payment-method-info {
    flex: 1;
}

.payment-method-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.payment-method-info p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Page */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 20px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.blog-post-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-post-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-post-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-method-item {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-method-item img {
        margin: 0 0 20px 0;
    }
}

/* Header logo styles moved to header.css */

/* Footer logo styles moved to footer.css */

/* Contact Call-to-Action Section */
.contact-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.9), rgba(7, 19, 48, 0.8)), url('../../images/pages/index/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

.contact-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.01em;
}

.contact-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA Section Hero Button Styling */
.contact-cta .btn {
    padding: 14px 28px; /* Reduced for better proportion */
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 150px; /* Reduced minimum width */
    max-width: 280px; /* Prevent buttons from being too wide */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap; /* Prevent text wrapping */
}

.contact-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-cta .btn:hover::before {
    left: 100%;
}

.contact-cta .hero-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f1c40f 100%);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.contact-cta .hero-btn-primary:hover {
    background: linear-gradient(135deg, #f1c40f 0%, var(--secondary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.contact-cta .hero-btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.contact-cta .hero-btn-secondary:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.4);
}

/* Responsive Design for Contact CTA */
@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .contact-cta-text h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .contact-cta-text p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .contact-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .contact-cta .btn {
        padding: 12px 20px; /* Reduced for better proportion */
        font-size: 14px;
        min-width: 120px; /* Reduced minimum width */
        max-width: 220px; /* Prevent buttons from being too wide */
        white-space: nowrap; /* Prevent text wrapping */
    }
}

@media (max-width: 576px) {
    .contact-cta {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .contact-cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .contact-cta-text p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .contact-cta .btn {
        padding: 10px 18px; /* Reduced for better proportion */
        min-width: 100px; /* Smaller minimum for very small screens */
        max-width: 180px; /* Prevent buttons from being too wide */
        font-size: 13px;
        white-space: nowrap; /* Prevent text wrapping */
    }
}

/* Featured Destinations Section */
.featured-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.destination-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.destination-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.destination-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

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

.destination-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.destination-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

.destination-features i {
    color: var(--secondary-color);
}

.destination-pricing {
    text-align: center;
    padding: 15px 0;
    margin: 20px 0 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
}

.price-from {
    color: #999;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.destination-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.destination-stats {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

.destination-stats i {
    margin-left: 5px;
}

.destination-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.destination-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Remove old trip-count styling */
.trip-count {
    display: none;
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 7px 14px; /* Reduced for better proportion */
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap; /* Prevent text wrapping */
}

/* Mobile responsive badge sizing */
@media (max-width: 768px) {
    .destination-badge {
        font-size: 12px;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .destination-badge {
        font-size: 11px;
        padding: 5px 10px;
        top: 12px;
        right: 12px;
    }
}

.destination-badge.honeymoon {
    background: linear-gradient(45deg, #e91e63, #ad1457);
    color: white;
}

.destination-badge.family {
    background: linear-gradient(45deg, #4caf50, #388e3c);
    color: white;
}

.destination-badge.new {
    background: linear-gradient(45deg, #2196f3, #1976d2);
    color: white;
}

.destination-badge.cultural {
    background: linear-gradient(45deg, #9c27b0, #7b1fa2);
    color: white;
}

.destination-badge.adventure {
    background: linear-gradient(45deg, #ff9800, #f57c00);
    color: white;
}

/* Responsive Design for Featured Destinations */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-destinations {
        padding: 60px 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-content {
        padding: 20px;
    }

    .destination-content h3 {
        font-size: 18px;
    }

    .destination-features {
        gap: 8px; /* Reduced gap for better spacing */
        justify-content: center;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .destination-features span {
        font-size: 12px; /* Reduced font size for better proportion */
        padding: 6px 10px; /* Reduced padding for better proportion */
        white-space: nowrap; /* Prevent text wrapping */
    }
}

@media (max-width: 576px) {
    .destination-content {
        padding: 15px;
    }

    .destination-features {
        gap: 6px; /* Even smaller gap for very small screens */
    }

    .destination-features span {
        font-size: 11px; /* Smaller font for very small screens */
        padding: 5px 8px; /* More compact padding */
    }

    .destination-pricing {
        padding: 12px 0;
        margin: 15px 0 10px 0;
    }

    .destination-price {
        font-size: 20px;
    }

    .destination-btn {
        padding: 12px;
        font-size: 14px;
    }
}

 