/* Reset and Base Styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0D6EFD;
    --dark-navy: #003E6B;
    --accent-blue: #007BFF;
    --soft-gray: #F5F5F5;
    --text-gray: #6C757D;
    --black: #000000;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Message Strip */
.message-strip {
    background: #00008B;
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.message-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Umrah Visa Strip */
.umrah-visa-strip {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 12px 0;
    text-align: center;
}

.umrah-visa-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.umrah-visa-btn {
    background: var(--white);
    color: #28a745;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--white);
}

.umrah-visa-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 55px;
    width: auto;
}

.certification-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-logo {
    height: 55px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
    filter: none;
}

.header .cert-logo {
    height: 35px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
    filter: none;
    margin: 0;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--soft-gray);
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:hover {
    background-color: var(--soft-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background-color: var(--soft-gray);
    color: var(--accent-blue);
}

.mobile-dropdown {
    background-color: var(--soft-gray);
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 40px;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
}

.mobile-dropdown-item:hover {
    background-color: #e0e0e0;
    color: var(--accent-blue);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-content {
        font-size: 12px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        height: 50px;
    }
    
    .cert-logo {
        height: 55px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo {
        height: 50px;
    }
    
    .cert-logo {
        height: 50px;
    }
    
    .message-content {
        font-size: 11px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .message-content {
        animation: none;
        transform: none;
        padding-left: 20px;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.dropdown-item:focus,
.mobile-nav-link:focus,
.cta-button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Homepage Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 62, 107, 0.4), rgba(13, 110, 253, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Sections */
.product-section {  
    padding: 40px 0;
    background: var(--white);
}

.product-section.alt-bg {
    background: var(--soft-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 420px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.product-badge.most-popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-badge.top-rated {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.product-badge.recommended {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.product-badge.early-bird {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.product-badge.best-value {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.product-price-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #28a745;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 10px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.product-price-overlay .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.product-price-overlay .price-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: none;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-btn {
    flex: 1;
    padding: 10px 8px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.product-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
}

.product-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.product-btn:hover {
    transform: translateY(-2px);
}

.product-btn.primary:hover {
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.product-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Section */
.services-overview {
    padding: 100px 0;
    background: var(--soft-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-blue);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.reviews-section .section-header h2,
.reviews-section .section-subtitle {
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
}

.review-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 5px 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-stars {
    display: flex;
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 2px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--soft-gray);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--soft-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--soft-gray);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.call-to-action {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-color));
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/cta-pattern.png') repeat;
    opacity: 0.1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 65vh;
        min-height: 400px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--dark-navy), #001a2e);
    color: var(--white);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links .icon {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    opacity: 0.8;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.newsletter-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.footer-middle {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.social-section h5,
.certifications h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-link.facebook {
    border: 2px solid #1877f2;
}

.social-link.facebook::before {
    background: #1877f2;
}

.social-link.instagram {
    border: 2px solid #e4405f;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter {
    border: 2px solid #1da1f2;
}

.social-link.twitter::before {
    background: #1da1f2;
}

.social-link.whatsapp {
    border: 2px solid #25d366;
}

.social-link.whatsapp::before {
    background: #25d366;
}

.social-link.youtube {
    border: 2px solid #ff0000;
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link.linkedin {
    border: 2px solid #0077b5;
}

.social-link.linkedin::before {
    background: #0077b5;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.cert-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cert-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cert-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-middle-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-wave svg {
        height: 40px;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        align-self: stretch;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cert-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .newsletter {
        padding: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .cert-logo {
        height: 30px;
    }
}

/* ===== FLIGHTS PAGE STYLES ===== */

.flight-page-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Flight Hero Section */
.flight-page-wrapper .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.flight-page-wrapper .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plane" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M20,50 L80,50 M50,20 L50,80" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23plane)"/></svg>');
  opacity: 0.3;
}

.flight-page-wrapper .hero .container {
  position: relative;
  z-index: 2;
}

.flight-page-wrapper .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.flight-page-wrapper .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Flight Deals Section */
.flight-page-wrapper .flight-deals {
  padding: 100px 0;
  background: #fafbfc;
}

.flight-page-wrapper .flight-deals h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.flight-page-wrapper .flight-deals h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.flight-page-wrapper .deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.flight-page-wrapper .deal-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.flight-page-wrapper .deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.flight-page-wrapper .deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.flight-page-wrapper .deal-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flight-page-wrapper .deal-card h3::before {
  content: '✈️';
  font-size: 1.2rem;
}

.flight-page-wrapper .deal-card p {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.flight-page-wrapper .deal-card strong {
  color: #667eea;
  font-size: 1.25rem;
  font-weight: 700;
}

.flight-page-wrapper .note {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin-top: 2rem;
}

/* How It Works Section */
.flight-page-wrapper .how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.flight-page-wrapper .how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.flight-page-wrapper .how-it-works ol {
  list-style: none;
  counter-reset: step-counter;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.flight-page-wrapper .how-it-works li {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem 1.5rem 4rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  font-size: 1.1rem;
  color: #4a5568;
}

.flight-page-wrapper .how-it-works li::before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.flight-page-wrapper .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border: none;
  cursor: pointer;
}

.flight-page-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* FAQ Section */
.flight-page-wrapper .faq {
  padding: 100px 0;
  background: white;
}

.flight-page-wrapper .faq h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.flight-page-wrapper .faq-item {
  background: #f7fafc;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.flight-page-wrapper .faq-item:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.flight-page-wrapper .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.flight-page-wrapper .faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* CTA Section */
.flight-page-wrapper .cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.flight-page-wrapper .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.flight-page-wrapper .cta .container {
  position: relative;
  z-index: 2;
}

.flight-page-wrapper .cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.flight-page-wrapper .cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.flight-page-wrapper .cta .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  border: 2px solid transparent;
}

.flight-page-wrapper .cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  border-color: rgba(255,255,255,0.3);
}

/* Utility Classes */
.flight-page-wrapper .section {
  position: relative;
}

.flight-page-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flight-page-wrapper .text-center {
  text-align: center;
}

.flight-page-wrapper .mt-2 {
  margin-top: 2rem;
}

.flight-page-wrapper .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flight-page-wrapper .hero h1 {
    font-size: 2.5rem;
  }
  
  .flight-page-wrapper .hero p {
    font-size: 1.1rem;
  }
  
  .flight-page-wrapper .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .flight-page-wrapper .deal-card {
    padding: 2rem 1.5rem;
  }
  
  .flight-page-wrapper .how-it-works li {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  }
  
  .flight-page-wrapper .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .flight-page-wrapper .hero {
    padding: 80px 0 60px;
  }
  
  .flight-page-wrapper .hero h1 {
    font-size: 2rem;
  }
  
  .flight-page-wrapper .flight-deals,
  .flight-page-wrapper .how-it-works,
  .flight-page-wrapper .faq,
  .flight-page-wrapper .cta {
    padding: 60px 0;
  }
  
  .flight-page-wrapper .flight-deals h2,
  .flight-page-wrapper .how-it-works h2,
  .flight-page-wrapper .faq h2,
  .flight-page-wrapper .cta h2 {
    font-size: 2rem;
  }
}
/* ===== ADDITIONAL FLIGHT PAGE COMPONENTS ===== */

/* Enhanced Deal Cards */
.flight-page-wrapper .deal-card {
  position: relative;
  padding-top: 3rem;
}

.deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.deal-badge.best-value {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.deal-badge.premium {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.deal-features {
  display: flex;
  gap: 10px;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.feature {
  background: #e8f5e8;
  color: #27ae60;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.deal-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.deal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Why Choose Us Section */
.why-choose-flights {
  padding: 80px 0;
}

.why-choose-flights h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #2d3748;
  transform: translateY(-2px);
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
  .flight-search-widget {
    padding: 20px 0;
    margin-top: -30px;
  }
  
  .search-form-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .search-form-card h3 {
    font-size: 1.5rem;
  }
  
  .why-choose-flights h2 {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
  }
}
/* ===== IMPROVED HERO SECTION ===== */

.flight-page-wrapper .hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flight-page-wrapper .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}

.flight-page-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.flight-page-wrapper .hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flight-page-wrapper .hero-content {
  text-align: center;
  color: white;
}

.flight-page-wrapper .hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.flight-page-wrapper .hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .flight-page-wrapper .hero {
    min-height: 60vh;
  }
  
  .flight-page-wrapper .hero h1 {
    font-size: 2.8rem;
  }
  
  .flight-page-wrapper .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .flight-page-wrapper .hero h1 {
    font-size: 2.2rem;
  }
  
  .flight-page-wrapper .hero p {
    font-size: 1.1rem;
  }
}
/* ===== HOTELS PAGE STYLES ===== */

.hotels-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Hotels Hero Section */
.hotels-page .hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hotels-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hotel" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M20,20 L80,20 L80,80 L20,80 Z M30,30 L70,30 M30,40 L70,40 M30,50 L70,50" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23hotel)"/></svg>');
  opacity: 0.3;
}

.hotels-page .hero .container {
  position: relative;
  z-index: 2;
}

.hotels-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.hotels-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Featured Hotels Section */
.hotels-page .featured-hotels {
  padding: 100px 0;
  background: #fafbfc;
}

.hotels-page .featured-hotels h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.hotels-page .featured-hotels h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #1e3a8a);
  border-radius: 2px;
}

.hotels-page .deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.hotels-page .deal-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.hotels-page .deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #1e3a8a);
}

.hotels-page .deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hotels-page .deal-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotels-page .deal-card h3::before {
  content: '🏨';
  font-size: 1.2rem;
}

.hotels-page .deal-card p {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.hotels-page .deal-card strong {
  color: #2c5aa0;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Why Us Section */
.hotels-page .why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hotels-page .why-us h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.hotels-page .reasons-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 0;
}

.hotels-page .reasons-list li {
  padding: 1.5rem 2rem 1.5rem 4rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.hotels-page .reasons-list li::before {
  content: '✓';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.hotels-page .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
  border: none;
  cursor: pointer;
}

.hotels-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

/* FAQ Section */
.hotels-page .faq {
  padding: 100px 0;
  background: white;
}

.hotels-page .faq h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.hotels-page .faq-item {
  background: #f7fafc;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2c5aa0;
  transition: all 0.3s ease;
}

.hotels-page .faq-item:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.hotels-page .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.hotels-page .faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* CTA Section */
.hotels-page .cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hotels-page .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

.hotels-page .cta .container {
  position: relative;
  z-index: 2;
}

.hotels-page .cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hotels-page .cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hotels-page .cta .btn-primary {
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
  border: 2px solid transparent;
}

.hotels-page .cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.5);
  border-color: rgba(255,255,255,0.3);
}

/* Utility Classes */
.hotels-page .section {
  position: relative;
}

.hotels-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hotels-page .text-center {
  text-align: center;
}

.hotels-page .mt-3 {
  margin-top: 3rem;
}

.hotels-page .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hotels-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .hotels-page .hero p {
    font-size: 1.1rem;
  }
  
  .hotels-page .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .hotels-page .deal-card {
    padding: 2rem 1.5rem;
  }
  
  .hotels-page .reasons-list li {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  }
  
  .hotels-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hotels-page .hero {
    padding: 80px 0 60px;
  }
  
  .hotels-page .hero h1 {
    font-size: 2rem;
  }
  
  .hotels-page .featured-hotels,
  .hotels-page .why-us,
  .hotels-page .faq,
  .hotels-page .cta {
    padding: 60px 0;
  }
  
  .hotels-page .featured-hotels h2,
  .hotels-page .why-us h2,
  .hotels-page .faq h2,
  .hotels-page .cta h2 {
    font-size: 2rem;
  }
}


/* ===== ABOUT PAGE STYLES ===== */

.about-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* About Hero Section */
.about-page .hero {
  background: linear-gradient(135deg, #16a085 0%, #0d7377 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23about)"/></svg>');
  opacity: 0.4;
}

.about-page .hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.about-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Our Story Section */
.about-page .our-story {
  padding: 100px 0;
  background: white;
}

.about-page .our-story h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.about-page .our-story h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #0d7377);
  border-radius: 2px;
}

.about-page .our-story p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-page .our-story strong {
  color: #16a085;
  font-weight: 600;
}

/* Why Choose Section */
.about-page .why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.about-page .why-choose h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.about-page .why-choose ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 0;
}

.about-page .why-choose li {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  border-left: 4px solid #16a085;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #4a5568;
}

.about-page .why-choose li:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-page .why-choose li strong {
  color: #16a085;
  font-weight: 600;
}

.about-page .disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Section */
.about-page .cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-page .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

.about-page .cta .container {
  position: relative;
  z-index: 2;
}

.about-page .cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-page .cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-page .cta a {
  color: #16a085;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-page .cta a:hover {
  color: #14a085;
  text-decoration: underline;
}

.about-page .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #16a085, #0d7377);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(22, 160, 133, 0.4);
  border: 2px solid transparent;
}

.about-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(22, 160, 133, 0.5);
  border-color: rgba(255,255,255,0.3);
}

/* Links Section */
.about-page .links {
  padding: 80px 0;
  background: white;
}

.about-page .links h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}

.about-page .inline-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.about-page .inline-links li {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-page .inline-links li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-page .inline-links a {
  display: block;
  padding: 1.5rem 2rem;
  color: #16a085;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.about-page .inline-links a:hover {
  background: linear-gradient(135deg, #16a085, #0d7377);
  color: white;
  transform: scale(1.05);
}

/* Utility Classes */
.about-page .section {
  position: relative;
}

.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-page .text-center {
  text-align: center;
}

.about-page .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-page .hero p {
    font-size: 1.1rem;
  }
  
  .about-page .our-story p {
    font-size: 1.1rem;
  }
  
  .about-page .why-choose li {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .about-page .inline-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .about-page .inline-links li {
    width: 100%;
    max-width: 300px;
  }
  
  .about-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .about-page .hero {
    padding: 80px 0 60px;
  }
  
  .about-page .hero h1 {
    font-size: 2rem;
  }
  
  .about-page .our-story,
  .about-page .why-choose,
  .about-page .cta,
  .about-page .links {
    padding: 60px 0;
  }
  
  .about-page .our-story h2,
  .about-page .why-choose h2,
  .about-page .cta h2,
  .about-page .links h3 {
    font-size: 2rem;
  }
  
  .about-page .cta p {
    font-size: 1.1rem;
  }
  
  .about-page .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
/* ===== CONTACT PAGE STYLES ===== */

.contact-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Contact Hero Section */
.contact-page .hero {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25,10 L35,25 L25,40 L15,25 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact)"/></svg>');
  opacity: 0.3;
}

.contact-page .hero .container {
  position: relative;
  z-index: 2;
}

.contact-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.contact-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Contact Details Section */
.contact-page .contact-details {
  padding: 100px 0;
  background: white;
}

.contact-page .contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page .contact-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(231, 76, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-page .contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.contact-page .contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-page .contact-box h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-page .contact-box h2::before {
  content: '📞';
  font-size: 1.5rem;
}

.contact-page .contact-box:nth-child(2) h2::before {
  content: '📍';
}

.contact-page .contact-box p {
  color: #4a5568;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-page .contact-box strong {
  color: #e74c3c;
  font-weight: 600;
}

.contact-page .contact-box a {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-page .contact-box a:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Contact Form Section */
.contact-page .contact-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.contact-page .contact-form h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.contact-page .contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  border-radius: 2px;
}

.contact-page .contact-form form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-page .form-group {
  margin-bottom: 2rem;
}

.contact-page .form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
  transform: translateY(-2px);
}

.contact-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page .btn-primary {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
}

.contact-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

/* Map Section */
.contact-page .map {
  padding: 100px 0;
  background: white;
}

.contact-page .map h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.contact-page .map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
}

.contact-page .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Utility Classes */
.contact-page .section {
  position: relative;
}

.contact-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-page .text-center {
  text-align: center;
}

.contact-page .bg-light {
  background-color: #f8f9fa;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .contact-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-page .hero p {
    font-size: 1.1rem;
  }
  
  .contact-page .contact-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-page .contact-box {
    padding: 2rem 1.5rem;
  }
  
  .contact-page .contact-box h2 {
    font-size: 1.5rem;
  }
  
  .contact-page .contact-form form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .contact-page .map-container {
    margin: 0 1rem;
  }
  
  .contact-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .contact-page .hero {
    padding: 80px 0 60px;
  }
  
  .contact-page .hero h1 {
    font-size: 2rem;
  }
  
  .contact-page .contact-details,
  .contact-page .contact-form,
  .contact-page .map {
    padding: 60px 0;
  }
  
  .contact-page .contact-form h2,
  .contact-page .map h2 {
    font-size: 2rem;
  }
  
  .contact-page .contact-box {
    padding: 1.5rem 1rem;
  }
  
  .contact-page .contact-box h2 {
    font-size: 1.3rem;
  }
  
  .contact-page .contact-box p {
    font-size: 1rem;
  }
  
  .contact-page .contact-form form {
    padding: 1.5rem 1rem;
  }
  
  .contact-page .form-group input,
  .contact-page .form-group textarea {
    padding: 12px 15px;
  }
  
  .contact-page .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .contact-page .map-container iframe {
    height: 300px;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  .contact-page .hero h1 {
    font-size: 1.8rem;
  }
  
  .contact-page .contact-form form {
    padding: 1rem;
  }
  
  .contact-page .contact-box {
    padding: 1rem;
  }
  
  .contact-page .container {
    padding: 0 0.5rem;
  }
}
/* ===== HAJJ UMRAH PAGE STYLES ===== */

.hajj-umrah-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Hajj Umrah Hero Section */
.hajj-umrah-page .hero {
  background: linear-gradient(135deg, #8e44ad 0%, #2c3e50 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hajj-umrah-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="islamic" patternUnits="userSpaceOnUse" width="60" height="60"><path d="M30,10 Q40,20 30,30 Q20,20 30,10 Z M30,40 Q40,50 30,60 Q20,50 30,40 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23islamic)"/></svg>');
  opacity: 0.4;
}

.hajj-umrah-page .hero .container {
  position: relative;
  z-index: 2;
}

.hajj-umrah-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.hajj-umrah-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Packages Section */
.hajj-umrah-page .packages {
  padding: 100px 0;
  background: #fafbfc;
}

.hajj-umrah-page .packages h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.hajj-umrah-page .packages h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8e44ad, #2c3e50);
  border-radius: 2px;
}

.hajj-umrah-page .package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hajj-umrah-page .package-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hajj-umrah-page .package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8e44ad, #2c3e50);
}

.hajj-umrah-page .package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.hajj-umrah-page .package-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hajj-umrah-page .package-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hajj-umrah-page .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #8e44ad, #2c3e50);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(142, 68, 173, 0.4);
  border: none;
  cursor: pointer;
}

.hajj-umrah-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(142, 68, 173, 0.5);
}

