.surabaya-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.surabaya-svg {
    display: block;
    max-width: 90vw;
    width: 1024px;
    height: 400px;
    cursor: pointer;
    overflow: visible;
    transition: all 0.3s ease;
}

.surabaya-text {
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: 900;
    font-size: 120px;
    letter-spacing: 0.108em;
    dominant-baseline: alphabetic;
    transform-origin: center bottom;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        letter-spacing 0.6s ease;
}

.surabaya-shadow {
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: 900;
    font-size: 120px;
    letter-spacing: 0.108em;
    dominant-baseline: alphabetic;
    text-anchor: middle;
    fill: rgba(0, 0, 0, 0.5);
    text-shadow: 3.5px 3.5px 7px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease 0.6s;
}

#surabayaSvg:hover .surabaya-shadow {
    opacity: 0;
    transition-delay: 0s;
}

#surabayaSvg:hover .surabaya-text {
    transform: scale(50);
    letter-spacing: -48px;
}

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

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 500;
    color: #fff;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8);
}

.title2 {
    font-size: 42px;
    color: #fff;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-top: 130px;
    margin-bottom: 3rem;
}

.title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.about {
    text-align: center;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 1.5rem auto 3rem auto;
    padding: 0 1rem;
}

.about-col {
    flex: 1 1 320px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
}

.about-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
    padding: 1.5rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8);
    text-align: justify;
}

.about-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: rotate(25deg);
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: rotate(20deg) scale(1.03);
}

.love-hometown-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1rem;
    text-align: center;
}

.love-hometown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style-type: none;
    padding: 0;
    margin-bottom: 120px;
}

.love-hometown-grid li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.love-hometown-grid li:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.love-hometown-grid li:nth-child(1) {
    animation-delay: 0.2s;
}

.love-hometown-grid li:nth-child(2) {
    animation-delay: 0.3s;
}

.love-hometown-grid li:nth-child(3) {
    animation-delay: 0.4s;
}

.love-hometown-grid li:nth-child(4) {
    animation-delay: 0.5s;
}

.love-hometown-grid li:nth-child(5) {
    animation-delay: 0.6s;
}

.love-hometown-grid li:nth-child(6) {
    animation-delay: 0.7s;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.card-icon {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.love-hometown-grid li p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: none;
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}