/* City Hero Section Styles */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Base Font Settings */
.city-hero-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Paragraph Font Settings */
.city-hero-section p {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Global Paragraph Settings */
p {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Global Heading Settings - Noto Serif */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
}

/* Span Styles */
span {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

table th {
    background: rgb(18, 48, 91);
    color: rgb(255, 255, 255);
    text-align: left;
    padding: 13px 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

table td {
    padding: 13px 18px;
    border-top: 1px solid rgb(238, 242, 247);
    font-size: 15px;
    color: rgb(18, 48, 91);
}

table tr:nth-child(even) {
    background: rgb(248, 250, 252);
}

table tr:hover {
    background: rgb(243, 247, 252);
}

.city-hero-section {
    background: linear-gradient(rgb(18, 48, 91) 0%, rgb(23, 58, 108) 100%);
    color: rgb(255, 255, 255);
}

.city-hero-container {
    max-width: 1180px;
    margin: 0px auto;
    padding: 20px 20px 46px;
}

.city-hero-breadcrumb {
    font-size: 13px;
    color: rgb(159, 180, 210);
    margin-bottom: 22px;
}

.city-hero-breadcrumb a {
    color: rgb(159, 180, 210);
    text-decoration: none;
}

.city-hero-breadcrumb a:hover {
    color: rgb(255, 255, 255);
}

.city-hero-breadcrumb span {
    margin: 0px 6px;
}

.city-hero-breadcrumb-current {
    color: rgb(220, 230, 244);
}

.city-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: start;
}

.city-hero-content {
    display: flex;
    flex-direction: column;
    margin: auto;
}


.city-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 111, 33, 0.16);
    border: 1px solid rgba(242, 111, 33, 0.45);
    color: rgb(255, 178, 122);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    width:fit-content;
}

.city-hero-title {
   font-family: 'Noto Serif', serif;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0px 0px 14px;
    letter-spacing: -0.5px;
}

.city-hero-description {
    font-size: 17px;
    line-height: 1.65;
    color: rgb(201, 215, 235);
    margin: 0px 0px 22px;
    max-width: 620px;
}

.city-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-hero-feature {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
}

.city-hero-feature strong {
    color: rgb(255, 178, 122);
}

.city-hero-form {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 26px 26px 22px;
    box-shadow: rgba(4, 18, 42, 0.35) 0px 18px 44px;
    color: rgb(53, 72, 94);
}

.city-hero-form-title {
    margin: 0px 0px 18px;
    font-size: 21px;
    color: rgb(18, 48, 91);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.city-hero-form-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-hero-form-label {
    display: block;
}

.city-hero-form-label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgb(18, 48, 91);
    margin-bottom: 5px;
}

.city-hero-form-input {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    border: 1.5px solid rgb(203, 214, 226);
    border-radius: 10px;
    padding: 0px 14px;
    font-size: 16px;
    font-family: inherit;
    color: rgb(18, 48, 91);
    outline: none;
}

.city-hero-form-input:focus {
    border-color: rgb(242, 111, 33);
}

.city-hero-form-button {
    height: 54px;
    border: none;
    border-radius: 10px;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s ease;
}

.city-hero-form-button.w-100 {
    width: 100%;
}

.city-hero-form-button:hover {
    background: rgb(212, 94, 18);
}

.city-hero-form-footer {
    margin: 12px 0px 0px;
    text-align: center;
    font-size: 13px;
    color: rgb(106, 122, 142);
}

/* Responsive */
@media (max-width: 992px) {
    .city-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .city-hero-form {
        box-shadow: rgba(4, 18, 42, 0.2) 0px 12px 30px;
    }
}

@media (max-width: 768px) {
    .city-hero-container {
        padding: 20px 15px 40px;
    }
    
    .city-hero-title {
        font-size: 28px;
    }
    
    .city-hero-description {
        font-size: 16px;
    }
    
    .city-hero-features {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step > div {
        min-width: 100% !important;
    }
}