/* Why Us Section */
.hajj-umrah-page .why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hajj-umrah-page .why-us h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.hajj-umrah-page .reasons-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hajj-umrah-page .reasons-list li {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #8e44ad;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

.hajj-umrah-page .reasons-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Testimonials Section */
.hajj-umrah-page .testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #8e44ad 0%, #2c3e50 100%);
  color: white;
}

.hajj-umrah-page .testimonials h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.hajj-umrah-page .testimonials blockquote {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 0 0 2rem 0;
  border-left: 4px solid rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  position: relative;
}

.hajj-umrah-page .testimonials blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* FAQ Section */
.hajj-umrah-page .faq {
  padding: 100px 0;
  background: white;
}

.hajj-umrah-page .faq h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.hajj-umrah-page .faq-item {
  background: #f7fafc;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #8e44ad;
  transition: all 0.3s ease;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.hajj-umrah-page .faq-item:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.hajj-umrah-page .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.hajj-umrah-page .faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* Utility Classes */
.hajj-umrah-page .section {
  position: relative;
}

.hajj-umrah-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hajj-umrah-page .text-center {
  text-align: center;
}

.hajj-umrah-page .mt-4 {
  margin-top: 4rem;
}

.hajj-umrah-page .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hajj-umrah-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .hajj-umrah-page .hero p {
    font-size: 1.1rem;
  }
  
  .hajj-umrah-page .package-grid {
    grid-template-columns: 1fr;
  }
  
  .hajj-umrah-page .package-card {
    padding: 2rem 1.5rem;
  }
  
  .hajj-umrah-page .reasons-list {
    grid-template-columns: 1fr;
  }
  
  .hajj-umrah-page .reasons-list li {
    padding: 2rem 1.5rem;
  }
  
  .hajj-umrah-page .testimonials blockquote {
    padding: 2rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .hajj-umrah-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hajj-umrah-page .hero {
    padding: 80px 0 60px;
  }
  
  .hajj-umrah-page .hero h1 {
    font-size: 2rem;
  }
  
  .hajj-umrah-page .packages,
  .hajj-umrah-page .why-us,
  .hajj-umrah-page .testimonials,
  .hajj-umrah-page .faq {
    padding: 60px 0;
  }
  
  .hajj-umrah-page .packages h2,
  .hajj-umrah-page .why-us h2,
  .hajj-umrah-page .testimonials h2,
  .hajj-umrah-page .faq h2 {
    font-size: 2rem;
  }
  
  .hajj-umrah-page .package-card {
    padding: 1.5rem 1rem;
  }
  
  .hajj-umrah-page .package-card h3 {
    font-size: 1.4rem;
  }
  
  .hajj-umrah-page .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .hajj-umrah-page .testimonials blockquote {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}
/* ===== VISAS PAGE STYLES ===== */

.visas-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Visas Hero Section */
.visas-page .hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.visas-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="visa" patternUnits="userSpaceOnUse" width="80" height="80"><rect x="20" y="20" width="40" height="25" rx="3" fill="rgba(255,255,255,0.1)" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="30" cy="32" r="3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23visa)"/></svg>');
  opacity: 0.3;
}

.visas-page .hero .container {
  position: relative;
  z-index: 2;
}

.visas-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.visas-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Visa Types Section */
.visas-page .visa-types {
  padding: 100px 0;
  background: #fafbfc;
}

.visas-page .visa-types h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.visas-page .visa-types h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.visas-page .visa-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.visas-page .visa-list li {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #3498db;
  font-size: 1.1rem;
  color: #4a5568;
  position: relative;
  overflow: hidden;
}

.visas-page .visa-list li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
  border-radius: 0 20px 0 60px;
}

