:root {
    --primary: #0a2540;
    --secondary: #ffffff;
    --accent: #ff6b6b;
    --accent-hover: #ff5252;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Hero Animations (On Load) */
.animate-load {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-text {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
}

.badge.best-seller {
    background-color: #ffc107;
    /* Gold/Yellow for Best Seller */
    color: #333;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    padding: 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--accent);
}

.full-width {
    width: 100%;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    /* Logo original colors preserved */
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: white;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .nav-links .btn-primary {
    color: white;
}


/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: -100px;
    /* To account for navbar */
    padding-top: 100px;
    background-color: var(--primary);
    /* Fallback only */
    overflow: hidden;
    /* Ensure no spill */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Base layer */
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.6));
    z-index: 1;
    /* On top of image */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* On top of overlay */
    max-width: 800px;
    text-align: left;
    margin-right: auto;
}

.hero-content h1,
.hero-content p {
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Reunion Section */
.reunion-section {
    padding: 80px 0;
    background-color: white;
}

.reunion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reunion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary);
    line-height: 1.2;
}

.reunion-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.reunion-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-feature ion-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.r-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.reunion-image {
    position: relative;
}

.reunion-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.reunion-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .reunion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reunion-grid .reunion-image {
        order: -1;
    }

    .reunion-content h2 {
        font-size: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.reviews-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.google-summary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.google-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #5f6368;
}

.google-logo span:nth-child(1) {
    color: #4285F4;
}

.google-logo span:nth-child(2) {
    color: #EA4335;
}

.google-logo span:nth-child(3) {
    color: #FBBC05;
}

.google-logo span:nth-child(4) {
    color: #4285F4;
}

.google-logo span:nth-child(5) {
    color: #34A853;
}

.google-logo span:nth-child(6) {
    color: #EA4335;
}

.rating-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns as requested */
    gap: 30px;
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
    /* Removed min-width, scroll-snap, flex from carousel */
    /* Fixed width for carousel items removed */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    /* Limit lines if needed, but carousel handles height well */
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg-white);
    margin-top: 0;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

/* Destinations */
.destinations {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

.card-content p {
    flex: 1;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.card-link ion-icon {
    transition: transform 0.3s ease;
}

.card-link:hover ion-icon {
    transform: translateX(4px);
}

/* About Section */
/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-images {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        order: -1;
        width: 100%;
    }
}

/* YouTube Section */
.youtube-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.youtube-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.youtube-header ion-icon {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 10px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.video-link:hover .video-wrapper img {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-link:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    color: #FF0000;
    opacity: 1;
}



.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    color: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.info-item ion-icon {
    font-size: 24px;
    color: var(--accent);
    margin-top: 4px;
}

.info-item h4 {
    color: white;
    margin-bottom: 4px;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
}

.info-item a:hover {
    color: var(--accent);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

/* Footer */
/* Footer - Original Replication */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    align-items: start;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 8px;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    padding: 0;
    /* Reset padding-left from generic a:hover */
}

.footer-form {
    display: flex;
    margin-top: 16px;
}

.footer-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.footer-form button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 0 16px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.partners-strip {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.partners-strip img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
    filter: brightness(0) invert(1);
    /* Make them white to match dark footer like original typically does */
}

.partners-strip img:hover {
    opacity: 1;
    filter: none;
    /* Show original color on hover */
}

.copyright-row {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3 {
        display: block;
        /* Center border */
        border-bottom: none;
        text-decoration: underline;
        text-decoration-color: var(--accent);
        text-underline-offset: 8px;
    }

    .footer-form {
        max-width: 400px;
        margin: 16px auto;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        /* Mobile Menu Background */
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        /* Ensure text is visible on white background */
        font-size: 1.25rem;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--primary);
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    /* Light blueish gray */
    text-align: center;
}

.process-header {
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 20px;
}

/* Connecting line for desktop */
.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    /* Adjusted for padding */
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
    display: none;
}

@media (min-width: 900px) {
    .process-steps::before {
        display: block;
    }
}

.process-step {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.big-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
    text-decoration: none;
}

.price-highlight {
    color: #28a745;
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Payment Methods Section */


.payment-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 3rem;
    /* Larger icons */
    color: #555;
}

.payment-badges i,
.payment-badges ion-icon,
.payment-badges img {
    transition: var(--transition);
}

.payment-badges ion-icon:hover,
.payment-badges img:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.zelle-text {
    font-family: sans-serif;
    font-weight: 900;
    color: #6d1ed4;
    /* Zelle Purple */
    font-size: 2rem;
    letter-spacing: -1px;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-text {
    padding-right: 20px;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.location-text h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-frame {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e0e0e0;
    /* Placeholder color before map loads */
}

@media (max-width: 900px) {
    .location-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-text {
        padding-right: 0;
    }

    .map-frame {
        height: 300px;
    }
}

/* Trust & Payments Section */
.trust-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-col {
    text-align: center;
    padding: 20px;
}

.trust-col h3 {
    margin-bottom: 24px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.trust-col p {
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Specific styling inherited/adjusted */
.mitur-logo {
    height: 70px;
    width: auto;
    margin: 15px auto;
    display: block;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-col {
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .trust-col:last-child {
        border-bottom: none;
    }
}

/* Language Selector Styles */
.lang-selector-wrapper {
    position: relative;
    list-style: none;
    margin-left: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.lang-toggle:hover {
    background-color: #f0f0f0;
}

.flag-img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    display: none;
    z-index: 1000;
    list-style: none;
    flex-direction: column;
}

.lang-selector-wrapper:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown li {
    width: 100%;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background-color: #f8f9fa;
    color: var(--primary);
}

/* Hide Google Translate Toolbar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

#google_translate_element {
    /* Don't use display: none; it might prevent initialization */
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}