/* ===== CSS VARIABLES ===== */
:root {
    --green: #1a7a3c;
    --green-dark: #125a2c;
    --green-light: #25a452;
    --charcoal: #2d3436;
    --charcoal-light: #3d4a4f;
    --black: #111111;
    --white: #ffffff;
    --off-white: #f8faf8;
    --light-gray: #eef2ee;
    --text-dark: #1e2820;
    --text-muted: #6b7c6e;
    --gold: #f0b429;
    --shadow: 0 8px 32px rgba(26,122,60,0.13);
    --shadow-dark: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

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

.section-padding { padding: 80px 0; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar span, .topbar a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--green-light); margin-right: 5px; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(26,122,60,0.15);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }

.logo a { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--charcoal); line-height: 1; }
.logo-sub { font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: 2px; }

.nav-menu { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-menu a {
    font-weight: 600; font-size: 14px; color: var(--charcoal);
    padding: 8px 14px; border-radius: 8px; transition: var(--transition);
    letter-spacing: 0.3px;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--green); background: rgba(26,122,60,0.08);
}
.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    color: white !important; padding: 10px 20px !important; border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(26,122,60,0.35) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,60,0.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
    display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(17,17,17,0.75) 40%, rgba(26,122,60,0.3) 100%);
}
.slide-1 { background-image: url('/Images/slide1.jpg'); }
.slide-2 { background-image: url('/Images/slide2.jpg'); }
.slide-3 { background-image: url('/Images/slide3.jpg'); }

.hero-content {
    position: relative; z-index: 2;
    width: 100%;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-text { color: white; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,122,60,0.9); color: white;
    padding: 6px 16px; border-radius: 50px; font-size: 13px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-text h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
    font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 500px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white; padding: 14px 32px; border-radius: 50px;
    font-weight: 700; font-size: 15px; border: none; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 25px rgba(26,122,60,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(26,122,60,0.5); }
.btn-outline {
    background: transparent; color: white;
    padding: 14px 32px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.6);
    font-weight: 700; font-size: 15px; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* Slider Dots */
.slider-dots {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition);
    border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
.slider-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; display: flex; justify-content: space-between;
    width: 100%; padding: 0 20px; pointer-events: none;
}
.slider-nav button {
    pointer-events: all;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3); color: white;
    font-size: 18px; cursor: pointer; transition: var(--transition);
}
.slider-nav button:hover { background: var(--green); }

/* ===== BOOKING FORM SECTION ===== */
.booking-panel {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(26,122,60,0.1);
}
.booking-panel h3 {
    font-size: 22px; color: var(--charcoal); margin-bottom: 20px;
    text-align: center; border-bottom: 2px solid var(--light-gray); padding-bottom: 15px;
}
/* Tabs */
.tab-btns { display: flex; background: var(--light-gray); border-radius: 10px; padding: 4px; margin-bottom: 22px; }
.tab-btn {
    flex: 1; padding: 9px 8px; border: none; background: transparent;
    border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer;
    transition: var(--transition); color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
}
.tab-btn.active {
    background: var(--green); color: white;
    box-shadow: 0 4px 12px rgba(26,122,60,0.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
    padding: 11px 14px; border: 1.5px solid #dde5dd; border-radius: 8px;
    font-size: 14px; font-family: 'Nunito', sans-serif;
    transition: var(--transition); background: var(--off-white);
    color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--green); background: white;
    box-shadow: 0 0 0 3px rgba(26,122,60,0.1);
}
.form-group input::placeholder { color: var(--text-muted); }
.btn-book {
    width: 100%; padding: 13px; background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white; border: none; border-radius: 10px; font-size: 15px;
    font-weight: 700; cursor: pointer; transition: var(--transition);
    font-family: 'Playfair Display', serif; letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26,122,60,0.35);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,122,60,0.45); }

/* ===== SECTION TITLES ===== */
.section-title { text-align: center; margin-bottom: 55px; }
.section-title .tag {
    display: inline-block; background: rgba(26,122,60,0.1);
    color: var(--green); padding: 5px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 12px;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 44px); color: var(--charcoal);
    margin-bottom: 12px; line-height: 1.2;
}
.section-title h2 span { color: var(--green); }
.section-title p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.title-line {
    width: 60px; height: 3px; background: linear-gradient(to right, var(--green), var(--gold));
    margin: 16px auto 0; border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    object-fit: cover; height: 460px;
}
.about-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white; padding: 20px 25px; border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center; min-width: 140px;
}
.about-badge .num { font-size: 38px; font-weight: 900; font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge .lbl { font-size: 12px; font-weight: 600; opacity: 0.9; }
.about-content .tag {
    display: inline-block; background: rgba(26,122,60,0.1);
    color: var(--green); padding: 5px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.about-content h2 { font-size: clamp(26px,3.5vw,40px); margin-bottom: 18px; line-height: 1.25; }
.about-content h2 span { color: var(--green); }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 15.5px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 25px 0; }
.feat-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.feat-item i { color: var(--green); font-size: 16px; }

/* ===== FLEET CARDS ===== */
.fleet-section { background: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.fleet-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1.5px solid var(--light-gray); transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(26,122,60,0.2); }
.fleet-img { position: relative; overflow: hidden; height: 200px; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.07); }
.fleet-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--green); color: white;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.fleet-info { padding: 22px; }
.fleet-info h3 { font-size: 20px; margin-bottom: 6px; }
.fleet-info .fleet-type { color: var(--green); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.spec-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
.spec-item i { color: var(--green); font-size: 13px; }
.fleet-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--light-gray); padding-top: 15px; }
.fleet-price .price { font-size: 20px; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.fleet-price .price span { font-size: 13px; font-weight: 400; color: var(--text-muted); font-family: 'Nunito', sans-serif; }
.btn-sm {
    padding: 8px 18px; background: var(--green); color: white;
    border: none; border-radius: 20px; font-size: 13px;
    font-weight: 700; cursor: pointer; transition: var(--transition);
}
.btn-sm:hover { background: var(--green-dark); }

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,60,0.15), transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-card {
    background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
    padding: 32px 26px; border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition); text-align: center;
    backdrop-filter: blur(10px);
}
.why-card:hover { background: rgba(26,122,60,0.15); border-color: rgba(26,122,60,0.4); transform: translateY(-5px); }
.why-icon {
    width: 70px; height: 70px; background: rgba(26,122,60,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--green-light); margin: 0 auto 18px;
    border: 2px solid rgba(26,122,60,0.3); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--green); color: white; }