.visas-page .visa-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-left-color: #2980b9;
}

.visas-page .visa-list li strong {
  color: #3498db;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.visas-page .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
  border: none;
  cursor: pointer;
}

.visas-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5);
}

/* Why Us Section */
.visas-page .why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.visas-page .why-us h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.visas-page .reasons-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.visas-page .reasons-list li {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

.visas-page .reasons-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Lead Form Section */
.visas-page .lead-form {
  padding: 100px 0;
  background: white;
}

.visas-page .lead-form h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.visas-page .visa-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.visas-page .visa-form label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.visas-page .visa-form label:first-child {
  margin-top: 0;
}

.visas-page .visa-form input,
.visas-page .visa-form select,
.visas-page .visa-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.visas-page .visa-form input:focus,
.visas-page .visa-form select:focus,
.visas-page .visa-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.visas-page .visa-form textarea {
  resize: vertical;
  min-height: 100px;
}

.visas-page .visa-form button {
  margin-top: 2rem;
  width: 100%;
  max-width: 250px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.visas-page .faq {
  padding: 100px 0;
  background: #fafbfc;
}

.visas-page .faq h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.visas-page .faq-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.visas-page .faq-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.visas-page .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.visas-page .faq-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* Utility Classes */
.visas-page .section {
  position: relative;
}

.visas-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.visas-page .text-center {
  text-align: center;
}

.visas-page .mt-3 {
  margin-top: 3rem;
}

.visas-page .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .visas-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .visas-page .hero p {
    font-size: 1.1rem;
  }
  
  .visas-page .visa-list {
    grid-template-columns: 1fr;
  }
  
  .visas-page .visa-list li {
    padding: 2rem 1.5rem;
  }
  
  .visas-page .reasons-list {
    grid-template-columns: 1fr;
  }
  
  .visas-page .reasons-list li {
    padding: 2rem 1.5rem;
  }
  
  .visas-page .visa-form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .visas-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .visas-page .hero {
    padding: 80px 0 60px;
  }
  
  .visas-page .hero h1 {
    font-size: 2rem;
  }
  
  .visas-page .visa-types,
  .visas-page .why-us,
  .visas-page .lead-form,
  .visas-page .faq {
    padding: 60px 0;
  }
  
  .visas-page .visa-types h2,
  .visas-page .why-us h2,
  .visas-page .lead-form h2,
  .visas-page .faq h2 {
    font-size: 2rem;
  }
  
  .visas-page .visa-list li {
    padding: 1.5rem 1rem;
  }
  
  .visas-page .visa-form {
    padding: 1.5rem 1rem;
  }
  
  .visas-page .visa-form input,
  .visas-page .visa-form select,
  .visas-page .visa-form textarea {
    padding: 12px 15px;
  }
  
  .visas-page .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
/* ===== SERVICES PAGE STYLES ===== */

.services-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Services Hero Section */
.services-page .hero {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.services-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="4" fill="rgba(255,255,255,0.08)"/><circle cx="45" cy="45" r="4" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23services)"/></svg>');
  opacity: 0.4;
}

.services-page .hero .container {
  position: relative;
  z-index: 2;
}

.services-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.services-page .hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Service List Section */
.services-page .service-list {
  padding: 100px 0;
  background: #fafbfc;
}

.services-page .service-list h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.services-page .service-list h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  border-radius: 2px;
}

