/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: #1E4D2B;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5D6D7E;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.highlight {
    color: #D4AF37;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(30, 77, 43, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo h2 {
    color: #1E4D2B;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: #2C3E50;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .bar {
    background: #1E4D2B;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 77, 43, 0.7), rgba(0, 0, 0, 0.6)),
                url('images/front.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 77, 43, 0.4), rgba(212, 175, 55, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 77, 43, 0.5);
    background: linear-gradient(135deg, #27AE60, #1E4D2B);
    border-color: #D4AF37;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 77, 43, 0.15);
    border-color: #D4AF37;
}

.package-card.popular {
    border: 3px solid #D4AF37;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FAFAFA, #F8F9FA);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.3);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(30, 77, 43, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-content {
    padding: 2rem;
}

.package-name {
    font-size: 1.5rem;
    color: #1E4D2B;
    margin-bottom: 1rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.per-person {
    color: #5D6D7E;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2C3E50;
}

.package-features i {
    color: #27AE60;
    font-size: 0.9rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-btn:hover {
    background: linear-gradient(135deg, #27AE60, #1E4D2B);
    transform: translateY(-2px);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #5D6D7E;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-box {
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-left: 4px solid #D4AF37;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.1);
}

.mission-box h3 {
    color: #1E4D2B;
    margin-bottom: 0.5rem;
}

.mission-box p {
    color: #2C3E50;
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
}

.stat-label {
    color: #5D6D7E;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 77, 43, 0.15);
}

.values {
    margin-top: 4rem;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: #1E4D2B;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(30, 77, 43, 0.08);
}

.value-item:hover {
    background: linear-gradient(135deg, #F8F9FA, #E8F5E8);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 77, 43, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.2);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 77, 43, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #1E4D2B;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5D6D7E;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 77, 43, 0.15);
    border-color: #D4AF37;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
}

.service-icon i {
    font-size: 2rem;
    color: #1E4D2B;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1E4D2B;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5D6D7E;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #1E4D2B;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.testimonials::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(30, 77, 43, 0.1);
    box-shadow: 0 5px 20px rgba(30, 77, 43, 0.08);
    overflow: hidden;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 77, 43, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::after {
    left: 100%;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    box-shadow: 0 15px 40px rgba(30, 77, 43, 0.15);
    transform: translateY(-8px);
    border-color: #D4AF37;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: #D4AF37;
    opacity: 0.3;
    font-family: 'Amiri', serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-info h4 {
    color: #1E4D2B;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-info h4 {
    color: #0F2E1A;
}

.testimonial-location {
    color: #5D6D7E;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.testimonial-location::before {
    content: "📍";
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-location::before {
    transform: scale(1.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    flex-shrink: 0;
}

.testimonial-rating i {
    color: #D4AF37;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

.testimonial-text {
    color: #2C3E50;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    transition: color 0.3s ease;
}

.testimonial-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1E4D2B, #D4AF37);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.testimonial-card:hover .testimonial-text::before {
    width: 5px;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.testimonial-date {
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(30, 77, 43, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.testimonial-card:hover .testimonial-date {
    background: linear-gradient(135deg, #0F2E1A, #1E4D2B);
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.3);
    transform: translateY(-2px);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    padding: 3rem;
    border-radius: 25px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    border: 2px solid rgba(30, 77, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.testimonial-stats::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.stat-box {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #1E4D2B, transparent);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(30, 77, 43, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    color: #B8860B;
    text-shadow: 0 4px 8px rgba(30, 77, 43, 0.2);
}

.stat-box .stat-label {
    color: #2C3E50;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: #1E4D2B;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #D4AF37;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    border: 2px solid rgba(30, 77, 43, 0.05);
}

.contact-form-container h3 {
    color: #1E4D2B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2C3E50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E8F5E8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0A0A0;
    font-style: italic;
}

.error-message {
    color: #E74C3C;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
}

.form-status.success {
    display: block;
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
    border: 2px solid #28A745;
}

.form-status.error {
    display: block;
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
    border: 2px solid #DC3545;
}

.form-status.loading {
    display: block;
    background: linear-gradient(135deg, #D1ECF1, #BEE5EB);
    color: #0C5460;
    border: 2px solid #17A2B8;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #27AE60, #1E4D2B);
    transform: translateY(-2px);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(30, 77, 43, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info > div {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    border: 2px solid rgba(30, 77, 43, 0.05);
}

.contact-info h3 {
    color: #1E4D2B;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #1E4D2B;
}

.contact-text h4 {
    color: #1E4D2B;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #5D6D7E;
    line-height: 1.5;
}

.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5D6D7E;
    border: 2px dashed #D4AF37;
}

.map-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1E4D2B;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E4D2B, #0F2E1A);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #D4AF37;
}

.footer-section p {
    color: #E8F5E8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: #D4AF37;
    color: #1E4D2B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E8F5E8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: #D4AF37;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: #E8F5E8;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #E8F5E8;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(30, 77, 43, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #2C3E50;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.popular {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .stats {
        justify-content: center;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testimonial-rating {
        align-self: flex-start;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-status {
        margin-top: 1rem;
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        margin: 0 10px;
    }

    .contact-form-container,
    .contact-info > div {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .form-status {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Hajj & Umrah Information Section */
.hajj-umrah-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.hajj-umrah-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.hajj-umrah-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.info-content {
    margin-top: 3rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 77, 43, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 77, 43, 0.05), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 77, 43, 0.15);
    border-color: #D4AF37;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 77, 43, 0.2);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 77, 43, 0.3);
}

.info-icon i {
    font-size: 2.5rem;
    color: white;
}

.info-card h3 {
    color: #1E4D2B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: #0F2E1A;
}

.info-card p {
    color: #5D6D7E;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Steps Section */
.steps-section {
    margin-bottom: 4rem;
}

.steps-title {
    text-align: center;
    font-size: 2rem;
    color: #1E4D2B;
    margin-bottom: 3rem;
    position: relative;
}

.steps-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1E4D2B, #D4AF37);
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(30, 77, 43, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E4D2B, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 77, 43, 0.15);
    border-color: #D4AF37;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.8rem;
    color: #1E4D2B;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon i {
    color: white;
}

.step-card h4 {
    color: #1E4D2B;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.step-card:hover h4 {
    color: #0F2E1A;
}

.step-card p {
    color: #5D6D7E;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Assistance Section */
.assistance-section {
    background: linear-gradient(135deg, #E8F5E8, #D5F4D5);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(30, 77, 43, 0.1);
}

.assistance-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.assistance-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.assistance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.assistance-text h3 {
    color: #1E4D2B;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.assistance-text p {
    color: #2C3E50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.assistance-btn {
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(30, 77, 43, 0.3);
    border: 2px solid transparent;
}

.assistance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 77, 43, 0.4);
    background: linear-gradient(135deg, #27AE60, #1E4D2B);
    border-color: #D4AF37;
}

.assistance-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.assistance-visual {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1E4D2B, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(30, 77, 43, 0.3);
    animation: pulse 2s infinite;
}

.assistance-visual i {
    font-size: 3rem;
    color: white;
}

.assistance-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(30, 77, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive Design for Hajj & Umrah Info */
@media (max-width: 768px) {
    .hajj-umrah-info {
        padding: 3rem 0;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .assistance-section {
        padding: 2rem;
    }
    
    .assistance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .assistance-text h3 {
        font-size: 1.75rem;
    }
    
    .assistance-visual {
        width: 100px;
        height: 100px;
    }
    
    .assistance-visual i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .assistance-section {
        padding: 1.5rem;
    }
    
    .assistance-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}