* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: url("../../../images/news-banner.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 40px;
    padding: 20px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-tag::before {
    content: "✓";
    background: #ffd700;
    color: #333;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-btn {
    border: none;
    color: #ffffff;
    opacity: 1;
    border-radius: 20px;
    border-bottom-width: 4px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    gap: 8px;
    background: #222f6e;
    border-bottom: 4px solid #edbe3c;
    cursor: pointer;
}

.hero-btn:hover {
    background: #315bbd;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: #f8f9fa;
    margin: 0;
}

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

.services-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid #222f6e;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222f6e;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    border: none;
    color: white;
    background: #222f6e;
    opacity: 1;
    border-radius: 20px;
    border-bottom-width: 4px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    gap: 8px;
    border-bottom: 4px solid #edbe3c;
    cursor: pointer;
}

.service-btn:hover {
    background: #2d2d44;
}

/* === Tour CTA Section === */
.tour-cta-section {
    position: relative;
    height: 400px;
    background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1200&h=800&fit=crop")
        center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    margin: 0;
}

.tour-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tour-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Perfect circular button */
.tour-cta-btn {
    width: 130px;
    height: 130px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover interaction */
.tour-cta-btn:hover {
    transform: scale(1.1);
    background: #f9b233;
    color: #0b2e63;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 28px;
    }
}
