/* ========================================
   HOMEPAGE.CSS - Clean Standard Layout with Sliced Slider
   ======================================== */

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* --- Booking Widget - Luxury Design --- */
.booking-widget {
    background: var(--bg-white);
    padding: 2rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 20;
    border-top: 3px solid var(--luxury-gold);
}

.booking-form {
    display: flex;
    gap: 0;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-right: 1px solid var(--border-primary);
    padding: 0 1.5rem;
}

.booking-form .form-group:last-of-type {
    border-right: none;
}

.booking-form label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.booking-form input,
.booking-form select,
.guest-selector {
    height: 40px;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.booking-form input::placeholder {
    color: var(--text-muted);
}

.booking-form input[type="date"] {
    color-scheme: light;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-bottom-color: var(--luxury-gold);
}

.guest-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-bottom: 2px solid transparent;
}

.guest-selector:hover {
    border-bottom-color: var(--luxury-gold);
}

.guest-selector i {
    color: var(--luxury-gold);
    font-size: 0.875rem;
}

.btn-search {
    height: 56px;
    padding: 0 3rem;
    margin-left: 1.5rem;
    white-space: nowrap;
    background: var(--gradient-gold);
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    font-family: var(--font-body);
}

.btn-search:hover {
    background: var(--luxury-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
}

.btn-search:active {
    transform: translateY(0);
}

/* --- Responsive Booking Widget --- */
@media (max-width: 1024px) {
    .booking-form {
        flex-wrap: wrap;
        padding: 0 1.5rem;
    }

    .booking-form .form-group {
        flex: 1 1 45%;
        border-right: none;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .btn-search {
        margin-left: 0;
        flex: 1 1 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 2rem 0;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1.5rem;
    }

    .booking-form .form-group {
        flex: 1 1 100%;
        width: 100%;
        padding: 0;
        margin-bottom: 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border-primary);
        padding-bottom: 1rem;
    }

    .booking-form .form-group:last-of-type {
        border-bottom: none;
        margin-bottom: 1rem;
    }

    .btn-search {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ========================================
   HOTEL INTRO SECTION (Add underneath booking widget)
   ======================================== */

.hotel-intro-section {
    position: relative;
    overflow: hidden;
}

.hotel-intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hotel-intro-text {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.intro-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--luxury-navy, #1B3B6F);
    margin-bottom: 2rem;
}

.intro-description {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary, #666);
}

.hotel-intro-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-img-wrapper {
    width: 600px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.diamond-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hotel-intro-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hotel-intro-text {
        max-width: 100%;
        padding-right: 0;
    }

    .diamond-img-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }

    .diamond-img-wrapper {
        width: 300px;
        height: 300px;
    }
}

/* ========================================
   SLICED SLIDER SECTION - LUXURY DESIGN
   ======================================== */

.sliced-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--bg-cream);
}

.sliced-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.sliced-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.sliced-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Left Panel - White/Cream Background */
.sliced-left {
    background: var(--bg-white);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 5%;
    position: relative;
    border-right: 1px solid var(--border-light);
}

.sliced-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

/* Price Tag - Luxury Gold */
.price-tag {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--luxury-gold);
    margin-bottom: 2rem;
    align-self: flex-start;
}

.price-from {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--luxury-gold);
    letter-spacing: -1px;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Room Title - Elegant Serif */
.room-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-heading);
}

/* Room Specs - Gold Icons */
.room-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--luxury-gold);
}

.spec-divider {
    color: var(--border-primary);
}

/* Room Description */
.room-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Explore Button - Gold */
.btn-explore {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    box-shadow: var(--shadow-md);
}

.btn-explore:hover {
    background: var(--luxury-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
}

/* Navigation Controls - Refined */
.sliced-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
}

.sliced-prev,
.sliced-next {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
    font-weight: 600;
}

.sliced-prev:hover,
.sliced-next:hover {
    color: var(--luxury-gold);
}

.nav-line {
    width: 40px;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-base);
}

.sliced-prev:hover .nav-line,
.sliced-next:hover .nav-line {
    width: 60px;
}

.nav-text {
    font-weight: 600;
}

/* Slide Counter - Elegant */
.sliced-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.current-slide {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--luxury-gold);
}

.counter-divider {
    color: var(--border-primary);
}

.total-slides {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Right Panel - Image */
.sliced-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.sliced-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sliced-slide.active .sliced-right img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

/* ========================================
   HORIZONTAL IMAGE GALLERY (OFFERS) - LUXURY
   ======================================== */

.horizontal-gallery-section {
    padding: 8rem 0;
    background: var(--bg-white);
    text-align: center;
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 4rem;
}

.gallery-subtitle {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-heading);
}

