@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
    --bg-primary: #F9F3EA;
    --accent-primary: #B38E55;
    --accent-secondary: #DBCDA3;
    --text-dark: #333333;
    --text-light: #666666;
    --blue-dark: #2E4A6A;
    --blue-light: #5F85A5;
    --white: #FFFFFF;
    --header-dark: #2C2C2C;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
}


/* global classd for text6 aling start */
.text-start {
    text-align: start;
}

/* Top Header Bar */
.top-header {
    background: rgba(179, 142, 85, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.top-header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.top-header-contact {
    color: var(--white, #FFFFFF);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-header-contact:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.top-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-header-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0.2rem 0;
}

.top-header-branding::before,
.top-header-branding::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.top-header-branding::before {
    left: -40px;
}

.top-header-branding::after {
    right: -40px;
}

.musafir-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white, #FFFFFF);
    text-transform: uppercase;
    margin-bottom: 0.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    display: inline-block;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.musafir-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    opacity: 0.8;
    border-radius: 2px;
}

.nature-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    opacity: 0.9;
    font-style: italic;
    margin-top: 0.05rem;
}

.top-header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--white, #FFFFFF);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Marquee Container */
.marquee-container {
    background: linear-gradient(135deg, rgba(179, 142, 85, 0.98) 0%, rgba(107, 91, 61, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: var(--white, #FFFFFF);
    padding: 0.75rem 0;
    position: sticky;
    top: 50px; /* Position below main header (reduced from 70px) */
    z-index: 1000;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
}

.marquee-container.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.marquee-container.hidden .marquee-loading {
    display: none;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(179, 142, 85, 0.98) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(179, 142, 85, 0.98) 100%);
}

.marquee-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem 0;
}

.loading-animation {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.marquee-content {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    padding: 0;
    color: var(--white, #FFFFFF);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
    opacity: 1;
}

.marquee-content span {
    display: inline-block;
    white-space: nowrap;
    padding-right: 4rem;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-container:hover .marquee-content span {
    opacity: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header Navigation */
.header {
    background-color: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.6rem 5%;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 142, 85, 0.3), transparent);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.brand-name {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin-left: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent-primary);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: var(--accent-secondary);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-menu .dropdown-icon {
    font-size: 0.7rem;
    margin-top: 2px;
    transition: transform 0.3s;
}

.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--header-dark);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-menu li.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s, padding-left 0.3s;
}

.nav-menu .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.reservations-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--white);
    padding: 0.55rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(179, 142, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.reservations-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.reservations-btn:hover::before {
    left: 100%;
}

.reservations-btn:hover {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 142, 85, 0.4);
}

.hamburger-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600');
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

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

/* Booking Form Overlay */
.booking-form-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(10px);
    padding: 2.5rem 3rem;
    border-radius: 8px;
    z-index: 10;
    min-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-form-fields {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field-group label {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-field-group select {
    padding: 0.9rem 1rem;
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-field-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-primary);
}

.booking-form-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.more-options-link {
    color: var(--white);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.more-options-link .plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.more-options-link:hover {
    color: var(--accent-secondary);
}

.book-now-btn {
    background-color: var(--accent-primary);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

.book-now-btn:hover {
    background-color: var(--accent-secondary);
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
}

.hero-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-slider-dot.active {
    background-color: var(--white);
    width: 14px;
    height: 14px;
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Booking Bar (for other sections) */
.booking-bar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(179, 142, 85, 0.15);
    margin-top: -60px;
    position: relative;
    z-index: 100;
    border-radius: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(179, 142, 85, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.booking-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
}

.booking-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--blue-dark) 100%);
    border-radius: 24px 24px 0 0;
}

.booking-bar-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.8px;
    font-style: italic;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    margin-top: 0;
}

.label-icon {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1;
}

.date-input-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
    min-height: 50px;
}

.date-input-wrapper::after {
    content: '📅';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    font-size: 1.1rem;
    opacity: 0.6;
}

.date-input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.date-input:hover {
    border-color: var(--accent-primary);
}

.date-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(179, 142, 85, 0.1);
}

.date-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    padding-right: 3rem;
    border: 2px solid rgba(179, 142, 85, 0.2);
    border-radius: 12px;
    background-color: var(--white);
    color: #999;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.date-input-wrapper:hover .date-display {
    border-color: var(--accent-primary);
}

