/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #d4282e;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --accent-gold: #f4a261;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.plan-trip-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.plan-trip-btn:hover {
    background: #b81f24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 40, 46, 0.3);
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 1000px;
    padding-left: 10rem;
    padding-top: 8rem;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 90px;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
}

.hero-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #b81f24;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 40, 46, 0.4);
}

/* Page Hero */
.page-hero {
    height: 60vh;
}

.page-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 70px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-align: left;
}

.page-hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: left;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 100px 0;
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--text-light);
}

.light-bg {
    background: var(--light-bg);
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.section-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.section-btn:hover {
    background: #b81f24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 40, 46, 0.3);
}

/* Split Content Layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.content-left {
    padding: 20px 0;
}

.content-right {
    position: relative;
}

.section-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.social-section {
    padding: 80px 0;
    background: #fff;
}

.social-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.map-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-image {
    width: 100%;
    height: auto;
}

/* ===================================
   EXPLORE SECTION
   =================================== */
.explore-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.explore-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.explore-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-10px);
}

.explore-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.explore-content {
    padding: 25px;
    background: #fff;
}

.explore-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.explore-content p {
    color: #666;
}

/* ===================================
   VISA SECTION
   =================================== */
.visa-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.visa-content {
    text-align: center;
    margin-bottom: 50px;
}

.visa-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.visa-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
}

.visa-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-item {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
}

.info-item h3 {
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===================================
   INSPIRATION SECTION
   =================================== */
.inspiration-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inspiration-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.inspiration-item.large {
    grid-column: span 2;
}

.inspiration-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-cta {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inspiration-cta h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin-bottom: 15px;
}

.subscribe-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
}

/* ===================================
   DESTINATIONS PAGE
   =================================== */
.destinations-section {
    padding: 60rem 0;
    min-height: 100vh;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    background: transparent;
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 25px;
    font-size: 16px;
}

.toggle-btn.active {
    background: var(--dark-bg);
    color: var(--text-light);
}

.close-btn {
    background: transparent;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: var(--text-light);
}

.destination-overlay h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 1px;
}

/* ===================================
   AMERICA 250 PAGE
   =================================== */
.america250-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.america250-intro h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.celebration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.celebration-card {
    text-align: center;
}

.celebration-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.celebration-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.explore-america-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.explore-america-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}

.explore-america-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-america-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    color: var(--text-light);
}

.explore-america-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    margin-bottom: 10px;
}

.milestone-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.milestone-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.milestone-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.milestone-content {
    padding: 30px;
}

.milestone-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.trip-planner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--text-light);
    text-align: center;
}

.trip-planner-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 20px;
}

.planner-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.planner-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.planner-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* ===================================
   ROAD TRIPS PAGE
   =================================== */
.roadtrip-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.roadtrip-intro h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    margin-bottom: 25px;
}

.roadtrip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.roadtrip-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.roadtrip-card:hover {
    transform: translateY(-10px);
}

.roadtrip-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.roadtrip-content {
    padding: 30px;
}

.roadtrip-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    margin-bottom: 15px;
}

.roadtrip-details {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.roadtrip-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    margin-top: 15px;
}

.byways-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.byway-card {
    text-align: center;
}

.byway-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.byway-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    margin-bottom: 10px;
}

.byway-card p {
    font-size: 14px;
    color: #666;
}

.regional-grid {
    display: grid;
    gap: 40px;
}

.regional-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.regional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regional-content {
    padding: 40px;
}

.regional-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin-bottom: 20px;
}

.regional-content ul {
    list-style: none;
    margin: 20px 0;
}

.regional-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.regional-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.tips-section {
    padding: 80px 0;
    background: #fff;
}

.tips-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 15px;
}

/* ===================================
   MAJOR EVENTS PAGE
   =================================== */
.events-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.events-intro h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    margin-bottom: 25px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 25px;
}

.event-date {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 10px;
}

.event-location {
    display: block;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.sporting-grid {
    display: grid;
    gap: 40px;
}

.sport-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-content {
    padding: 40px;
}

.sport-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin-bottom: 20px;
}

.sport-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.festival-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.festival-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.festival-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    padding: 20px 15px 10px;
}

.festival-card p {
    padding: 0 15px;
    font-size: 14px;
}

.festival-date {
    display: block;
    padding: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.find-event-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.find-event-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 40px;
}

.event-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
}

.filter-btn:hover {
    background: var(--dark-bg);
    color: var(--text-light);
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    margin-bottom: 5px;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--secondary-color);
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #b81f24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 40, 46, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-map {
    padding: 80px 0;
    background: var(--light-bg);
}

.location-map h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
}

.map-placeholder {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.location-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .visa-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-right {
        display: none;
    }

    .hero-title {
        font-size: 60px;
    }

    .page-hero-title {
        font-size: 50px;
    }

    .split-content,
    .split-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .celebration-grid,
    .roadtrip-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regional-card,
    .sport-card {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .byways-grid,
    .festival-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .social-grid,
    .explore-grid,
    .destinations-grid,
    .celebration-grid,
    .roadtrip-grid,
    .events-grid,
    .byways-grid,
    .festival-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .visa-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-item.large {
        grid-column: span 1;
    }

    .hero-buttons,
    .planner-buttons,
    .event-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .explore-america-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 4rem;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .contact-form-container {
        padding: 25px;
    }

     .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