/* Horizontal Gallery */
.horizontal-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 0 5%;
    justify-content: center;
}

.gallery-item {
    flex: 0 0 auto;
    width: 908px;
    max-width: 90vw;
    transition: transform var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

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

/* Gallery Footer */
.gallery-footer {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-gallery {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.btn-gallery:hover {
    background: var(--luxury-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
}

/* ========================================
   LUXURY MEETINGS SECTION
   ======================================== */

.luxury-meetings-section {
    padding: 8rem 0;
    background: var(--bg-cream);
}

/* Luxury Header */
.luxury-meetings-header {
    text-align: center;
    margin-bottom: 4rem;
}

.luxury-subtitle {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-heading);
}

/* Luxury Meetings Slider */
.luxury-meetings-slider {
    max-width: 1200px;
    margin: 0 auto 4rem;
    overflow: hidden;
}

.luxury-slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.luxury-slider-track::-webkit-scrollbar {
    display: none;
}

.luxury-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
}

.luxury-slide img {
    width: 100%;
    height: 547px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Luxury Content Grid */
.luxury-meetings-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* Left: Description */
.luxury-description h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.luxury-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-luxury {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-luxury:hover {
    background: var(--luxury-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
}

/* Right: Features */
.luxury-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Centered Features (Alternative Layout) */
.luxury-features-centered {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.luxury-feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--luxury-gold);
    border-radius: 50%;
}

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

.luxury-feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.luxury-feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Meeting Specifications Cards */
.meeting-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.spec-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.spec-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 4rem;
    text-align: center;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 2.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
}

.amenity-item i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .sliced-slide {
        grid-template-columns: 50% 50%;
    }

    .room-title {
        font-size: 2.5rem;
    }

    .sliced-left {
        padding: 3rem 4%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .booking-form {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-form .form-group {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.8rem 0;
    }

    .booking-form .form-group:last-of-type {
        border-bottom: none;
    }

    .btn-search {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Tablet and Mobile - Sliced Slider Responsive */
    .sliced-slider-section {
        height: auto;
        min-height: auto;
    }

    .sliced-slide {
        grid-template-columns: 1fr;
        /* Keep position absolute to maintain visibility control */
        position: absolute;
        height: auto;
        min-height: auto;
    }

    .sliced-slide.active {
        position: relative;
    }

    .sliced-left {
        order: 2;
        padding: 2.5rem 1.5rem;
        min-height: auto;
        border-right: none;
        border-top: 1px solid var(--border-light);
    }

    .sliced-right {
        order: 1;
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .sliced-content {
        max-width: 100%;
    }

    .room-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .room-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .price-tag {
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .price-from {
        font-size: 1.75rem;
    }

    .sliced-nav {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-dots {
        order: 1;
        margin-bottom: 1rem;
    }

    .nav-arrows {
        order: 2;
        justify-content: center;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .room-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .sliced-slider-section {
        min-height: auto;
    }

    .sliced-left {
        padding: 2rem 1rem;
    }

    .sliced-right {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }

    .room-title {
        font-size: 1.5rem;
    }

    .price-from {
        font-size: 1.5rem;
    }

    .room-description {
        font-size: 0.9rem;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
}


/* Guest Picker UI - Dropdown */

.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
    color: #333;
}

.guest-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.guest-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.guest-counter-row:last-child {
    border-bottom: none;
}

.counter-label {
    display: flex;
    flex-direction: column;
}

.counter-title {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.counter-subtitle {
    font-size: 0.8rem;
    color: #888;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    width: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.guest-dropdown-footer {
    padding-top: 1rem;
    text-align: right;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
}

.btn-done {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-done:hover {
    background: var(--dark-gold);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Location Section Responsive */
@media (max-width: 768px) {
    .location-section {
        padding: 3rem 0 !important;
    }

    #location .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    #location h3 {
        font-size: 1.5rem !important;
    }

    #location p {
        font-size: 1rem !important;
    }

    #location iframe {
        height: 300px !important;
    }

    #location .section-header {
        text-align: center;
    }

    #location .section-title {
        font-size: 1.75rem;
    }

    #location .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 2rem 0 !important;
    }

    #location .container {
        padding: 0 1rem;
    }

    #location h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }

    #location p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    #location iframe {
        height: 250px !important;
        border-radius: 10px !important;
    }

    #location .section-title {
        font-size: 1.5rem;
    }

    #location i[class*="fa-"] {
        font-size: 1.2rem !important;
    }

    #location h4 {
        font-size: 1rem !important;
    }

    #location div[style*="gap: 1.5rem"] {
        gap: 1rem !important;
    }
}

#location div[style*="gap: 1.5rem"] {
    gap: 1rem !important;
}
}