.date-input:focus + .date-display {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(179, 142, 85, 0.1);
}

.date-input:not([value=""]) + .date-display {
    border-color: var(--accent-primary);
    color: var(--text-dark);
    font-weight: 500;
}


.select-input {
    width: 100%;
    padding: 1rem 1.2rem;
    padding-right: 3rem;
    border: 2px solid rgba(179, 142, 85, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B38E55' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 12px;
    font-weight: 500;
}

.select-input:hover {
    border-color: var(--accent-primary);
}

.select-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(179, 142, 85, 0.1);
}

.book-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(179, 142, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 142, 85, 0.4);
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:active {
    transform: translateY(-1px);
}

.book-btn svg {
    transition: transform 0.3s ease;
}

.book-btn:hover svg {
    transform: translateX(4px);
}

/* Section Styles */
.section {
    padding: 5rem 5%;
}

/* Consistent section content wrapper: same max-width & padding so all sections align at any zoom */
.site-container,
.section-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-child.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section fade-in animations */
section {
    animation: fadeInUp 1s ease-out;
}

/* Experience card animations */
.experience-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.experience-card img {
    transition: transform 0.5s ease;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* ============================================
   STANDARDIZED HEADING STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.section-header h2:hover {
    transform: translateY(-2px);
    color: var(--blue-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: fadeIn 1s ease-out 0.3s both;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* CORE EXPERIENCES: 4 cards in one row on desktop, responsive below */
.core-experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .core-experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .core-experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* PROPERTY FEATURES: 3 cards in one row on desktop */
.property-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .property-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Sustainability section: 5 in a row on large screens, responsive below */
.sustainability-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .sustainability-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
}

/* Standardized H2 headings */
h2.page-heading,
h2.section-heading {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

h2.page-heading::after,
h2.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

/* Standardized H3 headings */
h3.sub-heading,
h3.card-heading {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

h3.sub-heading:hover,
h3.card-heading:hover {
    transform: translateY(-2px);
    color: var(--blue-dark);
}

h3.content-heading {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

/* Standardized H4 headings */
h4.feature-heading {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
    transition: color 0.3s ease, transform 0.3s ease;
}

h4.feature-heading:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

h4.small-heading {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

/* About/Experience Section */
.experience-section {
    background-color: var(--white);
}

.experience-content {
    text-align: center;
}

.experience-content h2 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.experience-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Properties Slider Section */
.properties-slider-section {
    padding: 5rem 5%;
    background-color: var(--bg-primary);
}

/* Satpura section - compact 4 cards, less height */
.satpura-section {
    padding: 3rem 5% !important;
}

.satpura-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.satpura-card {
    background: var(--white);
    border: 1px solid rgba(179, 142, 85, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.satpura-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.satpura-card-image-wrap {
    height: 200px;
    overflow: hidden;
}

.satpura-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.satpura-card:hover .satpura-card-image {
    transform: scale(1.04);
}

.satpura-card-content {
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.satpura-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.satpura-card-sep {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.satpura-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1200px) {
    .satpura-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .satpura-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .satpura-card-image-wrap {
        height: 170px;
    }
    .satpura-section {
        padding: 2rem 5% !important;
    }
}

/* Compact 4-card sections (Stay/Cottages, Farmstay Experiences) - less height */
.compact-cards-section {
    padding: 3rem 5% !important;
}

.compact-cards-section .lodges-programs-header,
.compact-cards-section .about-services-header {
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .compact-cards-section {
        padding: 2rem 5% !important;
    }
}

.properties-header {
    text-align: center;
    margin-bottom: 4rem;
}

.properties-title {
    font-size: 3rem;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.properties-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: fadeIn 1s ease-out 0.3s both;
}

.properties-title-line {
    width: 200px;
    height: 2px;
    background-color: var(--accent-primary);
    margin: 0 auto;
}

.properties-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.properties-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.properties-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.property-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0; /* Prevents flex items from overflowing */
}

/* When property-card is in a grid layout */
.properties-grid .property-card,
[style*="grid-template-columns"] .property-card,
.grid .property-card {
    flex: none;
    width: 100%;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.property-card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.property-card:hover .property-card-image {
    transform: scale(1.05);
}

.property-card-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.property-card-title {
    font-size: 1.75rem;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
    transition: color 0.3s ease, transform 0.3s ease;
}

.property-card:hover .property-card-title {
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.property-separator {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1rem 0;
    font-weight: 300;
}

.property-card-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.properties-nav-arrow {
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.properties-nav-arrow:hover {
    color: var(--accent-primary);
}

.properties-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.properties-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.properties-dot.active {
    background-color: var(--text-light);
    border-color: var(--text-light);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--blue-dark);
}

/* Lodges & Programs Section */
.lodges-programs-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-primary) 100%);
    position: relative;
}

.lodges-programs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lodges-programs-main-title {
    font-size: 3rem;
    color: var(--accent-primary);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
}

.lodges-programs-title-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    margin: 0 auto 1.5rem;
}

.lodges-programs-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.lodges-programs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: stretch;
}

.lodges-program-card {
    flex: 1;
    max-width: 550px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.lodges-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
}

.lodges-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 142, 85, 0.05) 0%, rgba(46, 74, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    pointer-events: none;
}

.lodges-program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lodges-program-card:hover::before {
    opacity: 1;
}

.lodges-program-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.lodges-program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lodges-program-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.lodges-program-card:hover .lodges-program-image {
    transform: scale(1.1);
}

.lodges-program-card:hover .lodges-program-image-overlay {
    opacity: 1;
}

.lodges-program-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), var(--white));
}

.lodges-program-title {
    font-size: 2rem;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    transition: color 0.4s, letter-spacing 0.4s, transform 0.4s;
    animation: fadeInUp 0.8s ease-out;
}

.lodges-program-card:hover .lodges-program-title {
    color: var(--blue-dark);
    letter-spacing: 2.5px;
    transform: translateY(-2px);
}

.lodges-program-separator {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin: 1.5rem 0;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.8;
    transition: transform 0.4s, opacity 0.4s;
}

.lodges-program-card:hover .lodges-program-separator {
    transform: scale(1.2);
    opacity: 1;
}

.lodges-program-text {
    color: var(--text-dark);
    line-height: 2;
    font-size: 1.05rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    transition: color 0.4s;
}

.lodges-program-card:hover .lodges-program-text {
    color: var(--text-light);
}

.lodges-program-link-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.lodges-program-link {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.lodges-program-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--blue-dark));
    transition: left 0.4s;
    z-index: -1;
}

