/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Header - Fixed Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff !important;
    /* force solid white */
    backdrop-filter: none !important;
    /* remove the blur effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 9rem;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-weight: 500;
    color: #3b3b3b;
    transition: color 0.3s;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #2e7d32;
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 75px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #3b3b3b;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #3b3b3b;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    color: #2e7d32;
    background-color: #f8fffe;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Section Styling */
section {
    padding: 6rem 1.5rem 4rem 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro Section */
#intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    margin: 0;
    max-width: none;
    padding: 6rem 1.5rem 4rem 1.5rem;
}

#intro .text {
    flex: 1;
    min-width: 280px;
    margin-left: 40px;
}

#intro .text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

#highlight-word {
    color: #2e7d32;
    font-weight: 700;
}

#intro .text p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: #3b3b3b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#intro-button {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

#intro-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

#intro .image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

#intro .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 70px;
}

/* Section 2 */
#section2 h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

#section2 hr {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border: none;
    margin: 0 auto 3rem auto;
    border-radius: 2px;
}

#section2 .content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

#section2 .content .image {
    flex: 1;
    display: flex;
    justify-content: center;
}

#section2 .content .image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#section2 .content .text {
    flex: 1;
    min-width: 280px;
}

#section2 .content .text h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-align: left;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

#section2 .content .text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #3b3b3b;
    margin-bottom: 20px;
    line-height: 1.7;
}

#section2 .content .text .promise-text .icon-t p {
    margin-bottom: 0px;
}

.promise-text {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fffe;
    border-radius: 12px;
    border-left: 4px solid #2e7d32;
}

.promise-text .icon-p img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.promise-text .icon-t p:first-child {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

/* World Map Section */
#world-map {
    background:
        linear-gradient(rgba(234, 255, 254, 0.9), rgba(234, 255, 254, 0.9)),
        url('./images/world-map-banner.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    margin: 0;
    max-width: none;
    padding: 4rem 1.5rem;
}

#world-map h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #2c2c2c;
}

#world-map>p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 3rem;
    color: #3b3b3b;
}

.journey {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 3rem 0;
    position: relative;
    flex-wrap: wrap;
}

.journey .step {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.journey .step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #2e7d32;
}

.journey .step .icon {
    background: #2e7d32;
    color: white;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.journey .step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
    line-height: 1.3;
}

.journey .step p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* How it Works */
#how-it-works {
    background: #fff;
    padding: 6rem 1.5rem;
    text-align: center;
}

#how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

#how-it-works h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

#how-it-works .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6c757d;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.process-step .step-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
}

.process-step .step-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.process-step h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step .step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #2e7d32;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid #2e7d32;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-step p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.process-arrow {
    color: #4caf50;
    font-size: 2rem;
    opacity: 0.7;
}

/* Contact Section */
#contact {
    background: #f8f9fa;
    margin: 0;
    max-width: none;
    padding: 5rem 1.5rem;
    text-align: center;
}

#contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

#contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

#contact .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6c757d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.info-title {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}

.info-text p {
    font-size: 0.95rem;
    color: #2e7d32;
    font-weight: 500;
}

.support-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 1.5rem;
}

