/* ── Reset & Base Styles ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f1e9;
    color: #1e1e1e;
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* Standardized link style without highlighting keywords */
p a, li a {
    color: #000;
    font-weight: 600;
    border-bottom: 1px dotted #888;
}

p a:hover, li a:hover {
    color: #d49a00;
    border-bottom-color: #d49a00;
}

/* ── Header ── */
header {
    background: #000000;
    padding: 1.2rem 0;
    border-bottom: 4px solid #f5b81b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: #f5b81b;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f5b81b;
    letter-spacing: 1px;
    margin: 0;
}

.logo h2 span {
    color: #ffffff;
    font-weight: 300;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.phone-number {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 184, 27, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    border: 2px solid #f5b81b;
}

.phone-number:hover {
    background: #f5b81b;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5b81b;
    color: #000000;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: #000000;
    color: #f5b81b;
    border-color: #f5b81b;
}

/* ── Navigation ── */
nav {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu {
    display: none;
    color: #f5b81b;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.8rem;
    border-top: 1px solid #222;
    width: 100%;
}

.nav-links li a {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.3rem 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #f5b81b;
    border-bottom-color: #f5b81b;
    background: transparent;
}

/* ── Hero Section ── */
.hero {
    background: #000000;
    color: #ffffff;
    padding: 3.5rem 0 4rem 0;
    border-bottom: 4px solid #f5b81b;
    position: relative;
    text-align: center;
}

.hero-badge-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    justify-content: center;
}

.hero-badge {
    background: rgba(245, 184, 27, 0.15);
    color: #f5b81b;
    border: 1px solid #f5b81b;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f5b81b;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.15rem;
    color: #dddddd;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.7;
}

.hero p a {
    color: #f5b81b;
    border-bottom: 1px solid #f5b81b;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 3px solid #000000;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #f5b81b;
    color: #000000;
    border-color: #000000;
}

.btn-primary:hover {
    background: #000000;
    color: #f5b81b;
    border-color: #f5b81b;
}

.btn-secondary {
    background: #25D366;
    color: #ffffff;
    border-color: #000000;
}

.btn-secondary:hover {
    background: #1eb854;
    color: #ffffff;
    border-color: #000000;
}

/* ── At a Glance Bar ── */
.glance-bar {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 1.5rem;
    box-shadow: 8px 8px 0 #f5b81b;
    padding: 1.5rem 2rem;
    margin: -2rem auto 3rem auto;
    position: relative;
    z-index: 10;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.glance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #000000;
    font-size: 0.98rem;
}

.glance-item i {
    color: #000000;
    background: #f5b81b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid #000000;
}

/* ── Section Titles ── */
.section-title {
    margin-bottom: 2.2rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    border-left: 8px solid #f5b81b;
    padding-left: 1.2rem;
    line-height: 1.2;
}

.section-title p {
    color: #555555;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-left: 1.7rem;
}

/* ── Services Section ── */
.services {
    padding: 2rem 0 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0 #f5b81b;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0 #000000;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    color: #f5b81b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border: 2px solid #f5b81b;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: #444444;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #000000;
    background: #f5b81b;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    border: 2px solid #000000;
    width: fit-content;
}

.service-link:hover {
    background: #000000;
    color: #f5b81b;
}

/* ── About Compact Section ── */
.about-compact {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.about-compact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-compact-text p {
    color: #333333;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.about-compact-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    border: 4px solid #000000;
    box-shadow: 12px 12px 0 #f5b81b;
    display: block;
    object-fit: cover;
}

/* ── Why Choose Section ── */
.why-choose {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem 1.8rem;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0 #f5b81b;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000000;
    margin: 0.8rem 0 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h3 i {
    color: #f5b81b;
    background: #000000;
    padding: 8px;
    border-radius: 8px;
    font-size: 1rem;
}

.feature-card p {
    color: #444444;
    font-size: 0.98rem;
}

/* ── Popular Routes Section ── */
.routes-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.route-card {
    background: #f5f1e9;
    border-radius: 1.2rem;
    padding: 1.5rem 1.8rem;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0 #000000;
}

.route-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-card h3 i {
    color: #f5b81b;
    background: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.route-card p {
    color: #333333;
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.route-card .route-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.route-card .route-link:hover {
    color: #d49a00;
}

/* ── Local Expertise & Destinations ── */
.expertise-section {
    padding: 4rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dest-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0 #f5b81b;
}

.dest-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f5b81b;
    padding-bottom: 0.5rem;
}

.dest-card h3 i {
    color: #f5b81b;
    background: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.dest-card p {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Service Areas Box ── */
.service-areas-box {
    background: #000000;
    color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 3px solid #f5b81b;
    box-shadow: 10px 10px 0 #f5b81b;
    margin: 3rem 0;
}

.service-areas-box h3 {
    color: #f5b81b;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.area-col h4 {
    color: #f5b81b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-col p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: #f5f1e9;
    border-radius: 1.2rem;
    padding: 1.8rem;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0 #f5b81b;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    color: #222222;
    font-style: italic;
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 2px solid #e0dcd3;
    padding-top: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: #000000;
    color: #f5b81b;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid #f5b81b;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.author-info p {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 2px;
}

.rating {
    color: #f5b81b;
    font-size: 0.85rem;
}

/* ── FAQ Section ── */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem 1.8rem;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0 #f5b81b;
}

.faq-question {
    font-size: 1.12rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-question i {
    color: #f5b81b;
    background: #000000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer p {
    color: #444444;
    font-size: 0.98rem;
    padding-left: 2rem;
}

/* ── CTA Section ── */
.cta-section {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    border-top: 4px solid #f5b81b;
    border-bottom: 4px solid #f5b81b;
}

.cta-section h2 {
    color: #f5b81b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: #dddddd;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 950px;
    margin: 0 auto;
}

.cta-card {
    background: #111111;
    border-radius: 1.2rem;
    padding: 2rem;
    border: 2px solid #f5b81b;
    box-shadow: 6px 6px 0 #f5b81b;
}

.cta-icon {
    font-size: 2.2rem;
    color: #f5b81b;
    margin-bottom: 1rem;
}

.cta-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cta-card p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.2rem;
}

/* ── Footer ── */
footer {
    background: #0a0a0a;
    color: #cccccc;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-column h3 {
    color: #f5b81b;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #222;
    padding-bottom: 0.5rem;
}

.footer-column p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links li a {
    color: #bbbbbb;
    font-size: 0.95rem;
    font-weight: normal;
    border-bottom: none;
}

.footer-links li a:hover {
    color: #f5b81b;
    padding-left: 4px;
}

.footer-links li i {
    color: #f5b81b;
    width: 22px;
}

.footer-bottom {
    border-top: 1px solid #222222;
    margin-top: 3rem;
    padding-top: 1.8rem;
    text-align: center;
    color: #777777;
    font-size: 0.9rem;
}

/* ── Responsive Styling ── */
@media (max-width: 992px) {
    .about-compact-content {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-info {
        justify-content: space-between;
    }
    .mobile-menu {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 0;
        align-items: center;
    }
    .nav-links.open {
        display: flex;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .glance-bar {
        padding: 1.2rem;
        margin-top: -1.5rem;
    }
    .service-areas-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 1.4rem;
    }
    .phone-number {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }
    .hero h1 {
        font-size: 1.65rem;
    }
    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}