.lodges-program-link:hover {
    color: var(--white);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 142, 85, 0.3);
}

.lodges-program-link:hover::before {
    left: 0;
}

/* About & Services Section */
.about-services-section {
    padding: 7rem 5%;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(179, 142, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 74, 106, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.about-services-main-title {
    font-size: 3.5rem;
    color: var(--accent-primary);
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.about-services-title-line {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    margin: 0 auto 2rem;
    position: relative;
}

.about-services-title-line::before,
.about-services-title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

.about-services-title-line::before {
    left: -4px;
}

.about-services-title-line::after {
    right: -4px;
}

.about-services-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-style: italic;
}

.about-services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-service-card {
    flex: 1;
    max-width: 600px;
    background-color: var(--white);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--blue-dark));
    opacity: 0;
    transition: opacity 0.5s;
}

.about-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.about-service-card:hover::after {
    opacity: 1;
}

.about-service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-primary), var(--blue-dark));
}

.about-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s;
    filter: brightness(1);
}

.about-service-card:hover .about-service-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.about-service-content {
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.about-service-title {
    font-size: 2rem;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    transition: letter-spacing 0.4s, color 0.4s, transform 0.4s;
    animation: fadeInUp 0.8s ease-out;
}

.about-service-card:hover .about-service-title {
    letter-spacing: 2.5px;
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.about-service-separator {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin: 0;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.7;
    transition: all 0.4s;
    line-height: 1;
}

.about-service-card:hover .about-service-separator {
    opacity: 1;
    transform: scale(1.15);
    color: var(--blue-dark);
}

/* Video Section */
.video-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-primary) 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.video-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-section-title {
    font-size: 3rem;
    color: var(--accent-primary);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
}

.video-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


.video-decoration-left,
.video-decoration-right {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--blue-dark));
    opacity: 0.05;
    z-index: 0;
}

.video-decoration-left {
    top: -100px;
    left: -100px;
}