.support-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.support-card h4 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.support-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.contact-form {
    flex: 1.2;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Destination Selector Styles */
.destination-selector {
    margin-bottom: 2rem;
    text-align: left;
}

.destination-selector label {
    display: block;
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.destination-dropdown {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 3px solid #2e7d32;
    border-radius: 10px;
    background: white;
    color: #2c2c2c;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.1);
}

.destination-dropdown:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.destination-dropdown option {
    padding: 0.5rem;
    font-weight: 500;
}

/* Form Styles */
.destination-form {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 1.3rem;
    color: #2e7d32;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.char-count {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: right;
    margin-top: 0.3rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #1e2a3a;
    color: #b0b8c4;
    padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-footer {
    width: 40px;
    height: 40px;
    background: #2e7d32;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: #2a3441;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b8c4;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-2px);
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b8c4;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #2e7d32;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #b0b8c4;
    font-size: 0.95rem;
}

.contact-item .contact-icon {
    color: #2e7d32;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #2a3441;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #8a9199;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1060px) {
    .nav-left, .nav-right {
        gap: 6rem;
    }
}

@media (max-width: 1024px) {
    .process-arrow {
        display: none;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 950px) {
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .logo-container {
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    /* Sections responsive */
    #intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 9rem 1rem 3rem 1rem;
    }

    #intro .text {
        margin-left: 0;
    }

    #section2 .content {
        flex-direction: column;
        gap: 2rem;
    }

    /* Contact section mobile optimizations */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
        order: 2;
    }

    .contact-form {
        order: 1;
        min-width: 100%;
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .info-item {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .process-step {
        max-width: 100%;
    }

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

    .footer-brand {
        grid-column: 1;
    }

    .footer-brand .brand-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1rem 2rem 1rem;
    }

    #intro {
        padding: 8.5rem 1rem 2rem 1rem;
    }

    #world-map,
    #how-it-works,
    #contact {
        padding: 4rem 1rem;
    }

    /* Enhanced mobile form styling */
    .contact-form {
        padding: 1rem;
        border-radius: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.8rem;
        min-height: 50px;
    }

    .destination-dropdown {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem 0.8rem;
    }

    .info-text {
        text-align: center;
    }

    .support-card {
        padding: 1rem;
        text-align: center;
    }

    .promise-text {
        /* flex-direction: column; */
        gap: 1rem;
    }

    .journey .step {
        padding: 1.5rem 1rem;
    }

    .process-step .step-icon {
        width: 100px;
        height: 100px;
    }

    .process-step .step-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .destination-dropdown {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .info-item {
        padding: 0.8rem 0.6rem;
    }

    .support-card {
        padding: 0.8rem;
    }
}

@media (max-width: 400px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        height: 50px;
    }

    section {
        padding: 3rem 0.8rem 1.5rem 0.8rem;
    }

    #intro {
        padding: 8rem 0.8rem 1.5rem 0.8rem;
    }

    #world-map,
    #how-it-works,
    #contact {
        padding: 3rem 0.8rem;
    }

    /* Ultra-compact form for very small screens */
    .contact-form {
        padding: 0.6rem;
        margin: 0 -0.2rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .submit-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        min-height: 44px;
        border-radius: 6px;
    }

    .destination-dropdown {
        padding: 0.6rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .char-count {
        font-size: 0.65rem;
    }

    .info-item {
        padding: 0.6rem 0.4rem;
        margin-bottom: 0.8rem;
        border-radius: 10px;
    }

    .support-card {
        padding: 0.6rem;
        border-radius: 10px;
    }

    .journey .step {
        padding: 1rem 0.8rem;
    }

    .process-step .step-icon {
        width: 80px;
        height: 80px;
    }

    .process-step .step-icon svg {
        width: 35px;
        height: 35px;
    }

    footer {
        padding: 3rem 0.8rem 1.5rem 0.8rem;
    }
}

/* Ultra small screens optimization */
@media (max-width: 320px) {
    .logo {
        height: 30px;
    }

    .nav-container {
        padding: 0.8rem;
    }

    section {
        padding: 2.5rem 0.5rem 1rem 0.5rem;
    }

    #intro {
        padding: 2.5rem 0.5rem 1rem 0.5rem;
    }

    #world-map,
    #how-it-works,
    #contact {
        padding: 2.5rem 0.5rem;
    }

    .contact-form {
        padding: 0.4rem;
        border-radius: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.4rem;
        font-size: 0.75rem;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .submit-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .destination-dropdown {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .support-card {
        padding: 0.5rem;
    }

    .journey .step {
        padding: 0.8rem;
        min-width: auto;
    }

    .journey .step h3 {
        font-size: 1.1rem;
    }

    .journey .step p {
        font-size: 0.9rem;
    }

    .process-step .step-icon {
        width: 70px;
        height: 70px;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    footer {
        padding: 2.5rem 0.5rem 1rem 0.5rem;
    }
}