/*--------------------------------------------------------------
>>> THE SUNRISE TOWNSHIP DEDICATED WEBPAGE - MASTER CSS
--------------------------------------------------------------*/

:root {
    --primary: #002855;
    --primary-light: #003a7a;
    --primary-dark: #001630;
    --accent: #c5a059;
    --accent-hover: #b38e47;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #25d366;
    --success-hover: #128c7e;
    
    --shadow-sm: 0 2px 4px rgba(0, 40, 85, 0.04);
    --shadow-md: 0 10px 20px rgba(0, 40, 85, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 40, 85, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 40, 85, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
    background: rgba(0, 22, 48, 0.98);
}

.topbar-announcement {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
}

.topbar-announcement marquee {
    display: block;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Removed flex-shrink: 0 to prevent mobile overflow */
}

.logo-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    text-decoration: none;
    max-width: 100%;
}

.logo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.logo-top {
    background: #ffffff;
    padding: 5px 12px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-top img {
    height: 32px;
    border-radius: 0;
    max-width: 100%;
    object-fit: contain;
}

.logo-bottom {
    background: var(--primary);
    padding: 4px 10px;
    text-align: center;
}

.logo-bottom span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    white-space: normal;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin: 0 15px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-only-btn {
    display: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success);
    color: #ffffff;
}

.btn-success:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: 100px;
    background: var(--primary-dark);
}

.swiper {
    width: 100%;
    height: 100%;
}

.hero-form-col {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 20;
    width: 360px;
    max-height: 90%;
    overflow-y: auto;
}

.hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.hero-form-card h3 {
    text-align: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-form-sub {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-form-group {
    margin-bottom: 12px;
}

.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
    border-color: var(--accent);
}

.hero-form-wa {
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 0.88rem;
}

.hero-form-wa a.btn-whatsapp {
    color: #fff;
}
.hero-form-wa a:not(.btn-whatsapp) {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 22, 48, 0.6) 0%, rgba(0, 22, 48, 0.85) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    max-width: 900px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.swiper-slide-active .slide-content h2,
.swiper-slide-active .slide-content p,
.swiper-slide-active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper styling customization */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent);
    color: var(--primary-dark) !important;
    border-color: var(--accent);
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* Hero Bottom Card Box */
.hero-bottom-info {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 30px;
}

.hero-info-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    align-items: center;
}

.rate-badge-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 40, 85, 0.15);
}

.rate-badge-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.rate-badge-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.quick-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.quick-spec-item:hover {
    background-color: var(--bg-light);
}

.quick-spec-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(197, 160, 89, 0.12);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-spec-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.quick-spec-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sections Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Overview Layout - Full Width Stacked */
.overview-full-slider {
    background: #0d1b2a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.overview-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: justify;
}

.overview-features-list {
    margin-bottom: 30px;
}

.overview-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.overview-features-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* New full-width main swiper */
.overview-swiper-main {
    width: 100%;
    aspect-ratio: 16 / 7;
    position: relative;
    overflow: hidden;
}

.overview-swiper-main .swiper-slide {
    position: relative;
    overflow: hidden;
}

.overview-swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.overview-swiper-main .swiper-slide-active img {
    transform: scale(1.04);
}

/* Slide labels (bottom-left of each slide) */
.slide-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Project badge top-left */
.overview-project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.badge-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.badge-booking {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 2px;
    width: fit-content;
}

/* Navigation arrows for overview slider */
.overview-swiper-main .swiper-button-prev,
.overview-swiper-main .swiper-button-next {
    color: #ffffff !important;
    background: rgba(0, 40, 85, 0.55);
    backdrop-filter: blur(6px);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.overview-swiper-main .swiper-button-prev:after,
.overview-swiper-main .swiper-button-next:after {
    font-size: 1rem !important;
    font-weight: bold;
}

.overview-swiper-main .swiper-button-prev:hover,
.overview-swiper-main .swiper-button-next:hover {
    background: var(--accent);
    color: var(--primary-dark) !important;
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Slide counter badge */
.overview-slide-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 22, 48, 0.7);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.overview-slide-counter .current-slide {
    color: var(--accent);
    font-weight: 700;
}

/* Thumbnail Slider */
.overview-swiper-thumbs {
    background: #0a1520;
    padding: 8px 12px;
}

.overview-swiper-thumbs .swiper-slide {
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition);
}

.overview-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.35);
}

.overview-swiper-thumbs .swiper-slide:hover {
    opacity: 0.85;
}

.overview-swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Feature icons bar */
.overview-feature-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-top: 2px solid var(--accent);
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.ov-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 70px;
}

