/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #DB6C0F;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #DB6C0F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DB6C0F;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.call-btn {
    background: #DB6C0F;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.call-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url('../assets/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    /* color: #fef3c7; */
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(-20px);
}

.booking-card h3 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #DB6C0F;
    z-index: 2;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #DB6C0F;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #DB6C0F, #b91c1c);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.book-btn i {
    margin-right: 10px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f9fafb;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #DB6C0F, white);
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #DB6C0F;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DB6C0F, white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    background: #1f2937;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: #DB6C0F;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #DB6C0F;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-btn i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: white;
    color: #DB6C0F;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #DB6C0F;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.footer-section p {
    color: #DB6C0F;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h3 {
    color: #DB6C0F;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #DB6C0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DB6C0F;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #DB6C0F;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #9ca3af;
}

.contact-info i {
    margin-right: 10px;
    color: #DB6C0F;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .booking-card {
        padding: 30px 20px;
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .booking-card h3 {
        font-size: 20px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-logo i {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.booking-card,
.feature-card {
    animation: fadeInUp 0.8s ease;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Enhanced Booking Form Styles */
.booking-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.tab-btn.active {
    background: #fff;
    color: #1f2937;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.tab-btn i {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.booking-form-container {
    background: #fff;
    border-radius: 0 0 15px 15px;
    padding: 25px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.city-row {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px dashed #e5e7eb;
    transition: all 0.3s ease;
}

.city-row.filled {
    border-color: #10b981;
    background: #f0fdf4;
}

.city-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 15px;
}

.city-number {
    background: #DB6C0F;
    color: white;
    width: 20px;
    height: 20px;
    margin-right: 5%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.remove-city {
    background: #ef4444;
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    margin-left: 5%;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-city:hover {
    background: #DB6C0F;
    transform: scale(1.1);
}

.add-city-btn {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    color: #6b7280;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.add-city-btn:hover {
    border-color: #DB6C0F;
    color: #DB6C0F;
    background: #eff6ff;
}

.duration-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.duration-btn {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.duration-btn.active {
    background: #DB6C0F;
    border-color: #DB6C0F;
    color: white;
}

.custom-duration {
    display: none;
    margin-top: 15px;
}

.custom-duration.active {
    display: flex;
    gap: 10px;
    align-items: center;
}

.airport-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.airport-option {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 150px;
}

.airport-option.active {
    border-color: #DB6C0F;
    background: #eff6ff;
    color: #DB6C0F;
}

.airport-option i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.flight-info {
    display: none;
    margin-top: 15px;
}

.flight-info.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .input-group {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .tab-btn {
        font-size: 12px;
        padding: 12px 8px;
    }

    .tab-btn span {
        display: none;
    }

    .duration-selector {
        justify-content: space-between;
    }

    .duration-btn {
        flex: 0 1 auto;
        min-width: 60px;
        font-size: 12px;
        padding: 8px 10px;
    }

    .airport-options {
        flex-direction: column;
    }
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 2;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #DB6C0F;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.book-btn {
    background: linear-gradient(135deg, #DB6C0F, white);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-btn:hover {
    background: linear-gradient(135deg, #DB6C0F, white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

/* iPad Specific Styles */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
        max-width: 800px;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-text h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .hero-text p {
        font-size: 20px;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .booking-card {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        padding: 45px 40px;
        transform: none;
    }

    .booking-card h3 {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .booking-tabs {
        margin: -45px -40px 0;
        border-radius: 20px 20px 0 0;
    }

    .tab-btn {
        padding: 18px 15px;
        font-size: 15px;
    }

    .tab-btn i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .booking-form-container {
        margin: 0 -40px -45px;
        padding: 35px 40px 45px;
        border-radius: 0 0 20px 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .input-group.full-width {
        grid-column: 1 / -1;
    }

    .city-row {
        padding: 20px;
        margin-bottom: 20px;
    }

    .duration-selector {
        gap: 15px;
        margin-bottom: 25px;
    }

    .duration-btn {
        padding: 12px 18px;
        font-size: 15px;
        min-width: 100px;
    }

    .airport-options {
        gap: 20px;
        margin-bottom: 25px;
    }

    .airport-option {
        padding: 20px;
        min-width: 180px;
    }

    .book-btn {
        padding: 20px 35px;
        font-size: 18px;
        margin-top: 15px;
    }
}

/* iPad Portrait Specific */
@media only screen and (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 80px 30px 40px;
        gap: 50px;
    }

    .booking-card {
        max-width: 550px;
        padding: 40px 35px;
    }

    .booking-form-container {
        padding: 30px 35px 40px;
        margin: 0 -35px -40px;
    }
}

/* iPad Landscape Specific */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
        padding: 40px;
    }

    .hero-text {
        text-align: left;
    }

    .booking-card {
        transform: translateY(-10px);
        max-width: 480px;
    }

    .booking-card h3 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* iPhone and Small Mobile Devices */
@media only screen and (max-width: 480px) {
    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .booking-card {
        margin: 0 -5px;
        padding: 25px 20px;
        border-radius: 15px;
        transform: none;
    }

    .booking-card h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .booking-tabs {
        margin: -25px -20px 0;
        border-radius: 15px 15px 0 0;
    }

    .tab-btn {
        padding: 12px 5px;
        font-size: 11px;
    }

    .tab-btn i {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .tab-btn span {
        display: block;
        font-size: 10px;
    }

    .booking-form-container {
        margin: 0 -20px -25px;
        padding: 20px;
        border-radius: 0 0 15px 15px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .input-group input,
    .input-group select {
        padding: 14px 12px 14px 40px;
        font-size: 15px;
    }

    .input-group i {
        left: 12px;
        font-size: 14px;
    }

    .city-row {
        padding: 15px;
        margin-bottom: 15px;
    }

    .city-header {
        margin-bottom: 12px;
    }

    .city-number,
    .remove-city {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .duration-selector {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }

    .duration-btn {
        padding: 10px 5px;
        font-size: 12px;
        min-width: auto;
        text-align: center;
    }

    .airport-options {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .airport-option {
        padding: 15px;
        min-width: auto;
        text-align: center;
    }

    .airport-option i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .custom-duration.active {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .flight-info.active .form-row {
        flex-direction: column;
    }

    .book-btn {
        padding: 16px 25px;
        font-size: 16px;
        margin-top: 10px;
    }

    .book-btn i {
        margin-right: 8px;
    }
}

/* iPhone SE and Very Small Screens */
@media only screen and (max-width: 375px) {
    .hero-content {
        padding: 25px 10px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .booking-card {
        margin: 0;
        padding: 20px 15px;
    }

    .booking-form-container {
        padding: 15px;
        margin: 0 -15px -20px;
    }

    .tab-btn {
        padding: 10px 3px;
        font-size: 10px;
    }

    .tab-btn i {
        font-size: 14px;
    }

    .duration-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .duration-btn {
        padding: 8px 4px;
        font-size: 11px;
    }

    .input-group input,
    .input-group select {
        padding: 12px 10px 12px 35px;
        font-size: 14px;
    }

    .input-group i {
        left: 10px;
        font-size: 13px;
    }
}

/* Landscape orientation for phones */
@media only screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 70px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 20px;
        align-items: start;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .booking-card {
        padding: 20px 15px;
        max-height: 400px;
        overflow-y: auto;
    }

    .booking-card h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 8px 5px;
        font-size: 10px;
    }

    .booking-form-container {
        padding: 15px;
    }

    .form-row {
        margin-bottom: 15px;
    }

    .book-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Touch-specific improvements */
@media (hover: none) and (pointer: coarse) {
    .tab-btn {
        padding: 15px 10px;
        min-height: 44px;
    }

    .duration-btn {
        min-height: 44px;
        padding: 12px 15px;
    }

    .airport-option {
        min-height: 60px;
        padding: 15px;
    }

    .remove-city {
        min-width: 20px;
        min-height: 20px;
    }

    .book-btn {
        min-height: 48px;
        padding: 16px 25px;
    }

    .input-group input,
    .input-group select {
        min-height: 48px;
        padding: 15px 15px 15px 45px;
    }
}

/* Add this CSS to your styles.css file or in a <style> tag in your HTML */

.remove-city {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    margin-left: auto;
    transition: all 0.2s ease;
}

.remove-city:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.city-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.city-number {
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}