/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
}

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

.highlight { color: #d4a373; }

/* --- 1. Page Banner --- */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img3.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* --- 2. Taxi Services Section --- */
.taxi-services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: #d4a373;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

.title {
    font-size: 2.8rem;
    color: #2d5a27;
    margin: 10px 0;
    font-weight: 800;
}

/* --- Grid Fix: 2 Columns & 2 Rows --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* තීරු 2කට බෙදීම */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(45, 90, 39, 0.12);
    border-color: #2d5a27;
}

.service-card i {
    font-size: 3.5rem;
    color: #2d5a27;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #2d5a27;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- 3. Accommodation Section --- */
.accommodation-section {
    padding: 100px 0;
    background: #f4f7f4;
}

.accommodation-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.accommodation-image {
    flex: 1;
}

.accommodation-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 10px solid #fff;
}

.accommodation-content {
    flex: 1;
}

.room-feats {
    list-style: none;
    margin: 30px 0;
}

.room-feats li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.room-feats i {
    color: #2d5a27;
    font-size: 1.1rem;
}

.book-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.book-btn:hover {
    background: #d4a373;
    transform: scale(1.05);
}

/* --- 4. CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(rgba(45, 90, 39, 0.9), rgba(45, 90, 39, 0.9)), url('img1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 45px;
    background: #25d366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #1ebe57;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    .accommodation-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .room-feats {
        text-align: left;
        max-width: 350px;
        margin: 30px auto;
    }
    .title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobile එකේදී එක යට එක */
    }
    .page-banner h1 { font-size: 2.5rem; }
}

/* --- Process Section --- */
.process-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: #2d5a27;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid #f4f7f4;
}



/* ===== Shared Navbar + Footer ===== */
body {
    padding-top: 120px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5a27;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a373;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d5a27;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-whatsapp {
    background: #2d5a27;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #d4a373;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    margin-left: 15px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2d5a27;
    transition: all 0.3s ease;
}

.footer {
    background-color: #111111;
    padding: 80px 0 30px;
    color: #ffffff;
    border-top: 5px solid #2d5a27;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-box h4 {
    color: #d4a373;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo span { color: #d4a373; }

.about-box p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d5a27;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #d4a373;
}

.contact-box ul {
    list-style: none;
    padding: 0;
}

.contact-box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-box i {
    color: #d4a373;
    width: 20px;
}

.footer-map,
.footer .map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    line-height: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

body.menu-open {
    overflow: hidden;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 50px;
    background: rgba(45, 90, 39, 0.95);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: #ffffff;
}

.navbar.scrolled .nav-links a::after {
    background: #ffffff;
}

.navbar.scrolled .bar {
    background-color: #ffffff;
}

.navbar.scrolled .btn-whatsapp {
    background: #ffffff;
    color: #2d5a27;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        width: 95%;
        top: 10px;
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        padding: 16px 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 8px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-box ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo img {
        height: 42px;
    }

    .btn-whatsapp {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
}


.footer-location-link,
.contact-location-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-location-link:hover,
.contact-location-link:hover {
    color: #d4a373;
}

.map-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.map-open-link:hover {
    background: #d4a373;
    color: #1f1f1f;
    border-color: #d4a373;
}

.contact-map-link {
    margin-top: 18px;
    color: #2d5a27;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.contact-map-link:hover {
    color: #1f1f1f;
}


/* ===== Sticky WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.55rem;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
    z-index: 1200;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
}
.floating-whatsapp::after {
    content: 'WhatsApp';
    position: absolute;
    right: 68px;
    white-space: nowrap;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover::after {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }
    .floating-whatsapp::after {
        display: none;
    }
}

.tripadvisor-icon {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
}

.tripadvisor-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.hero-social-sidebar .tripadvisor-icon {
    width: 32px;
    height: 32px;
}

.social-links .tripadvisor-icon,
.social-icons .tripadvisor-icon {
    width: 28px;
    height: 28px;
}


@media (max-width: 992px) {
    .navbar,
    .navbar.scrolled {
        top: 10px;
        width: 95%;
        max-width: 95%;
        border-radius: 32px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.96);
    }

    .navbar.scrolled .logo-text,
    .navbar.scrolled .nav-links a,
    .navbar.scrolled .bar {
        color: inherit;
        background-color: #2d5a27;
    }

    .navbar.scrolled .btn-whatsapp {
        background: #2d5a27;
        color: #ffffff;
    }

    .navbar.scrolled .nav-links.active {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar.scrolled .nav-links.active a {
        color: #1a1a1a;
    }

    .navbar.scrolled .nav-links a::after {
        background: #d4a373;
    }
}