.ov-feat-item i {
    font-size: 1.3rem;
    color: var(--accent);
}

.ov-feat-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Text content grid below carousel */
.overview-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 10px;
}

.overview-text-col p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.7;
}



/* Layout Grid Main - Standard layout split */
.layout-split-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 40px;
}

/* Amenities Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bento-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tables Styling */
.table-container {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    margin: 25px 0 35px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    padding: 16px 24px;
    font-size: 1rem;
}

.premium-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

.premium-table tbody tr:hover {
    background-color: rgba(0, 40, 85, 0.02);
}

/* Layout Plan & Lightbox */
.layout-plan-box {
    text-align: center;
}

.layout-plan-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.layout-plan-wrapper img {
    width: 100%;
    transition: var(--transition);
}

.layout-overlay-click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 85, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    opacity: 0;
    transition: var(--transition);
}

.layout-overlay-click i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.layout-overlay-click span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.layout-plan-wrapper:hover .layout-overlay-click {
    opacity: 1;
}

.layout-plan-wrapper:hover img {
    transform: scale(1.03);
}

.layout-caption {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(0, 11, 24, 0.95);
    justify-content: center;
    align-items: center;
    padding: 30px;
    backdrop-filter: blur(8px);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffffff;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 85, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Sidebar and Form styling */
.sidebar-sticky {
    position: sticky;
    top: 90px;
}

.visit-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 25px;
}

.visit-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-align: center;
}

.visit-form-card .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Accordion for Expressway Info */
.accordion-wrapper {
    margin-top: 30px;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-light);
}

.accordion-body {
    padding: 20px;
    font-size: 0.95rem;
    color: #4a5568;
    border-top: 1px solid var(--border-color);
}

.accordion-body ul {
    margin-top: 10px;
}

.accordion-body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.accordion-body li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.accordion-item.active {
    border-color: var(--accent);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Call & WhatsApp Floaters */
.floaters {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floater-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.floater-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(7, 12, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 16px 10px;
    gap: 10px;
    justify-content: center;
}

.mob-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    transition: all 0.3s;
}

.mob-bar-btn i {
    font-size: 1.2rem;
}

.mob-bar-btn span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.mob-bar-call {
    background: var(--primary);
    color: #fff;
}

.mob-bar-wa {
    background: #25D366;
    color: #fff;
}

.mob-bar-book {
    background: var(--accent);
    color: var(--primary-dark);
}

.mob-bar-btn:active {
    transform: scale(0.96);
}

.floater-call {
    background-color: var(--primary);
}

.floater-whatsapp {
    background-color: var(--success);
}

/* Call & WhatsApp button style (matches mobile-bottom-bar font/text) */
.btn-call, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    height: 44px;
    white-space: nowrap;
}
.btn-call i, .btn-whatsapp i {
    font-size: 1.1rem;
}
.btn-call {
    background: var(--primary);
    color: #fff;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-call:hover, .btn-whatsapp:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: #a0aec0;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.footer-logo img {
    height: 40px;
}

/* Prevent menu items overlapping/touching on medium screens */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
    }
    .logo-bottom span {
        font-size: 0.7rem;
    }
    .logo {
        gap: 6px;
    }
    .logo-top img {
        height: 26px;
    }
    .nav-links {
        gap: 12px;
        margin: 0 8px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-actions {
        gap: 8px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Responsiveness Settings */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        z-index: 1100;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 90px 40px 40px;
        gap: 20px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 1050;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-actions {
        margin-right: 20px;
    }
    
    .nav-btn {
        display: none; /* Hide header button on tablet/mobile */
    }
    
    .mobile-only-btn {
        display: block; /* Show inside the sliding menu */
        list-style: none;
    }
    
    .layout-split-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-form-col {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 20px;
        background: var(--primary-dark);
    }

    .hero-form-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .mobile-bottom-bar {
        display: flex;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .logo-top img {
        height: 22px;
    }
    
    .logo-bottom {
        padding: 2px 8px;
    }
    
    .logo-bottom span {
        font-size: 0.6rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-slider-col {
        height: 50vh;
        min-height: 300px;
    }

    .hero-form-col {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 20px 15px;
        background: var(--primary-dark);
    }

    .hero-form-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .slide-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 10px;
    }
    
    .slide-actions .btn {
        width: 100%;
    }
    
    .hero-bottom-info {
        margin-top: -30px;
        padding: 0 10px;
    }
    
    .hero-info-wrapper {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-table th,
    .premium-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .floaters {
        bottom: 80px;
        right: 20px;
    }
    
    .floater-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
