/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #dc2626;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text {
    background: #dc2626;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-number {
    font-weight: 600;
    color: #dc2626;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc2626;
}

.admin-link {
    background: #dc2626;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.admin-link:hover {
    background: #b91c1c;
    color: white !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-text {
    text-align: left;
}

.hero-text-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
}

/* Hero text styling */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}



.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}


/* Booking Form */
.booking-form {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    overflow: hidden;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-tabs {
    display: flex;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    background: #dc2626;
    color: white;
    border-bottom-color: #dc2626;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: #dc2626;
}

.tab-btn.active:hover {
    background: #b91c1c;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.tab-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #dc2626;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.tab-btn.active .tab-arrow {
    display: block;
}

/* Trip Type Selection */
.trip-type-selection {
    display: flex;
    margin: 20px 30px;
    gap: 0;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.trip-type-btn {
    background: white;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
}

.trip-type-btn.active {
    background: #dc2626;
    color: white;
}

.trip-type-btn:hover {
    background: #f1f5f9;
    color: #dc2626;
}

.trip-type-btn.active:hover {
    background: #b91c1c;
}

/* Form Content */
.form-content {
    padding: 0 30px 30px 30px;
}

.location-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: end;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 2;
    pointer-events: none;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: #dc2626;
}

.location-input {
    padding-right: 45px;
}

.date-input,
.time-input {
    padding-right: 45px;
}

.swap-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-btn:hover {
    background: #dc2626;
    color: white;
}

.date-time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.search-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: #b91c1c;
}

/* Promotional Section */
.promotional-section {
    padding: 80px 0;
    background: #ffffff;
}

.promotional-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promo-banner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 200px;
}

.promo-banner:nth-child(1) .banner-image {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image fails to load */
    background-color: #dc2626;
}

.promo-banner:nth-child(2) .banner-image {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image fails to load */
    background-color: #dc2626;
}

.promo-banner:nth-child(3) .banner-image {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%),
        url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image fails to load */
    background-color: #dc2626;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25);
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8) 0%, rgba(185, 28, 28, 0.8) 100%);
    z-index: 1;
}

