html, body {
    height: 100%;
}

footer a:hover {
    color: #ffca28;
}

body {
    background-color: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.navbar-brand img {
    height: 50px;
}
.nav-link {
    color: #333;
    font-weight: 500;
}
.nav-link:hover {
    color: #ff6f00;
}
.btn-gradient {
    background: linear-gradient(45deg, #ff5e5e, #ffca28, #69f0ae);
    color: white;
    border: none;
}

/*HERO*/
/*.hero {
  padding: 150px 0;
  background: linear-gradient(135deg, #ff5e5e, #ffca28, #69f0ae);
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
  color: #fdfdfd;
}*/
/*HERO*/

/*HERO - 2*/
.hero {
    position: relative;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #ff5e5e, #ffca28, #69f0ae);
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: inherit;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}
.hero p {
    font-size: 1.25rem;
    color: #fdfdfd;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2);
}

.hero .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

.hero .btn:nth-child(1) {
    animation-delay: 0.3s;
}

.hero .btn:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
/*HERO - 2*/


.how-it-works {
    padding: 60px 0;
    background-color: #fff;
}
.how-it-works .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff6f00;
}
.categories {
    background-color: #f9fafb;
    padding: 0 0 60px 0;
}
.category-card {
    border: none;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}
.category-card:hover {
    transform: translateY(-5px);
}
footer {
    background-color: #212529;
    color: #ccc;
    padding: 30px 0;
}
footer a {
    color: #aaa;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}

.section-padding {
    background-color: #f9fafb;
    padding: 60px 0;
}

.title-container {
    padding: 30px 0;
    background: linear-gradient(135deg, #ff5e5e, #ffca28, #69f0ae);
    color: #fff;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.glow-transition {
    animation: pulse-glow 0.6s ease-out;
}

.soft-slide-in {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.soft-slide-in.show {
    transform: translateY(0);
    opacity: 1;
}

#loader-region, #loader-city {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}