/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: linear-gradient(to right, #059669, #14b8a6);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #059669, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    background: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #059669;
}

.nav-cta {
    background: linear-gradient(to right, #059669, #14b8a6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.3);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #1f2937;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    background: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #059669;
}

.mobile-nav-cta {
    width: 100%;
    background: linear-gradient(to right, #059669, #14b8a6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding-top: 4rem;
    overflow: hidden;
    margin-top: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #0f172a, #064e3b, #134e4a);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    font-size: 0.875rem;
    font-weight: 500;
    color: #a7f3d0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-highlight {
    display: block;
    background: linear-gradient(to right, #6ee7b7, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: linear-gradient(to right, #10b981, #14b8a6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(0.25rem);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.avatar-group {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid white;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: linear-gradient(to bottom right, #10b981, #14b8a6);
}

.avatar-2 {
    background: linear-gradient(to bottom right, #60a5fa, #06b6d4);
}

.avatar-3 {
    background: linear-gradient(to bottom right, #a78bfa, #ec4899);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.stars i {
    font-size: 1.25rem;
}

/* Hero Card */

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.card-content {
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge-active {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: bold;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #6ee7b7, #2dd4bf);
    border-radius: 9999px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #10b981, #14b8a6);
    border-radius: 1rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 2rem;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */

.destinations-section {
    padding: 5rem 1rem;
    background-color: white;
}

.destinations-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fae5;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Destination Hero */

.destination-hero {
    background: linear-gradient(to bottom right, #f0fdf4, #ccfbf1);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .destination-hero {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.destination-content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    background: #10b981;
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item p {
    color: #374151;
    font-size: 1.125rem;
}

.destination-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.destination-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fact-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fact-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #059669;
    margin-bottom: 0.25rem;
}

.fact-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Quest Categories */

.quest-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .quest-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quest-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.quest-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.quest-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 2rem;
}

.quest-icon-1 {
    background: linear-gradient(to right, #f97316, #ec4899);
}

.quest-icon-2 {
    background: linear-gradient(to right, #22c55e, #059669);
}

.quest-icon-3 {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.quest-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.quest-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.quest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
}

.quest-footer i {
    color: #059669;
}

/* Gallery Section */

.gallery-section {
    margin-top: 3rem;
}

.gallery-section h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 16rem;
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.gallery-overlay h4 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #f9fafb, #f0fdf4);
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #10b981, #14b8a6);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.experience-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.features-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.features-checklist i {
    color: #059669;
    font-size: 1.25rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 5rem 1rem;
    background-color: white;
}

.how-it-works-container {
    max-width: 1280px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 6rem;
        left: 0;
        right: 0;
        height: 0.25rem;
        background: linear-gradient(to right, #10b981, #14b8a6, #06b6d4);
        z-index: 0;
    }
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to right, #10b981, #14b8a6);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.step-number {
    font-size: 3.75rem;
    font-weight: bold;
    color: #e0f2fe;
    text-align: center;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6b7280;
    text-align: center;
}

.cta-center {
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #065f46, #134e4a);
    color: white;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: #a7f3d0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: white;
}

.testimonial-author {
    color: white;
}

.author-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #a7f3d0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 5rem 1rem;
    background-color: white;
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .cta-container h2 {
        font-size: 3rem;
    }
}

.cta-container p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-outline {
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #059669;
    color: #059669;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 1rem;
    background-color: #f9fafb;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: #059669;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: #111827;
}

.contact-value {
    color: #6b7280;
}

/* Contact Form */

.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: #10b981;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #0f172a;
    color: white;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #a7f3d0;
}

.footer-col p {
    color: #9ca3af;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-logo .logo-icon {
    background: linear-gradient(to right, #059669, #14b8a6);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .cta-container h2 {
        font-size: 1.875rem;
    }

    .cta-container p {
        font-size: 1rem;
    }
}



















.cards-hand-section {
  padding: 4rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-bottom: 100px;
  margin-top: -100px;
}

.cards-hand {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 600px;
  perspective: 1200px;
  margin: 0 auto;
  max-width: 1300px;
}

/* Increased image card dimensions from 190x270 to 300x420 */
.image-card {
  width: 300px;
  height: 420px;
  border-radius: 18px;
  box-shadow: 0 12px 42px 0 rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Adjusted translateX values for larger card spacing */
.image-card:nth-child(1) {
  transform: rotate(-20deg) translateX(-380px);
  z-index: 1;
}

.image-card:nth-child(2) {
  transform: rotate(-7deg) translateX(-130px);
  z-index: 2;
}

.image-card:nth-child(3) {
  transform: rotate(7deg) translateX(130px);
  z-index: 3;
}

.image-card:nth-child(4) {
  transform: rotate(20deg) translateX(380px);
  z-index: 4;
}

@media (max-width: 1200px) {
  .cards-hand {
    max-width: 100vw;
    height: 400px;
  }

  /* Increased tablet dimensions from 120x170 to 200x280 */
  .image-card {
    width: 200px;
    height: 280px;
  }

  .image-card:nth-child(1) {
    transform: rotate(-15deg) translateX(-200px);
  }
  .image-card:nth-child(2) {
    transform: rotate(-5deg) translateX(-70px);
  }
  .image-card:nth-child(3) {
    transform: rotate(5deg) translateX(70px);
  }
  .image-card:nth-child(4) {
    transform: rotate(15deg) translateX(200px);
  }
}

@media (max-width: 700px) {
  .cards-hand {
    height: 250px;
  }

  /* Increased mobile dimensions from 60x80 to 100x140 */
  .image-card {
    width: 100px;
    height: 140px;
  }

  .image-card:nth-child(1) {
    transform: rotate(-12deg) translateX(-80px);
  }
  .image-card:nth-child(2) {
    transform: rotate(-4deg) translateX(-25px);
  }
  .image-card:nth-child(3) {
    transform: rotate(4deg) translateX(25px);
  }
  .image-card:nth-child(4) {
    transform: rotate(12deg) translateX(80px);
  }
}