.services-page .grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-page .service-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-page .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
}

.services-page .service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.05) 0%, transparent 70%);
  transition: all 0.3s ease;
  transform: scale(0);
}

.services-page .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.services-page .service-card:hover::after {
  transform: scale(1);
}

.services-page .service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-page .service-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.services-page .service-card a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.services-page .service-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  transition: width 0.3s ease;
}

.services-page .service-card a:hover {
  color: #e67e22;
}

.services-page .service-card a:hover::after {
  width: 100%;
}

/* CTA Section */
.services-page .cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-page .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

.services-page .cta .container {
  position: relative;
  z-index: 2;
}

.services-page .cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.services-page .cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.services-page .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.services-page .btn-primary::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 ease;
}

.services-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.5);
  border-color: rgba(255,255,255,0.3);
}

.services-page .btn-primary:hover::before {
  left: 100%;
}

/* Utility Classes */
.services-page .section {
  position: relative;
}

.services-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-page .text-center {
  text-align: center;
}

.services-page .bg-light {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-page .hero h1 {
    font-size: 2.5rem;
  }
  
  .services-page .hero p {
    font-size: 1.1rem;
  }
  
  .services-page .grid-services {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-page .service-card {
    padding: 2.5rem 2rem;
  }
  
  .services-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .services-page .hero {
    padding: 80px 0 60px;
  }
  
  .services-page .hero h1 {
    font-size: 2rem;
  }
  
  .services-page .service-list,
  .services-page .cta {
    padding: 60px 0;
  }
  
  .services-page .service-list h2,
  .services-page .cta h2 {
    font-size: 2rem;
  }
  
  .services-page .service-card {
    padding: 2rem 1.5rem;
  }
  
  .services-page .service-card h3 {
    font-size: 1.4rem;
  }
  
  .services-page .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .services-page .cta p {
    font-size: 1.1rem;
  }
}
/* ===== PAYMENT SECTION IN FOOTER ===== */

.payment-section {
  text-align: center;
}

.payment-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.payment-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-logo {
  transition: all 0.3s ease;
  opacity: 0.8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-logo:hover {
  opacity: 1;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Payment Logos */
@media (max-width: 768px) {
  .payment-logos {
    gap: 10px;
  }
  
  .payment-logo {
    width: 35px;
    height: 21px;
  }
}

@media (max-width: 480px) {
  .payment-logos {
    gap: 8px;
  }
  
  .payment-logo {
    width: 32px;
    height: 19px;
  }
}