.why-card h4 { color: white; font-size: 18px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testi-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--light-gray); position: relative;
    transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-quote {
    font-size: 50px; color: var(--green); opacity: 0.15;
    position: absolute; top: 15px; right: 20px;
    font-family: 'Playfair Display', serif; line-height: 1;
}
.testi-stars { color: var(--gold); margin-bottom: 14px; font-size: 15px; }
.testi-text { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.8; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: white;
    font-family: 'Playfair Display', serif;
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-city { font-size: 13px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1.5px solid var(--light-gray); border-radius: var(--radius);
    margin-bottom: 14px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(26,122,60,0.3); box-shadow: 0 4px 20px rgba(26,122,60,0.08); }
.faq-q {
    width: 100%; padding: 20px 24px; background: var(--white);
    border: none; text-align: left; font-size: 16px; font-weight: 700;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: 'Nunito', sans-serif; color: var(--charcoal); transition: var(--transition);
}
.faq-item.open .faq-q { color: var(--green); background: rgba(26,122,60,0.04); }
.faq-q i { font-size: 14px; color: var(--green); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    padding: 0 24px; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-muted); font-size: 15px; line-height: 1.8;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 200px; }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, var(--green), var(--green-dark)); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { color: white; }
.stat-num { font-size: clamp(32px,4vw,52px); font-weight: 900; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-label { font-size: 14px; opacity: 0.85; margin-top: 6px; font-weight: 600; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 4px; background: linear-gradient(to right, var(--green), var(--gold), var(--green));
}
.page-hero h1 { color: white; font-size: clamp(32px,5vw,52px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ===== SERVICES GRID ===== */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; border: 1.5px solid var(--light-gray);
    transition: var(--transition); text-align: center; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--green), var(--green-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(26,122,60,0.15); }
.service-icon {
    width: 80px; height: 80px; background: rgba(26,122,60,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 34px; color: var(--green); margin: 0 auto 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green); color: white; }
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 15px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info h3 { font-size: 26px; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.c-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-icon {
    width: 50px; height: 50px; background: rgba(26,122,60,0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--green); flex-shrink: 0;
}
.c-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.c-val { font-weight: 700; font-size: 16px; color: var(--charcoal); }
.contact-form-box {
    background: var(--white); padding: 40px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}
.contact-form-box h3 { font-size: 24px; margin-bottom: 24px; }
.contact-form-box textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid #dde5dd; border-radius: 8px;
    font-size: 14px; font-family: 'Nunito', sans-serif; resize: vertical; min-height: 120px;
    background: var(--off-white); color: var(--text-dark); transition: var(--transition);
}
.contact-form-box textarea:focus {
    outline: none; border-color: var(--green); background: white;
    box-shadow: 0 0 0 3px rgba(26,122,60,0.1);
}

/* ===== FOOTER ===== */
.footer { background: var(--black); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.f-logo-main { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; display: block; line-height: 1; }
.f-logo-sub { font-size: 10px; font-weight: 700; color: var(--green-light); letter-spacing: 2px; display: block; }
.footer-logo i { font-size: 28px; color: var(--green-light); }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.8; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--green); color: white; border-color: var(--green); }
.footer-col h4 { color: white; font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--green); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 14.5px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--green-light); padding-left: 4px; }
.footer-col ul a i { font-size: 11px; color: var(--green); }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-list i { color: var(--green-light); margin-top: 3px; width: 16px; flex-shrink: 0; }
.contact-list span, .contact-list a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.contact-list a:hover { color: var(--green-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0; text-align: center;
    color: rgba(255,255,255,0.45); font-size: 14px;
}

/* ===== FLOAT BUTTONS ===== */
.whatsapp-float, .call-float {
    position: fixed; bottom: 90px; right: 25px;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; z-index: 999; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25); color: white;
}
.whatsapp-float { background: #25D366; }
.call-float { background: var(--green); bottom: 28px; }
.whatsapp-float:hover, .call-float:hover { transform: scale(1.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .booking-panel { max-width: 560px; margin-top: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar .container { flex-direction: column; gap: 5px; text-align: center; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: center;
        padding: 30px; box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s ease; z-index: 999;
    }
    .nav-menu.open { right: 0; }
    .hamburger { display: flex; z-index: 1000; }
    .hero-slider { height: auto; min-height: 100vh; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .section-padding { padding: 55px 0; }
}
