:root {
    --blue: #002395;
    --red: #ED2939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.lang-switch {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.lang-switch button {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch button:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.lang-switch button.active {
  transform: scale(1.2);
  border-bottom: 2px solid rgb(219, 30, 30);
}


/* Navbar & Hero (unchanged) */
.navbar {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--red);
}

.logo-heading {
    text-decoration: none;
    color: var(--blue)
}

.hero {
    background: linear-gradient(135deg, var(--blue) 33%, #ffffff 33%, #ffffff 67%, var(--red) 67%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.fr-flag {
    width: 290px;
    height: 190px;
    display: flex;
    border: 14px solid white;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    border-radius: 16px;
    overflow: hidden;
}

.fr-flag .blue { background: var(--blue); flex: 1; }
.fr-flag .white { background: #ffffff; flex: 1; }
.fr-flag .red { background: var(--red); flex: 1; }

.text-box {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 3rem 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 520px;
}

.text-box h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.6rem;
    color: #111;
}

.highlight {
    background: linear-gradient(90deg, var(--blue), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-box .subtitle {
    font-size: 1.45rem;
    margin-bottom: 2.8rem;
    color: #222;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(237, 41, 57, 0.4);
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 3.2rem;
    color: var(--blue);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.fact-year {
    font-size: 2.9rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1rem;
}

.fun-section {
    background: #f0f4ff;
}

.fun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.fun-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 1.25rem;
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Location - Small white box around 250,000 */
.location-section {
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.6rem;
}

.highlight-box {
    background: white;
    color: #111;
    padding: 6px 16px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
}

.location-list li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 1.18rem;
}

.bridge-box {
    background: rgba(255,255,255,0.96);
    color: hsl(0, 0%, 7%);
    border-radius: 22px;
    padding: 1.3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    height: 650px;
    width: 450px;
}

.bridge-title {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 4.5rem;
}

.flag-big {
    font-size: 5rem;
    margin: -4rem -6rem;
}

.flag-img {
    width: 380px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 22px;
}

/* Packages */
.packages-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    width: 340px;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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



.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue);
    margin: 1rem 0;
}

.btn-package {
    display: block;
    background: var(--blue);
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* Contact */
.contact-section {
    background: #f8f9ff;
}

.contact-card {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.package-choice {
    margin: 2rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.package-choice label {
    font-weight: 500;
    padding: 12px 0;
    cursor: pointer;
}

.full {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
    background: #e6f7e6;
    border-radius: 20px;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 3rem 0;
}

.footer .logo {
    color: white;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-box {
        padding: 2.5rem 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}