/* ========================================
   HOTEL SEA VIEW - MAIN STYLESHEET
   Modern, Elegant, Responsive Design
======================================== */

/* ========================================
   1. CSS VARIABLES & RESET
======================================== */
:root {
    /* Brand Colors */
    --primary-color: #1a5490;
    --primary-dark: #0d3a6b;
    --primary-light: #2e6aa8;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Accent Colors */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 5rem 0;
}

/* ========================================
   2. TOP BAR
======================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ========================================
   3. HEADER & NAVIGATION
======================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.btn-book {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid var(--secondary-color);
}

.btn-book:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========================================
   4. HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(13, 58, 107, 0.85)),
                url('https://images.unsplash.com/photo-1559508551-44bff1de756b?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   5. SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

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

/* ========================================
   6. ABOUT SECTION
======================================== */
.about {
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.feature-item span {
    font-weight: 600;
    color: var(--gray-800);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.image-badge i {
    font-size: 1.5rem;
}

/* ========================================
   7. ROOMS SECTION
======================================== */
.rooms {
    background: var(--white);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 84, 144, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.btn-view:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.room-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.room-features span {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.room-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.room-content .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
}

/* ========================================
   8. AMENITIES SECTION
======================================== */
.amenities {
    background: var(--gray-100);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.amenity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 84, 144, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.amenity-info i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.amenity-content {
    padding: 2rem;
    text-align: center;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.amenity-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.amenity-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   9. FACILITIES SECTION
======================================== */
.facilities {
    background: var(--white);
}

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

.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--gray-200);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.facility-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 84, 144, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

.facility-content {
    padding: 2rem;
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.facility-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.facility-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.facility-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.facility-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.facility-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* ========================================
   10. VILLA SECTION
======================================== */
.villa {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.03), rgba(212, 175, 55, 0.03));
    padding: 6rem 0;
}

.villa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.villa-text .villa-tagline {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.villa-text .lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.villa-features {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.villa-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.villa-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.villa-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.villa-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--gray-900);
}

.villa-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.villa-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.villa-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-100);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.villa-note i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.villa-images {
    position: relative;
}

.villa-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 1.5rem;
}

.villa-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.btn-view-villa {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-view-villa:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(-50%) translateY(-3px);
}

.villa-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.villa-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.villa-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   11. REVIEWS SECTION
======================================== */
.reviews {
    background: var(--gray-100);
}

.average-rating {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.rating-score .score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.total-reviews {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.total-reviews span {
    font-weight: 600;
    color: var(--primary-color);
}

.reviews-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--gray-900);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Write Review Form */
.write-review {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.write-review h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
    text-align: center;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.star-rating i {
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.review-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ========================================
   12. CONTACT SECTION
======================================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.info-content p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.3rem;
}

.info-content a {
    color: var(--gray-700);
    transition: var(--transition-normal);
}

.info-content a:hover {
    color: var(--primary-color);
}

.info-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.info-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ========================================
   13. FOOTER
======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: var(--secondary-color);
}

/* ========================================
   14. SCROLL TO TOP BUTTON
======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ========================================
   15. WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ========================================
   16. GALLERY MODAL
======================================== */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10000;
}

.gallery-close:hover {
    color: var(--secondary-color);
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#galleryImage {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: var(--radius-md);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--secondary-color);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-caption {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    font-size: 1.1rem;
}

/* ========================================
   17. AOS ANIMATION LIBRARY SUPPORT
======================================== */
[data-aos] {
    pointer-events: auto;
}

/* ========================================
   18. UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ========================================
   SEAVIEW SERENITY VILLA - MAIN STYLESHEET
   Modern, Elegant, Luxury Design
======================================== */

/* Use the same base CSS from hotel website, then add these villa-specific styles */

/* ========================================
   VILLA-SPECIFIC HERO ENHANCEMENTS
======================================== */

.hero {
    background-image: url('../images/hero/villa-hero-background.jpg');
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* ========================================
   ABOUT VILLA - FEATURE CARDS
======================================== */

.villa-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ========================================
   BEDROOMS SECTION
======================================== */

.bedrooms {
    background: var(--white);
    padding: 5rem 0;
}

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

.bedroom-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.bedroom-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.bedroom-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.bedroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.bedroom-card:hover .bedroom-image img {
    transform: scale(1.1);
}

.bedroom-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bedroom-badge.premium-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--gray-900);
}

.bedroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 84, 144, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.bedroom-card:hover .bedroom-overlay {
    opacity: 1;
}

.bedroom-content {
    padding: 2rem;
}