.video-decoration-right {
    bottom: -100px;
    right: -100px;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Nature, Birds & Sky - 4 cards grid */
.nature-sky-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .nature-sky-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nature-sky-cards-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: linear-gradient(135deg, var(--accent-primary), var(--blue-dark));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: scale(1.05);
}

.program-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.program-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--bg-primary);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(179, 142, 85, 0.03) 10px, rgba(179, 142, 85, 0.03) 20px);
    color: var(--text-dark);
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 142, 85, 0.2), transparent);
}

.footer-main-heading {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.footer-main-heading h2 {
    font-size: 1.75rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-main-heading > p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

.footer-contact-item {
    color: var(--text-dark);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
}

.footer-contact-item:hover {
    color: var(--accent-primary);
    padding-left: 8px;
    background-color: rgba(179, 142, 85, 0.05);
}

.footer-main-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.footer-left-section,
.footer-right-section,
.footer-nav-section {
    flex: 1;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.footer-nav-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-nav-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-left-section {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-left-section h3,
.footer-right-section h3,
.footer-nav-section h3 {
    font-size: 1.15rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-left-section h3::after,
.footer-nav-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 2px;
}

.footer-nav-section h3 {
    margin-bottom: 1.5rem;
}

.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1.5px solid rgba(179, 142, 85, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.footer-contact-btn:hover::before {
    left: 100%;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(179, 142, 85, 0.2);
    border-color: rgba(179, 142, 85, 0.4);
}

.footer-phone-btn:hover {
    background: linear-gradient(135deg, rgba(179, 142, 85, 0.1) 0%, rgba(179, 142, 85, 0.05) 100%);
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-contact-btn-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-phone-btn .footer-contact-btn-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--blue-dark) 100%);
    color: white;
}

.footer-whatsapp-btn .footer-contact-btn-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.footer-contact-btn:hover .footer-contact-btn-icon {
    transform: scale(1.1) rotate(5deg);
}

.footer-contact-btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-contact-btn-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-btn-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-contact-btn:hover .footer-contact-btn-value {
    color: var(--accent-primary);
}

.footer-whatsapp-btn:hover .footer-contact-btn-value {
    color: #25D366;
}

.footer-social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1.5px solid rgba(179, 142, 85, 0.2);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.footer-social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(179, 142, 85, 0.2);
    border-color: rgba(179, 142, 85, 0.4);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.footer-social-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-social-icon-btn:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-icon-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.footer-facebook-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.footer-facebook-icon:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.4);
    transform: translateY(-3px);
}

.footer-twitter-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-twitter-icon:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.footer-youtube-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.footer-youtube-icon:hover {
    background: linear-gradient(135deg, #CC0000 0%, #FF0000 100%);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}


.footer-partner-logos {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-partner-item {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-nav-section {
    text-align: left;
    margin: 0;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 0;
}

.footer-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.footer-nav-links a:hover::before {
    width: 6px;
}


.footer-nav-links-bottom {
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(179, 142, 85, 0.15);
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-3px);
}

.scroll-to-top-btn svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   PAGE HEADER SECTION
   ============================================ */
.page-header-section {
    position: relative;
    overflow: hidden;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: rgba(255, 255, 255, 1);
}

.page-title {
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Cards */
.contact-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
}

/* Team Cards */
.team-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-form-overlay {
        min-width: 500px;
        padding: 2rem 2.5rem;
    }

    .booking-bar {
        padding: 2.5rem 2rem;
    }

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

@media (max-width: 768px) {
    .booking-bar {
        padding: 2rem 1.5rem;
        margin-top: -40px;
        border-radius: 20px;
    }

    .booking-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .booking-subtitle {
        font-size: 0.9rem;
    }
    
    .date-input-wrapper::after {
        display: none;
    }
    
    .date-display {
        padding-right: 1.2rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .book-btn {
        width: 100%;
        padding: 1.1rem 2rem;
    }

    .page-header-section {
        padding: 4rem 5% 2.5rem !important;
    }

    .page-title {
        font-size: 2.5rem !important;
    }

    .page-subtitle {
        font-size: 1.1rem !important;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
    }

    .nav-menu li.dropdown:hover .dropdown-menu,
    .nav-menu li.dropdown.active .dropdown-menu {
        display: block;
    }

    .hamburger-menu {
        display: block;
    }

    .top-header {
        padding: 0.35rem 0;
    }

    .top-header-container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.4rem 3%;
    }

    .top-header-left,
    .top-header-center,
    .top-header-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .top-header-center {
        order: -1;
    }

    .top-header-branding::before,
    .top-header-branding::after {
        display: none;
    }

    .top-header-contact {
        font-size: 0.85rem;
        padding: 0.3rem 0.9rem;
    }

    .musafir-text {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .nature-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .marquee-container {
        top: 60px; /* Adjusted for smaller header on tablet/mobile */
        padding: 0.75rem 0;
    }
    
    .marquee-container.hidden {
        transform: translateY(-100%);
    }

    .marquee-content {
        font-size: 0.85rem;
        letter-spacing: 0.6px;
    }

    .top-header-social {
        justify-content: center;
        gap: 0.5rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .header {
        padding: 0.5rem 3%;
    }

    .header-left {
        gap: 0.5rem;
    }

    .brand-name {
        font-size: 0.7rem;
        letter-spacing: 0.6px;
    }

    .header-logo img {
        height: 36px;
        width: 36px;
    }

    .reservations-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .booking-form-overlay {
        min-width: 90%;
        padding: 1.5rem 2rem;
        left: 5%;
        transform: translateY(-50%);
    }

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

    .book-now-btn {
        width: 100%;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }


    .properties-slider-container {
        gap: 1rem;
    }

    .properties-nav-arrow {
        font-size: 2rem;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .property-card {
        min-width: 100%;
    }

    .properties-title {
        font-size: 2rem;
    }

    .property-card-title {
        font-size: 1.2rem;
    }

    .lodges-programs-main-title {
        font-size: 2rem;
    }

    .lodges-programs-subtitle {
        font-size: 1rem;
    }

    .lodges-programs-container,
    .about-services-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-services-main-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .about-services-subtitle {
        font-size: 1rem;
    }

    .about-services-title-line {
        width: 120px;
    }

    .about-services-container {
        gap: 3rem;
    }

    .lodges-program-card,
    .about-service-card {
        max-width: 100%;
    }

    .about-service-image-wrapper {
        height: 400px;
    }

    .about-service-content {
        padding: 2.5rem 2rem;
        min-height: 150px;
    }

    .about-service-title {
        font-size: 1.5rem;
    }

    .lodges-program-image-wrapper,
    .about-service-image-wrapper {
        height: 350px;
    }

    .lodges-program-content,
    .about-service-content {
        padding: 2rem 1.5rem;
    }

    .video-section-title {
        font-size: 2rem;
    }

    .video-section-subtitle {
        font-size: 1rem;
    }

    .video-container {
        border-radius: 15px;
    }

    .hero-slider-dots {
        bottom: 40px;
        padding: 8px 15px;
        gap: 10px;
    }

    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider-dot.active {
        width: 12px;
        height: 12px;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-main-heading {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

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

    .footer-nav-section {
        text-align: center;
    }

    .footer-nav-links {
        align-items: center;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-contact-buttons {
        gap: 0.875rem;
    }

    .footer-contact-btn {
        padding: 0.875rem 1rem;
    }

    .footer-contact-btn-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-btn-value {
        font-size: 0.9rem;
    }

    .footer-social-card {
        padding: 0.875rem 1rem;
    }

    .footer-social-icons {
        gap: 1rem;
    }

    .footer-social-icon-btn {
        width: 40px;
        height: 40px;
    }

    .footer-social-icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .footer-partner-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top-btn svg {
        width: 26px;
        height: 26px;
    }

    #whatsappButton,
    #callButton {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    #whatsappButton {
        bottom: 80px;
    }

    #whatsappButton svg,
    #callButton svg {
        width: 26px;
        height: 26px;
    }

    /* About Section Responsive */
    .experience-section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .core-experiences-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .property-features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .experience-section [style*="height: 500px"] {
        height: 300px !important;
    }

    .experience-section [style*="height: 220px"] {
        height: 200px !important;
    }

    .experience-section [style*="padding: 3.5rem"] {
        padding: 2rem !important;
    }

    .experience-section [style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    .experience-section [style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }

    .experience-section [style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }

    .experience-section [style*="font-size: 2.25rem"] {
        font-size: 1.75rem !important;
    }
}