.promo-banner:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-banner:hover .promo-icon {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.promo-icon i {
    font-size: 2rem;
    color: white;
}

.icon-text {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.promo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.promo-text p {
    font-size: 1rem;
    opacity: 0.95;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.promo-banner:hover .promo-text h3 {
    transform: translateY(-2px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.promo-banner:hover .promo-text p {
    opacity: 1;
    transform: translateY(-2px);
}

/* Features Highlight Section */
.features-highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-item {
    text-align: center;
    padding: 20px;
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease;
}

.feature-icon-circle:hover {
    transform: scale(1.1);
}

.feature-icon-circle i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

.sparkles {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
}

.sparkles i {
    position: absolute;
    font-size: 0.8rem;
    color: #fbbf24;
    animation: sparkle 2s infinite;
}

.sparkles i:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.sparkles i:nth-child(2) {
    top: 10px;
    right: 0;
    animation-delay: 0.5s;
}

.sparkles i:nth-child(3) {
    bottom: 0;
    left: 10px;
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
}

.service-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #b91c1c;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #dc2626, #ef4444, #f97316, #dc2626) 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 25%, #f97316 50%, #ef4444 75%, #dc2626 100%);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(90deg, #dc2626 0%, #ef4444 25%, #f97316 50%, #ef4444 75%, #dc2626 100%);
    }

    50% {
        background: linear-gradient(90deg, #f97316 0%, #dc2626 25%, #ef4444 50%, #dc2626 75%, #f97316 100%);
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section:hover::before {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.footer-section h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    }

    to {
        text-shadow: 0 0 40px rgba(220, 38, 38, 0.8), 0 0 60px rgba(239, 68, 68, 0.3);
    }
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-section h4 {
    font-size: 1rem;
    color: #f8fafc;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 1px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li {
    position: relative;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: #dc2626;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-section ul li:hover {
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.8), rgba(75, 85, 99, 0.6));
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.social-links a::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.6s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444, #f97316);
    border-color: #dc2626;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.6);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: #dc2626;
    transform: translateX(5px);
}

.contact-info i {
    color: #dc2626;
    margin-right: 12px;
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    padding: 25px 0;
    text-align: center;
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f97316);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        gap: 30px;
    }

    .footer-section {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 25px;
    }

    .footer-section {
        flex: 1 1 calc(50% - 25px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        flex: none;
        width: 100%;
    }

    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li::before {
        display: none;
    }

    .footer-section ul li:hover {
        padding-left: 0;
        transform: none;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 1.6rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text h3 {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid #dc2626;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member .role {
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    color: #64748b;
    line-height: 1.6;
}

/* Careers Page Styles */
.careers-content {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.culture-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-text h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.culture-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.culture-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.culture-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.culture-point i {
    color: #dc2626;
    font-size: 1.2rem;
}

.culture-point span {
    color: #374151;
    font-weight: 500;
}

.culture-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.positions-section {
    padding: 80px 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.position-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.position-header h3 {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 600;
}

.position-type {
    background: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.position-details p {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-details i {
    color: #dc2626;
    width: 16px;
}

.position-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.skill-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.apply-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.apply-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    background: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section {
    background: white;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.submit-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.contact-info-section {
    background: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #dc2626;
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 600;
}

.method-content p {
    color: #64748b;
    margin-bottom: 10px;
}

.method-content a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content address {
    color: #64748b;
    font-style: normal;
    line-height: 1.6;
}

.social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.social-section h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 25px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
}

.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc2626;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.faq-question i {
    color: #dc2626;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.6;
}

.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Page Styles */
.blog-content {
    background: white;
    padding: 80px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.category {
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.date {
    color: #64748b;
    font-size: 0.9rem;
}

.featured-content h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
}

.author-title {
    font-size: 0.9rem;
    color: #64748b;
}

.read-more-btn {
    background: #dc2626;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.blog-categories {
    margin-bottom: 60px;
}

.blog-categories h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #dc2626;
    background: #dc2626;
    color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.article-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.read-time {
    color: #64748b;
    font-size: 0.9rem;
}

.article-content h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.article-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.newsletter-section {
    padding: 80px 0;
    background: #ffffff;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content {
    background: linear-gradient(135deg, #dc2626 0%, #dc2626 40%, #64748b 40%, #94a3b8 100%);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc2626 0%, #dc2626 40%, #64748b 40%, #94a3b8 100%);
    border-radius: 20px;
    z-index: 1;
}

.newsletter-text {
    flex: 1;
    z-index: 2;
    position: relative;
}

.newsletter-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
}

.newsletter-title .title-line {
    display: block;
}

.newsletter-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-container {
    flex: 0 0 400px;
    z-index: 2;
    position: relative;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newsletter-button {
    width: 100%;
    padding: 16px 20px;
    background: white;
    color: #dc2626;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-button i {
    color: #dc2626;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Help Center Styles */
.help-content {
    background: white;
    padding: 80px 0;
}

.search-section {
    margin-bottom: 60px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.search-box input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.search-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #b91c1c;
}

.help-categories {
    margin-bottom: 80px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.category-link:hover {
    text-decoration: underline;
}

.faq-categories {
    margin-bottom: 80px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.faq-items {
    display: grid;
    gap: 20px;
}

.support-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-text h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.support-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.support-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.support-method h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 600;
}

.support-method p {
    color: #64748b;
    margin: 0;
}

.support-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-form h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Terms & Privacy Styles */
.terms-content,
.privacy-content,
.refund-content {
    background: white;
    padding: 80px 0;
}

.terms-wrapper,
.privacy-wrapper,
.refund-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-sidebar,
.privacy-sidebar,
.refund-sidebar {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.terms-sidebar h3,
.privacy-sidebar h3,
.refund-sidebar h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 600;
}

.terms-nav,
.privacy-nav,
.refund-nav {
    list-style: none;
    padding: 0;
}

.terms-nav li,
.privacy-nav li,
.refund-nav li {
    margin-bottom: 15px;
}

.terms-nav a,
.privacy-nav a,
.refund-nav a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.terms-nav a:hover,
.privacy-nav a:hover,
.refund-nav a:hover {
    color: #dc2626;
    border-left-color: #dc2626;
}

.terms-main,
.privacy-main,
.refund-main {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-intro,
.privacy-intro,
.refund-intro {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #dc2626;
}

.terms-section,
.privacy-section,
.refund-section {
    margin-bottom: 50px;
}

.terms-section h2,
.privacy-section h2,
.refund-section h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-section h3,
.privacy-section h3,
.refund-section h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-section p,
.privacy-section p,
.refund-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul,
.privacy-section ul,
.refund-section ul {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section li,
.privacy-section li,
.refund-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.terms-footer,
.privacy-footer,
.refund-footer {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: 600;
}

.refund-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.refund-table th,
.refund-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.refund-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.refund-table td {
    color: #64748b;
}

.issue-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.issue-category {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #dc2626;
}

.issue-category h4 {
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.issue-category ul {
    margin-bottom: 15px;
}

.issue-category p {
    font-weight: 500;
    color: #dc2626;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 10px;
}

.timeline-time {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-support {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.contact-support h3 {
    color: #dc2626;
    margin-bottom: 15px;
}

.summary-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #dc2626;
}

.summary-box h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .terms-wrapper,
    .privacy-wrapper,
    .refund-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .terms-wrapper,
    .privacy-wrapper,
    .refund-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .terms-sidebar,
    .privacy-sidebar,
    .refund-sidebar {
        position: static;
        order: 2;
    }

    .terms-main,
    .privacy-main,
    .refund-main {
        order: 1;
    }

    .contact-grid,
    .culture-content,
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .newsletter-title {
        font-size: 2.5rem;
    }

    .newsletter-form-container {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        justify-content: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Google Places Autocomplete Styling */
.pac-container {
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid #dc2626 !important;
    margin-top: 5px !important;
}

.pac-item {
    padding: 12px 15px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}

.pac-item:hover {
    background-color: #fef2f2 !important;
}

.pac-item-selected {
    background-color: #dc2626 !important;
    color: white !important;
}

.pac-matched {
    font-weight: 600 !important;
    color: #dc2626 !important;
}

.pac-item-selected .pac-matched {
    color: white !important;
}

.pac-icon {
    margin-right: 10px !important;
}

/* Custom suggestion dropdown styling */
.suggestion-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #dc2626;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #fef2f2;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-container {
        min-height: 80vh;
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-main-content {
        order: 2;
    }

    .hero-text-right {
        order: 1;
        text-align: center;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .booking-form {
        margin: 20px auto;
        max-width: 450px;
    }

    .form-tabs {
        flex-direction: column;
    }

    .tab-btn {
        padding: 15px 20px;
        flex-direction: row;
        gap: 10px;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    .tab-btn span {
        font-size: 1rem;
    }

    .trip-type-selection {
        margin: 15px 20px;
    }

    .form-content {
        padding: 0 20px 20px 20px;
    }

    .location-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .date-time-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .promotional-banners {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-banner {
        height: 180px;
    }

    .promo-text h3 {
        font-size: 1.3rem;
    }

    .promo-text p {
        font-size: 0.9rem;
    }

    .highlight-title {
        font-size: 1.5rem;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-icon-circle {
        width: 80px;
        height: 80px;
    }

    .feature-icon-circle i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-container {
        min-height: 70vh;
        padding: 0 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-main-content {
        order: 2;
    }

    .hero-text-right {
        order: 1;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .booking-form {
        margin: 15px auto;
        max-width: 350px;
    }

    .form-content {
        padding: 0 15px 15px 15px;
    }

    .trip-type-selection {
        margin: 10px 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .promotional-section {
        padding: 40px 0;
    }

    .promotional-banners {
        margin-bottom: 40px;
    }

    .promo-banner {
        height: 160px;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .promo-icon i {
        font-size: 1.5rem;
    }

    .promo-text h3 {
        font-size: 1.1rem;
    }

    .promo-text p {
        font-size: 0.8rem;
    }

    .features-highlight {
        padding: 30px 20px;
    }

    .highlight-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }

    .feature-icon-circle i {
        font-size: 1.8rem;
    }

    .feature-card-item p {
        font-size: 1rem;
    }

}