.bedroom-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.bedroom-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.garden-badge {
    background: linear-gradient(135deg, #28a745, #5cb85c);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.comfort-badge {
    background: linear-gradient(135deg, #9b59b6, #bb8fce);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bedroom-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bedroom-features span {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bedroom-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.bedrooms-note {
    margin-top: 3rem;
}

.note-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.note-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.note-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.note-box p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION - CATEGORIES
======================================== */

.services {
    background: var(--gray-100);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-category {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-icon-small {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-details p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.services-slideshow {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

/* Villa Policies */
.villa-policies {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.villa-policies h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.policy-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.policy-card:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.policy-card:hover i,
.policy-card:hover h4,
.policy-card:hover p {
    color: var(--white);
}

.policy-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.policy-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    transition: var(--transition-normal);
}

.policy-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    transition: var(--transition-normal);
}

/* ========================================
   GALLERY SECTION
======================================== */

.gallery-section {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-cat-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-cat-btn:hover {
    background: var(--gray-300);
}

.gallery-cat-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 84, 144, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.btn-view-gallery {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.btn-view-gallery:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-item.hidden {
    display: none;
}

/* ========================================
   NEARBY ATTRACTIONS SECTION
======================================== */

.attractions {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.03), rgba(212, 175, 55, 0.03));
    padding: 5rem 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.attraction-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.attraction-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.attraction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.attraction-card .distance {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.attraction-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CONTACT SECTION - BOOKING FOCUS
======================================== */

.booking-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.booking-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.booking-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

.info-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ========================================
   RESPONSIVE - VILLA SPECIFIC
======================================== */

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-highlights {
        gap: 1rem;
    }

    .villa-features-grid {
        grid-template-columns: 1fr;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-slideshow {
        position: relative;
        top: 0;
    }

    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }

    .highlight-item {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .gallery-item {
        height: 200px;
    }

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

    .note-box {
        flex-direction: column;
    }
}


.hero-minimal {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-minimal .hero-content {
    display: none;
}

.hero-minimal .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Hero tagline in About section */
.hero-tagline-alt {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-style: italic;
    margin: -0.5rem 0 1.5rem 0;
    text-align: center;
}

/* ========================================
   HOTEL SECTION STYLES
======================================== */

.hotel-section {
    background: var(--white);
    padding: 5rem 0;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.hotel-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-text .lead {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-weight: 500;
}

.hotel-text p {
    color: var(--gray-600);
    line-height: 1.7;
}

.hotel-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1rem 0;
}

.hotel-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.hotel-feature:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.hotel-feature:hover i,
.hotel-feature:hover h4,
.hotel-feature:hover p {
    color: var(--white);
}

.hotel-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 40px;
    transition: var(--transition-normal);
}

.hotel-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
    transition: var(--transition-normal);
}

.hotel-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    transition: var(--transition-normal);
}

.hotel-timing-info {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    margin: 1.5rem 0;
}

.hotel-timing-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-timing-info p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1rem;
}

.hotel-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hotel-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hotel-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVE - ADDITIONAL STYLES
======================================== */

@media (max-width: 968px) {
    .hero-minimal {
        height: 70vh;
        min-height: 500px;
    }

    .hero-tagline-alt {
        font-size: 1.2rem;
    }

    .hotel-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hotel-image {
        height: 350px;
    }

    .hotel-buttons {
        flex-direction: column;
    }

    .hotel-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-minimal {
        height: 60vh;
        min-height: 400px;
    }

    .hero-tagline-alt {
        font-size: 1.1rem;
    }

    .hotel-feature {
        flex-direction: column;
        text-align: center;
    }

    .hotel-feature i {
        font-size: 2.5rem;
    }

    .hotel-image {
        height: 300px;
    }
}
/* ========================================
   IMAGE FIT FIXES - PASTE AT END OF STYLE.CSS
   Fixes high-resolution image cropping issues
   Created: 2024
======================================== */

/* ========================================
   HERO SECTION - FULL IMAGE VISIBLE
======================================== */
.hero {
    background-image: url('../images/hero/villa-hero-background.jpg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #1a5490 !important;
}

/* ========================================
   ABOUT & VILLA IMAGES - FULL IMAGE
======================================== */
.about-image img,
.villa-image-main img {
    object-fit: contain !important;
    object-position: center !important;
    background: #f8f9fa !important;
}

/* ========================================
   BEDROOM IMAGES - FULL IMAGE
======================================== */
.bedroom-image img,
.room-image img {
    object-fit: contain !important;
    object-position: center !important;
    background: #212529 !important;
}

/* ========================================
   AMENITY & FACILITY IMAGES - FULL IMAGE
======================================== */
.amenity-image img,
.facility-image img {
    object-fit: contain !important;
    object-position: center !important;
    background: #212529 !important;
}

/* ========================================
   GALLERY IMAGES - FULL IMAGE
======================================== */
.gallery-item img {
    object-fit: contain !important;
    object-position: center !important;
    background: #212529 !important;
}

/* ========================================
   VILLA IMAGE GRID - FULL IMAGE
======================================== */
.villa-image-grid img {
    object-fit: contain !important;
    object-position: center !important;
    background: #212529 !important;
}

/* ========================================
   HOTEL SECTION IMAGE - FULL IMAGE
======================================== */
.hotel-image img {
    object-fit: contain !important;
    object-position: center !important;
    background: #f8f9fa !important;
}

/* ========================================
   SLIDESHOW IMAGES - FULL IMAGE
======================================== */
.amenities-slideshow .slide img,
.services-slideshow .slide img,
.slideshow-container .slide img {
    object-fit: contain !important;
    object-position: center !important;
    background: #212529 !important;
}

/* ========================================
   SLIDESHOW CONTAINERS - PROPER STRUCTURE
======================================== */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.slideshow-container .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.slideshow-container .slide.active {
    display: flex;
}

.slideshow-container .slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.amenities-slideshow,
.services-slideshow {
    position: relative;
    min-height: 400px;
    max-height: 600px;
    background: #212529;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ========================================
   SLIDESHOW CONTROLS - POSITIONING
======================================== */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 8px;
    z-index: 10;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: #d4af37;
}

.slideshow-prev {
    left: 1rem;
}

.slideshow-next {
    right: 1rem;
}

/* ========================================
   GALLERY MODAL - FULL IMAGE
======================================== */
#galleryImage {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain !important;
    border-radius: 8px;
}

/* ========================================
   RESPONSIVE - MOBILE ADJUSTMENTS
======================================== */
@media (max-width: 968px) {
    .slideshow-container {
        height: 400px;
    }

    .amenities-slideshow,
    .services-slideshow {
        min-height: 350px;
        max-height: 500px;
    }

    .bedroom-image {
        height: 250px !important;
    }
}

@media (max-width: 576px) {
    .slideshow-container {
        height: 300px;
    }

    .amenities-slideshow,
    .services-slideshow {
        min-height: 250px;
        max-height: 400px;
    }

    .bedroom-image {
        height: 200px !important;
    }

    .about-image img,
    .hotel-image img,
    .villa-image-main img {
        max-height: 300px;
    }

    .slideshow-prev,
    .slideshow-next {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
    }
}
/* ========================================
   PERFECT IMAGE FIT - NO CROPPING, NO GAPS
   Paste this at the END of your style.css
======================================== */

/* ========================================
   SOLUTION: USE COVER WITH PROPER SIZING
   This fills the box completely without gaps
======================================== */

/* ========================================
   ALTERNATIVE: SMART RESPONSIVE SIZING
   Images scale to fit without distortion
======================================== */

/* Hero - Always cover (full screen) */
.hero {
    background-size: cover !important;
    background-position: center !important;
}

/* Bedroom images - Cover to fill */
.bedroom-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.bedroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About/Villa images - Cover to fill */
.about-image img,
.villa-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Slideshow - Cover to fill */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.slideshow-container .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.slideshow-container .slide.active {
    display: block;
}

.slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.amenities-slideshow,
.services-slideshow {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.amenities-slideshow .slide img,
.services-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gallery - Cover to fill */
.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hotel section - Cover to fill */
.hotel-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Villa image grid - Cover to fill */
.villa-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* ========================================
   RESPONSIVE - MOBILE ADJUSTMENTS
======================================== */

@media (max-width: 968px) {
    .slideshow-container,
    .amenities-slideshow,
    .services-slideshow {
        height: 400px;
    }

    .bedroom-image {
        height: 250px;
    }

    .about-image img,
    .villa-image-main img,
    .hotel-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .slideshow-container,
    .amenities-slideshow,
    .services-slideshow {
        height: 300px;
    }

    .bedroom-image {
        height: 200px;
    }

    .about-image img,
    .villa-image-main img,
    .hotel-image img {
        height: 300px;
    }

    .gallery-item {
        height: 200px;
    }

    .villa-image-grid img {
        height: 150px;
    }
}

/* ========================================
   END OF PERFECT IMAGE FIT
======================================== */
