/* ========================================
   MAIN LANDING PAGE STYLES
   Golden Hall - Wedding Venue Booking
   ======================================== */

/*
    Color Palette:
    - Rose/Pink: #f43f5e, #ec4899, #f472b6
    - Purple: #a855f7
    - Gray: #1f2937, #6b7280, #f3f4f6
*/

/* 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;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* SVG Defaults */
svg {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #f43f5e;
    fill: currentColor;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f43f5e;
}

.navbar-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    padding: 0.625rem 1.5rem;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #f43f5e;
}

.btn-register {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to right, #f43f5e, #ec4899);
    color: white;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-register:hover {
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    height: 24px;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #f3f4f6;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

@media (max-width: 768px) {
    .navbar-menu.desktop,
    .navbar-auth.desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    min-height: calc(100vh + 80px);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(159, 18, 57, 0.6), rgba(190, 24, 93, 0.5), rgba(147, 51, 234, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(to right, #fda4af, #fbcfe8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #f43f5e, #ec4899);
    color: white;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.3);
    transform: scale(1.05);
}

.btn-cta .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(0.25rem);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

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

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to top, white, transparent);
    z-index: 20;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* ========================================
   SEARCH PREVIEW SECTION
   ======================================== */

.search-preview-section {
    position: relative;
    z-index: 30;
    margin-top: -80px;
    padding: 0 1rem 3rem;
}

.search-container {
    max-width: 80rem;
    margin: 0 auto;
}

.search-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid #f3f4f6;
}

.search-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .search-title {
        text-align: left;
    }
}

.search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-form {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-field:hover {
    background: #fce7f3;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.search-icon.calendar {
    background: #fee2e2;
    color: #f43f5e;
}

.search-icon.users {
    background: #fce7f3;
    color: #ec4899;
}

.search-icon.budget {
    background: #f3e8ff;
    color: #a855f7;
}

.search-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.search-input-wrapper {
    flex: 1;
    min-width: 0;
}

.search-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 500;
}

.search-field input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #1f2937;
    width: 100%;
    font-weight: 500;
}

.search-field input::placeholder {
    color: #9ca3af;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to right, #f43f5e, #ec4899);
    color: white;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    box-shadow: 0 15px 35px rgba(244, 63, 94, 0.2);
    transform: translateY(-2px);
}

.btn-search svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

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

@media (max-width: 639px) {
    .search-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .search-card {
        padding: 1.25rem;
    }
}

/* ========================================
   FEATURED VENUES SECTION
   ======================================== */

.featured-venues-section {
    background: linear-gradient(to bottom, white, #fff7ed);
    padding: 5rem 1rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fee2e2;
    color: #f43f5e;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge.badge-purple {
    background: #f3e8ff;
    color: #a855f7;
}

.section-badge.badge-green {
    background: #dcfce7;
    color: #16a34a;
}

.section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.venue-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.venue-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.price-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f43f5e;
    font-family: Georgia, serif;
}

.venue-content {
    padding: 1.5rem;
}

.venue-name {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.venue-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
    color: #f43f5e;
    stroke-width: 2;
    flex-shrink: 0;
}

.btn-view-details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fce7f3;
    color: #f43f5e;
    border-radius: 1.125rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: linear-gradient(to right, #f43f5e, #ec4899);
    color: white;
}

.btn-view-details svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn-view-details:hover svg {
    transform: translateX(0.25rem);
}

/* View All Button */
.view-all-container {
    text-align: center;
}

.btn-view-all {
    padding: 1rem 2rem;
    border: 2px solid #f43f5e;
    color: #f43f5e;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #f43f5e;
    color: white;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    background: white;
    padding: 5rem 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: #fce7f3;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:nth-child(2) {
    background: #fce7f3;
}

.step-card:nth-child(3) {
    background: #f3e8ff;
}

.step-card:hover {
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.15);
}

/* Connector Lines */
@media (min-width: 768px) {
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -80px;
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, #fda4af, #fbcfe8);
        transform: translateY(-50%);
    }

    .step-card:nth-child(3)::after {
        display: none;
    }
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(244, 63, 94, 0.2);
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    letter-spacing: -0.02em;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon.rose {
    background: #fda4af;
    color: white;
}

.step-icon.pink {
    background: #f472b6;
    color: white;
}

.step-icon.purple {
    background: #c084fc;
    color: white;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.step-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Container */
.cta-container {
    text-align: center;
    padding-top: 2rem;
}

/* ========================================
   SECURITY & TRUST SECTION
   ======================================== */

.security-section {
    background: linear-gradient(to bottom, #fff7ed, white);
    padding: 5rem 1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.security-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.security-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #fda4af;
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fee2e2, #fce7f3);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: #f43f5e;
}

.security-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 2;
}

.security-title {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.security-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    color: #9ca3af;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(to bottom right, #f9fafb, #fce7f3);
    border-top: 1px solid #f3f4f6;
    padding: 4rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 32px;
    height: 32px;
    color: #f43f5e;
    fill: currentColor;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #fee2e2;
    color: #f43f5e;
}

.social-link.instagram {
    background: #fce7f3;
    color: #ec4899;
}

.social-link.twitter {
    background: #dbeafe;
    color: #3b82f6;
}

.social-link.linkedin {
    background: #f3e8ff;
    color: #a855f7;
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
}

.social-link.facebook:hover {
    background: #f43f5e;
}

.social-link.instagram:hover {
    background: #ec4899;
}

.social-link.twitter:hover {
    background: #3b82f6;
}

.social-link.linkedin:hover {
    background: #a855f7;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #6b7280;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f43f5e;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: #f43f5e;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2;
}

.btn-contact {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #f43f5e, #ec4899);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
        justify-content: flex-start;
    }
}

.heart-icon {
    width: 1rem;
    height: 1rem;
    color: #f43f5e;
    fill: currentColor;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-meta {
        justify-content: flex-end;
    }
}

.footer-meta a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-meta a:hover {
    color: #f43f5e;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 640px) {
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .venues-grid {
        gap: 1.5rem;
    }

    .steps-grid {
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .security-grid {
        gap: 1rem;
    }

    .trust-badges {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #fff, #fff7fb);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    max-width: 64rem;
}

.about-sub {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.75rem;
    color: #374151;
}

.about-features li {
    font-size: 0.975rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
    .about-image { height: 420px; }
}

/* ========================================
   UTILITIES
   ======================================== */

.desktop {
    display: flex;
}

.hidden {
    display: none !important;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Remove browser's default pink rectangle and provide an accessible, theme-matching focus ring */
a:focus,
button:focus,
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-login:focus,
.btn-register:focus,
.btn-view-details:focus,
.btn-view-all:focus,
.mobile-menu-btn:focus,
.social-link:focus,
.search-field:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
    border-radius: 8px;
}

/* Remove tap highlight on mobile to avoid colored rectangles on touch */
*:not(input):not(textarea) {
    -webkit-tap-highlight-color: transparent;
}

/* Remove visible borders/rectangles for anchors when clicked/tapped (mouse/touch),
   but keep an accessible ring for keyboard users via :focus-visible. */
a,
a:active,
a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none !important;
}

a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
    border-radius: 8px;
}

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    body {
        background: white;
    }
}
