:root {

    --black: #000000;
    --color-0f3478: #0f3478;
    --color-155724: #155724;
    --color-1a4fa0: #1a4fa0;
    --color-333: #333;
    --color-444: #444;
    --color-721c24: #721c24;
    --color-c3e6cb: #c3e6cb;
    --color-d4edda: #d4edda;
    --color-e0e0e0: #e0e0e0;
    --color-e7bb2d: #e7bb2d;
    --color-f5c6cb: #f5c6cb;
    --color-f8d7da: #f8d7da;
    --color-f9f3e8: #f9f3e8;
    --color-fff3d9: #fff3d9;
    --white: #ffffff;
}

/* visit.css */
@font-face {
    font-family: 'Allomira';
    src: url("../fonts/Allomira-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Allomira';
    src: url("../fonts/Allomira-Black.ttf") format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {

    --blue: #1a4fa0;
    --blue-dark: #0f3478;
    --gold: #E7BB2D;
    --cream: #f9f3e8;
    --white: #ffffff;
    --text: #000000;
    --font-body: "Lato", sans-serif;
    --font-head: "Allomira Black", "Allomira", serif;
}

body {

    margin: 0;
    padding: 0;
    color: var(--text);
    overflow-x: hidden;
    padding-top: 180px;
    /* Header space for desktop */

}

@media (max-width: 1024px) {

    body {

        padding-top: 0;
}
}

img {

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

/* =========================================
   HERO SECTION 
   ========================================= */
.visit-hero {

    position: relative;
    width: 100%;
    min-height: 70vh !important;
    /* Good default height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    margin-top: -2px;
    z-index: 20;
}

@keyframes bannerZoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.hero-bg-img {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    z-index: -1;
    animation: bannerZoomOut 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.visit-hero-content {

    color: var(--white);
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-40px) !important;
}

.visit-hero-content h1 {

    line-height: 1.1;
    margin: 0 0 20px 0;
    color: var(--gold);
    text-shadow: none;
}

.visit-hero-content p {

    line-height: 1.6;
    text-shadow: none;
    margin: 0;
    max-width: 950px;
    color: var(--white);
}

.desktop-br {

    display: block;
}

/* =========================================
   INVITE SECTION 
   ========================================= */
.visit-invite {

    position: relative;
    width: 100%;
    min-height: 600px;
    background: var(--white);
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    /* Moved upward */
    padding-top: 50px;
}

.invite-inner {

    display: flex;
    width: 100%;
    max-width: 1400px;
    z-index: 1;
}

/* Left Section */
.invite-left {

    flex: 1.1;
    padding: 80px 2% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: -5%;
}

.invite-title {

    color: var(--blue);
    margin-bottom: 30px;
}

.invite-desc p {

    line-height: 1.6;
    /* Improved readability */
    color: black;
    margin-bottom: 25px;
    max-width: 500px;
    /* Slightly narrower to match requirement image */

}

.invite-pattern-wrap {

    position: absolute;
    bottom: 40px;
    left: -100px;
    /* Moved further left to accommodate larger size */
    width: 50%;
    /* Significantly increased size */
    max-width: 1200px;
    line-height: 0;
    z-index: 0;
    opacity: 0.6;
}

.invite-pattern {

    width: 100%;
    height: auto;
}

/* Right Section Card Layout */
.invite-right {

    flex: 0.9;
    display: flex;
    justify-content: flex-start;
    /* Align content to the left of its half */
    align-items: center;
    padding: 40px 0;
    /* Reduced padding */
    margin-top: 5%;
    margin-left: -20%;
    /* Shifted entire right side leftward */

}

.invite-card {

    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invite-image-container {

    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -70px;
    position: relative;
    z-index: 2;
    transform: translateX(-15%);
    /* Cow shifted left */

}

.invite-cow-img {

    width: 65%;
    height: auto;
}

.invite-yellow-card {

    width: 100%;
    background: var(--color-fff3d9);
    padding: 80px 50px 50px 50px;
    border-radius: 8px;
    transform: translateX(10%);
    /* Box shifted right */
    position: relative;
    z-index: 1;
}

.invite-list {

    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.invite-list li {

    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--blue);
    line-height: 1.4 !important;
}

.invite-list li::before {

    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
}

.list-intro {

    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}

.trust-msg {

    font-weight: 500;
    color: black;
}

.timing-desc,
.contact-desc,
.contact-footer {

    color: black !important;
}

/* Form Messages and Alert Styles */
.form-messages {

    max-width: 400px;
    margin: 0 auto 30px auto;
}

.alert {

    padding: 15px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.alert-success {

    background-color: var(--color-d4edda);
    color: var(--color-155724);
    border: 1px solid var(--color-c3e6cb);
}

.alert-error,
.alert-danger {

    background-color: var(--color-f8d7da);
    color: var(--color-721c24);
    border: 1px solid var(--color-f5c6cb);
}

/* =========================================
   EXPERIENCE SECTION 
   ========================================= */
.visit-experience {

    position: relative;
    padding: 120px 5%;
    background-image: url('../images/visit/Experience_BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
    overflow: hidden;
    max-height: 1100px !important;
}



.exp-inner {

    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -5%;
}

.exp-title {

    color: var(--blue);
    text-align: center;
    margin-bottom: 20px;
}

.exp-subtitle {

    color: black;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
    line-height: 1.6;
}

.exp-content p {

    color: black !important;
}

.exp-timeline {

    position: relative;
    width: 100%;
}

/* Timeline Path SVG */
.exp-line-container {

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
}

.exp-line-img {

    width: 100%;
    height: auto;
}

.desktop-line-only {

    display: block;
}



.desktop-main-only {

    display: none;
}

/* Hide main timeline on mobile/tablet */
@media (max-width: 1279px) {

    .desktop-main-only {

        display: none !important;
}

    .desktop-line-only {

        display: block;
}
}

/* Show main timeline on desktop */
@media (min-width: 1280px) {

    .desktop-main-only {

        display: block !important;
}

    .desktop-line-only {

        display: none !important;
}
}

.exp-main-img {

    width: 100%;
    height: auto;
}

.exp-line-svg {

    width: 0%;
    height: 0%;
}

.exp-item {

    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.exp-left {

    flex-direction: row;
    justify-content: flex-start;
}

.exp-right {

    flex-direction: row-reverse;
    justify-content: flex-start;
}

.exp-icon-wrap {

    width: 120px;
    height: 120px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1280px) {

    .exp-icon-wrap {

        display: none !important;
}
}

.exp-icon-wrap img {

    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exp-content {

    max-width: 380px;
    padding: 0 40px;
}

.exp-left .exp-content {

    text-align: left;
}

.exp-right .exp-content {

    text-align: left;
    /* Image shows text on the left even for right items in the snake layout */

}

.exp-content h3 {

    color: var(--blue);
    margin-bottom: 15px;
}

.exp-content p {

    line-height: 1.6;
    color: var(--color-444);
}

.exp-separator-mobile {

    display: none;
}

/* Base Responsive Override (Mobile First principles) */
@media (max-width: 1024px) {

    .exp-separator-mobile {

        display: flex;
        flex-direction: column;
        align-items: center;
        margin: -120px 0 -80px 0;
        width: 100% !important;
}

    .exp-separator-mobile img {

        height: 300px;
        width: auto;
        opacity: 1;
}

    .visit-experience {

        background-attachment: scroll;
        padding: 80px 5%;
        max-height: 1700px !important;
}

    .exp-line-container {

        display: none;
        /* Hide complex path on smaller screens */
    
}

    .exp-item {

        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 30px;
}

    .exp-left .exp-content,
    .exp-right .exp-content {

        text-align: center;
        padding: 20px 0;
}
}

/* =========================================
   MEDIA QUERIES FOR ALL DEVICES
   ========================================= */

/* 1. MOBILE DEVICES (≤ 480px) */
@media (max-width: 480px) {


    .visit-hero-content {

        text-align: center;
}

    .visit-hero-content p {

        line-height: 1.6;
        padding: 0 10px;
}

    .desktop-br {

        display: none;
}

    .invite-inner {

        flex-direction: column;
}

    .invite-left {

        padding: 50px 5%;
        text-align: center;
        margin-top: -10% !important;
}

    .invite-desc p,
    .invite-yellow-card p,
    .invite-list li {

        line-height: 1.4 !important;
}

    .invite-list li {

        margin-bottom: 8px;
}

    .invite-right {

        margin-left: 0 !important;
        transform: none !important;
        padding: 40px 5% !important;
        margin-top: -25% !important;
}

    .invite-image-container {

        margin-left: 0 !important;
        transform: none !important;
        margin-bottom: -30px !important;
}

    .invite-cow-img {

        width: 85%;
        /* Increased size for mobile as requested */
        margin: 0 auto;
}

    .invite-yellow-card {

        width: 100% !important;
        margin-left: 0 !important;
        transform: none !important;
        padding: 50px 20px 30px 20px !important;
}

    .list-intro {

        margin-top: 0 !important;
}

    .invite-pattern-wrap {

        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 180% !important;
        /* Significantly bigger for mobile impact */
        max-width: 900px !important;
        bottom: -30px !important;
        opacity: 0.5 !important;
}

    .visit-invite {

        margin-top: -40px;
}

    /* Experience Section Mobile */
    .exp-subtitle {

        margin-bottom: 50px;
}

    .exp-icon-wrap {

        width: 80px;
        height: 80px;
}

    /* Booking Section Mobile */
    .visit-booking {

        padding: 120px 5% 60px 5%;
        /* Increased height */
        margin-top: -100px !important;
        /* Upwarded to overlap previous section */
        min-height: auto;
        background-size: cover !important;
        background-position: center bottom !important;
        background-color: transparent;
}

    .booking-inner {

        gap: 30px;
        margin-top: -15% !important;
        flex-direction: column !important;
        text-align: center !important;
}

    .booking-left {

        width: 100% !important;
}

    .booking-title {

        margin-bottom: 20px;
}

    .booking-desc {

        margin-bottom: 20px;
}

    .booking-images {

        width: 100%;
        max-width: 600px;
        /* Reduced image container size */
        margin-left: 75% !important;
        /* Shifted slightly leftward as requested */
        margin-right: auto !important;
}

    .booking-cow-img {

        width: 100%;
        height: auto;
        margin-left: -46% !important;
}

    .guidelines-card {

        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align the guidelines card content to left */
        margin-top: -30% !important;
}

    .guidelines-header {

        padding: 8px 20px;
        margin-bottom: 20px;
        align-self: center;
        /* Keep header centered if preferred, or remove to left align */
    
}

    .guidelines-header h3 {

        letter-spacing: 1.5px !important;
}

    .guidelines-list {

        text-align: left;
        /* Left align the list */
        width: 100%;
}

    .guidelines-list li {

        margin-bottom: 10px;
        padding-left: 25px;
        /* Standardized padding for smaller icons */
        text-align: left;
        line-height: 1.4 !important;
}

    .guidelines-list li::before {

        display: block;
        /* Restored icons */
    
}

    /* Timings & Contact Mobile */
    .visit-timing-contact {

        padding: 60px 5%;
        margin-top: -25% !important;
}

    .timing-title,
    .contact-title {

        margin-bottom: 20px;
}

    .timing-desc,
    .contact-desc {

        margin-bottom: 30px;
}

    .timing-line-container {

        margin: 15px 0 25px 0;
        margin-top: -10% !important;
}

    .registration-form {

        gap: 20px;
        align-items: center !important;
        /* Centered for mobile */
    
}

    .form-group input {

        padding: 15px 20px;
}

    .submit-btn {

        padding: 12px 40px;
}

    .contact-footer {

        margin-top: 40px;
}

    .visit-experience {

        max-height: none !important;
        padding-bottom: 140px !important;
}
}

/* 2. TAB DEVICES (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {


    .visit-hero-content p {

        line-height: 1.6;
        padding: 0 20px;
}

    .visit-experience {

        max-height: 1900px !important;
}

    .timing-line-container {

        margin: 20px 0 30px 0;
}

    .registration-form {

        align-items: center;
        /* Centered for tablet generic */
    
}
}

/* 3. IPAD MINI (768px - 819px) */
@media (min-width: 768px) and (max-width: 819px) {

    .visit-hero {

        min-height: 45vh !important;
}

    .visit-hero-content p {

        line-height: 1.6;
        padding: 0 40px;
}

    .desktop-br {

        display: none;
}

    .invite-inner {

        flex-direction: column;
}

    .invite-left {

        padding: 60px 8%;
        text-align: center;
        margin-top: 2% !important;
}

    .invite-right {

        margin-top: -5% !important;
        margin-left: 10% !important;
}

    .invite-desc p {

        margin-left: 10% !important;
}

    .invite-cow-img {

        width: 70%;
}

    .invite-pattern-wrap {

        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 180% !important;
        /* Significantly bigger for mobile impact */
        max-width: 900px !important;
        bottom: -30px !important;
        opacity: 0.5 !important;
}

    .visit-experience {

        max-height: 1900px !important;
}

    .visit-invite {

        margin-top: -80px;
}



    /* Booking Section iPad Mini */
    .visit-booking {

        background-size: 200% auto !important;
        background-position: center bottom !important;
        min-height: auto;
        background-size: cover !important;
        background-color: transparent;
}

    .booking-images {

        width: 100%;
        max-width: 800px;
        margin-left: -5% !important;
        transform: none !important;
}

    .booking-cow-img {

        margin-left: -25% !important;
}

    .guidelines-card {

        margin-top: -10% !important;
}

    .guidelines-list {

        text-align: left;
}

    .guidelines-list li {

        text-align: left;
        margin-bottom: 12px;
        line-height: 1.4 !important;
}

    /* Timings & Contact iPad Mini */
    .visit-timing-contact {

        padding: 80px 5%;
        margin-top: -10% !important;
}

    .timing-line-container {

        margin: 25px 0 35px 0;
        margin-top: -5% !important;
}

    .site-footer {

        z-index: 99 !important;
        position: relative;
}

    .visit-experience {

        max-height: 2150px !important;
}
}

/* 4. IPAD AIR (820px - 1023px) */
@media (min-width: 820px) and (max-width: 1023px) {

    .visit-hero {

        min-height: 45vh !important;
}

    .visit-hero-content p {

        line-height: 1.6;
        padding: 0 40px;
}

    .desktop-br {

        display: block;
}

    .invite-inner {

        flex-direction: row;
}

    .invite-left {

        max-width: 400px !important;
        padding: 60px 4% 60px 5%;
}

    .invite-right {

        padding: 60px 5% 60px 4%;
        max-width: 550px !important;
        margin-left: -2% !important;
}

    .invite-cow-img {

        width: 70%;
}

    .visit-invite {

        margin-top: -100px;
}

    .visit-experience {

        max-height: 2150px !important;
}

    /* Experience Section iPad Air */
    .exp-subtitle {

        margin-bottom: 70px;
}


    /* Booking Section iPad Air */
    .visit-booking {

        background-size: 200% auto !important;
        background-position: center bottom !important;
        background-color: transparent;
        min-height: auto;
        background-size: cover !important;
}

    .booking-images {

        width: 100%;
        max-width: 850px;
        margin-left: -5% !important;
        transform: none !important;
}

    .guidelines-list {

        text-align: left;
}

    .guidelines-list li {

        text-align: left;
        margin-bottom: 12px;
        line-height: 1.4 !important;
}

    .booking-cow-img {

        margin-left: -25% !important;
}

    .guidelines-card {

        margin-top: -10% !important;
}

    .exp-icon-wrap {

        width: 120px;
        height: 120px;
}

    .invite-images-grid {

        max-width: 100%;
}

    .invite-pattern {

        margin-left: 20% !important;
        margin-top: -25% !important;
}

    /* Timings & Contact iPad Air */
    .visit-timing-contact {

        padding: 80px 5%;
        margin-top: -10% !important;
}

    .timing-line-container {

        margin: 25px 0 35px 0;
        margin-top: -5% !important;
}

    .site-footer {

        z-index: 99 !important;
        position: relative;
}
}

/* 5. IPAD PRO / LAPTOP BASELINE (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {

    .visit-hero {

        min-height: 40vh !important;
}

    .visit-hero-content p {

        line-height: 1.6;
        padding: 0 40px;
}

    .desktop-br {

        display: block;
}

    .invite-left {

        max-width: 500px !important;
        padding: 80px 4% 80px 5%;
}

    .invite-right {

        max-width: 500px !important;
        margin-left: 2% !important;
}

    .invite-cow-img {

        width: 60%;
}

    .invite-pattern {

        margin-left: 15% !important;
}

    .visit-invite {

        margin-top: -120px;
}

    .visit-experience {

        max-height: 2200px !important;
}

    /* Experience Section iPad Pro */
    .exp-subtitle {

        margin-bottom: 80px;
}

    .exp-icon-wrap {

        width: 130px;
        height: 130px;
}

    /* Booking Section iPad Pro */
    .visit-booking {

        background-size: 180% auto !important;
        background-position: center bottom !important;
        background-color: transparent;
        min-height: auto;
        background-size: cover !important;
}

    .booking-images {

        width: 100%;
        max-width: 900px;
        margin-left: -10% !important;
        transform: none !important;
}

    .booking-cow-img {

        margin-left: -15% !important;
}

    .guidelines-card {

        margin-top: -10% !important;
}

    .guidelines-list {

        text-align: left;
}

    .guidelines-list li {

        text-align: left;
        margin-bottom: 12px;
        line-height: 1.4 !important;
}

    /* Timings & Contact iPad Pro */
    .visit-timing-contact {

        padding: 80px 5%;
        margin-top: -5% !important;
}

    .timing-line-container {

        margin: 25px 0 35px 0;
        margin-top: -5% !important;
}

    .site-footer {

        z-index: 99 !important;
        position: relative;
}
}

/* 6. LAPTOP BASELINE (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {

    .visit-hero {

        min-height: 60vh;
}

    .visit-hero-content p {

        line-height: 1.6;
}

    .desktop-br {

        display: block;
}

    .invite-cow-img {

        width: 65%;
}

    .invite-pattern {

        margin-left: 100px;
        margin-top: -25% !important;
}

    .visit-invite {

        margin-top: -120px;
}

    /* Experience Section Laptop Baseline */
    .visit-experience {

        padding-bottom: 0px;
        margin-top: -3.1% !important;
        max-height: 2150px !important;
}


    .exp-subtitle {

        margin-bottom: 40px;
}

    .exp-line-container {

        width: 500px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .exp-timeline {

        padding-bottom: 50px;
        margin-left: -10% !important;
}

    .exp-item {

        display: block !important;
        margin-bottom: 40px;
        min-height: 280px;
}

    .exp-content {

        max-width: 320px;
        padding: 0;
        text-align: left !important;
}

    /* Positioning content under icons for Laptop Baseline */
    #exp-content-1 {

        margin-left: calc(40% - 200px);
        padding-top: 100px;
        /* Pushes the whole block downward */
    
}

    #exp-content-2 {

        margin-left: calc(60% + 50px);
        margin-top: -6% !important;
}

    #exp-content-3 {

        margin-left: calc(40% - 200px);
        padding-top: 0px;
        margin-top: -10% !important;
}

    #exp-content-4 {

        margin-left: calc(60% + 50px);
        padding-top: 0px;
        margin-top: 2% !important;
}

    .exp-content h3 {

        margin-bottom: 10px;
}

    .exp-content p {

        line-height: 1.6;
        margin-top: 0 !important;
}

    /* Booking Section Laptop Baseline */
    .visit-booking {

        background-size: 100% 100%;
        background-color: transparent;
}

    .booking-desc {

        margin-bottom: 25px;
}

    .booking-images {

        width: 1031px;
        margin: 0;
}

    .guidelines-card {

        margin-left: -70% !important;
        width: 200% !important;
}

    .guidelines-list li {

        margin-bottom: 8px;
        line-height: 1.4 !important;
}

    .booking-left {

        margin-left: 5% !important;
}

    .booking-cow-img {

        margin-top: -3% !important;
        margin-left: -5% !important;
}

    .guidelines-list {

        margin-top: 5% !important;
}

    /* Timings & Contact Laptop Baseline */
    .visit-timing-contact {

        padding: 90px 5%;
        margin-top: -5% !important;
}

    .timing-line-container {

        margin: 25px 0 40px 0;
        margin-top: -2% !important;
}

    .registration-form {

        max-width: 400px;
        gap: 30px;
        align-items: flex-start;
}
}

/* 7. LAPTOP LARGE (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {

    .visit-hero {

        min-height: 55vh;
}

    .visit-hero-content p {

        line-height: 1.6;
}

    .desktop-br {

        display: block;
}

    .invite-cow-img {

        width: 60%;
}

    .invite-pattern {

        margin-left: 10px;
        margin-top: -20% !important;
}

    .visit-invite {

        margin-top: -150px;
}

    /* Experience Section Laptop Large */
    .visit-experience {

        padding-bottom: 30px;
        margin-top: -2.7% !important;
        max-height: 1700px !important;
}

    .exp-subtitle {

        margin-bottom: 60px;
}

    .exp-timeline {

        margin-left: -10%;
}

    .exp-line-container {

        width: 600px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .exp-item {

        display: block !important;
        margin-bottom: 40px;
        min-height: 280px;
}

    .exp-content {

        max-width: 320px;
        padding: 0;
        text-align: left !important;
}

    /* Positioning content under icons for Laptop Baseline */
    #exp-content-1 {

        margin-left: calc(47% - 260px);
        padding-top: 110px;
        /* Pushes the whole block downward */
    
}

    #exp-content-2 {

        margin-left: calc(62% + 50px);
        margin-top: -2% !important;
}

    #exp-content-3 {

        margin-left: calc(47% - 260px);
        padding-top: 0px;
        margin-top: -10% !important;
}

    #exp-content-4 {

        margin-left: calc(62% + 50px);
        padding-top: 0px;
        margin-top: 10% !important;
}

    .exp-content h3 {

        margin-bottom: 12px;
}


    /* Booking Section Laptop Large */
    .visit-booking {

        background-size: 100% 100%;
        background-color: transparent;
}

    .booking-images {

        width: 1031px;
        margin: 0;
}

    .booking-cow-img {

        margin-top: -3% !important;
        margin-left: -5% !important;
}

    .guidelines-card {

        margin-left: -20% !important;
}

    .guidelines-list {

        margin-top: 5% !important;
}

    /* Timings & Contact Laptop Large */
    .visit-timing-contact {

        padding: 90px 5%;
        margin-top: -5% !important;
}

    .timing-line-container {

        margin: 25px 0 40px 0;
        margin-top: -2% !important;
}

    .registration-form {

        max-width: 400px;
        gap: 30px;
        align-items: flex-start;
}
}


/* 8. DESKTOP STANDARD (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {

    .visit-hero {

        min-height: 60vh;
}

    .visit-hero-content p {

        line-height: 1.6;
}

    .desktop-br {

        display: block;
}

    .invite-cow-img {

        width: 60%;
}

    .invite-yellow-card {

        width: 140% !important;
        margin-left: 40% !important;
}

    .invite-pattern-wrap {

        width: 70% !important;
}

    .invite-pattern {

        width: 70% !important;
        margin-top: -10% !important;
}

    .visit-invite {

        margin-top: -150px;
}

    /* Experience Section Desktop Standard */
    .visit-experience {

        padding-bottom: 40px;
        margin-top: -2% !important;
        max-height: 1900px !important;
}

    .exp-subtitle {

        margin-bottom: 80px;
}

    .exp-line-container {

        width: 800px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .exp-item {

        display: block !important;
        margin-bottom: 60px;
        min-height: 450px;
}

    .exp-content {

        max-width: 450px;
        text-align: left !important;
}

    .exp-timeline {

        margin-left: -10%;
}


    /* Positioning content under icons for Laptop Baseline */
    #exp-content-1 {

        margin-left: calc(35% - 260px);
        padding-top: 150px;
        /* Pushes the whole block downward */
    
}

    #exp-content-2 {

        margin-left: calc(63% + 50px);
        margin-top: -5% !important;
}

    #exp-content-3 {

        margin-left: calc(35% - 260px);
        padding-top: 0px;
        margin-top: -20% !important;
}

    #exp-content-4 {

        margin-left: calc(65% + 50px);
        padding-top: 0px;
        margin-top: 0% !important;
}



    /* Booking Section Standard Desktop */
    .visit-booking {

        background-size: 100% 100%;
        background-color: transparent;
}

    .booking-title {

        margin-left: -10% !important;
}

    .booking-desc {

        margin-left: -10% !important;
}

    .booking-images {

        width: 1031px;
        margin: 0;
}

    .booking-cow-img {

        margin-left: -15% !important;
        margin-top: -4% !important;
}

    .booking-right {

        transform: translateY(-80px) !important;
}

    .guidelines-list {

        margin-top: 2% !important;
}

    /* Timings & Contact Desktop Standard */
    .visit-timing-contact {

        padding: 100px 5%;
}

    .timing-line-container {

        margin: 25px 0 40px 0;
        margin-top: -1% !important;
}

    .registration-form {

        max-width: 400px;
        gap: 30px;
        align-items: flex-start;
}
}

/* Desktop Large -> 2560X1440 */
/* 9. DESKTOP LARGE (2560px - 3839px) */
@media (min-width: 2560px) and (max-width: 3839px) {

    .visit-hero {

        min-height: 60vh;
}

    .visit-hero-content p {

        line-height: 1.6;
}

    .desktop-br {

        display: block;
}

    .visit-invite {

        margin-top: -10% !important;
}

    .invite-right {

        margin-top: 0% !important;
        margin-left: 0% !important;
}

    .invite-cow-img {

        width: 60%;
}

    .invite-yellow-card {

        width: 100% !important;
        margin-left: 0 !important;
        padding: 100px 60px 60px 60px;
        height: 400px;
}

    .invite-inner {

        max-width: 2600px;
        /* Wider for 4K */
    
}

    .invite-left {

        padding-left: 10%;
        /* Reduced padding to give more room for width */
        max-width: 1100px !important;
        width: 900px !important;
        margin-left: 10% !important;
}

    .invite-desc p {

        max-width: 850px;
        /* Increased paragraph width for 2K */
    
}

    .invite-card {

        max-width: 1100px;
        /* Wider card */
    
}


    .invite-list li::before {

        width: 7px !important;
        height: 7px !important;
        top: 8px !important;
        border-width: 1.5px !important;
}

    .invite-list li {

        padding-left: 25px !important;
}


    .invite-image-container {

        margin-top: 20% !important;
}

    .invite-pattern-wrap {

        width: 60% !important;
        /* Significantly increased for 2K */
        max-width: 1000px;
}

    .invite-pattern {

        margin-top: -30% !important;
}

    .visit-invite {

        margin-top: -150px;
}

    /* Experience Section Large Desktop 2K */
    .visit-experience {

        padding-bottom: 0px;
        margin-top: -1.5% !important;
        max-height: 2500px !important;
}

    .exp-inner {

        max-width: 1600px;
        padding-top: 100px !important;
}

    .exp-subtitle {

        margin-bottom: 100px;
}

    .exp-line-container {

        width: 1100px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .exp-item {

        display: block !important;
        margin-bottom: 80px;
        min-height: 600px;
}

    .exp-content {

        max-width: 600px;
        text-align: left !important;
}

    .exp-timeline {

        margin-left: -10%;
}


    /* Positioning content under icons for Laptop Baseline */
    #exp-content-1 {

        margin-left: calc(30% - 260px);
        padding-top: 200px;
        /* Pushes the whole block downward */
    
}

    #exp-content-2 {

        margin-left: calc(67% + 50px);
        margin-top: -5% !important;
}

    #exp-content-3 {

        margin-left: calc(30% - 260px);
        padding-top: 0px;
        margin-top: -17% !important;
}

    #exp-content-4 {

        margin-left: calc(67% + 50px);
        padding-top: 0px;
        margin-top: 5% !important;
}


    /* Booking Section Large Desktop 2K */
    .visit-booking {

        padding: 150px 10%;
        min-height: 854px;
        background-size: 100% 100%;
        background-color: transparent;
}

    .booking-inner {

        max-width: 2200px !important;
        gap: 100px !important;
        margin-left: 25% !important;
}

    .booking-title {

        margin-bottom: 35px;
        margin-left: -15%;
}

    .booking-desc {

        margin-left: -15%;
        max-width: 600px;
        margin-bottom: 60px;
}

    .booking-images {

        width: 1300px !important;
        margin: 0;
}

    .booking-cow-img {

        width: 80% !important;
        height: auto !important;
        margin-left: -25% !important;
}

    .booking-right {

        flex: 1.2 !important;
        display: flex !important;
        justify-content: flex-start !important;
        margin-left: -10% !important;
}

    .guidelines-card {

        max-width: 800px !important;
        width: 100% !important;
}

    .guidelines-header {

        padding: 15px 40px;
        margin-bottom: 50px;
        width: fit-content !important;
        max-width: none !important;
}

    .guidelines-header h3 {

        letter-spacing: 2px;
        white-space: nowrap;
}

    .guidelines-list li::before {

        width: 7px !important;
        height: 7px !important;
        top: 10px !important;
        border-width: 1.5px !important;
}

    .guidelines-list li {

        max-width: 100% !important;
        margin-bottom: 15px;
        padding-left: 30px !important;
        line-height: 1.4 !important;
}

    /* Timings & Contact Desktop Large 2K */
    .visit-timing-contact {

        padding: 120px 5%;
}

    .timing-desc,
    .contact-desc {

        max-width: 1000px;
}

    .timing-line-container {

        margin: 30px 0 50px 0;
        margin-top: -1% !important;
}

    .timing-line-img {

        height: 180px !important;
        /* Increased for 2K to prevent clipping */
    
}

    .registration-form {

        max-width: 450px;
        /* Reduced from 500px */
        gap: 40px;
        align-items: flex-start;
}

    .form-group input {

        padding: 20px 30px;
}

    .submit-btn {

        padding: 18px 50px;
        /* Reduced width */
    
}

    .contact-footer {

        margin-top: 80px;
}
}

/* 10. DESKTOP 4K (≥ 3840px) */
@media (min-width: 3840px) {

    .visit-hero {

        min-height: 65vh;
}

    .visit-hero-content p {

        line-height: 1.6;
}

    .desktop-br {

        display: block;
}

    .visit-invite {

        margin-top: -5% !important;
}

    .invite-inner {

        max-width: 2600px;
        /* Wider for 4K */
    
}

    .invite-title {

        margin-bottom: 50px;
}

    .invite-desc p {

        max-width: 900px;
        /* Wider text block */
    
}

    .invite-left {

        padding-left: 5%;
        margin-right: 0;
}

    .invite-right {

        transform: translateX(0);
        flex: 1;
}

    .invite-card {

        max-width: 1100px;
        /* Wider card */
    
}

    .invite-cow-img {

        width: 70%;
}

    .invite-yellow-card {

        width: 100% !important;
        margin-left: 0 !important;
        padding: 150px 100px 100px 100px;
}

    .invite-pattern {

        margin-top: -25% !important;
}

    .visit-invite {

        margin-top: -50px;
}

    .invite-image-container {

        width: 100% !important;
}

    .invite-list li::before {

        width: 10px !important;
        height: 10px !important;
        top: 12px !important;
        border-width: 2px !important;
}

    .invite-list li {

        padding-left: 35px !important;
}

    /* Experience Section 4K */
    .visit-experience {

        padding-bottom: 10px !important;
        margin-top: -1% !important;
        max-height: 3750px !important;
}

    .exp-inner {

        max-width: 2400px;
        margin-top: 0% !important;
}

    .exp-subtitle {

        margin-bottom: 120px;
}

    .exp-line-container {

        width: 1800px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .exp-item {

        display: block !important;
        margin-bottom: 150px;
        min-height: 900px;
}

    .exp-content {

        max-width: 900px;
        text-align: left !important;
}

    .exp-timeline {

        margin-left: -10%;
}


    /* Positioning content under icons for Laptop Baseline */
    #exp-content-1 {

        margin-left: calc(22% - 260px);
        padding-top: 350px;
        /* Pushes the whole block downward */
    
}

    #exp-content-2 {

        margin-left: calc(70% + 50px);
        margin-top: 3% !important;
}

    #exp-content-3 {

        margin-left: calc(22% - 260px);
        padding-top: 0px;
        margin-top: -20% !important;
}

    #exp-content-4 {

        margin-left: calc(70% + 50px);
        padding-top: 0px;
        margin-top: 10% !important;
}

    .exp-content h3 {

        margin-bottom: 30px;
}



    /* Booking Section 4K */
    .visit-booking {

        padding: 250px 10%;
        min-height: 1300px !important;
        max-height: none !important;
        /* Removed height restriction for 4K */
        background-size: 100% 100%;
        background-color: transparent;
}

    .booking-inner {

        max-width: 3200px !important;
        /* Increased width for 4K */
        gap: 150px;
        margin-left: 25% !important;
        /* Shifted leftward */
    
}

    .booking-title {

        margin-bottom: 60px;
        margin-left: -25%;
}


    .booking-desc {

        max-width: 1500px !important;

        margin-left: -25%;
        /* Increased width */
        margin-bottom: 100px;
}

    .booking-images {

        width: 1800px !important;
        /* Significantly increased size */
        height: auto !important;
        margin-left: -300px !important;
        /* Adjusted positioning */
        margin-top: 50px !important;
        transform: none !important;
}

    .booking-cow-img {

        width: 100% !important;
        height: auto !important;
        margin-left: -55% !important;
}



    .booking-right {

        flex: 1;
        display: flex;
        justify-content: flex-end;
        max-width: 1800px !important;
        margin-left: 25% !important;
        width: 2000px !important;
        /* Allow right section to be wider */
    
}

    .guidelines-card {

        width: 1400px !important;
        /* Significantly wider card */
        max-width: 2500px !important;
        /* Increased card width for 4K */
        margin-left: 15% !important;
}

    .guidelines-header {

        padding: 40px 80px;
        margin-bottom: 100px;
}

    .guidelines-header h3 {

        letter-spacing: 6px;
}

    .guidelines-list li {

        padding-left: 40px !important;
        margin-bottom: 30px;
        line-height: 1.4 !important;
}

    .guidelines-list li::before {

        width: 12px !important;
        height: 12px !important;
        top: 14px !important;
        border-width: 2px !important;
}

    /* Timings & Contact Desktop 4K */
    .visit-timing-contact {

        padding: 150px 10%;
}

    .timing-desc,
    .contact-desc {

        max-width: 1500px;
}

    .timing-line-container {

        margin: 40px 0 70px 0;
        margin-top: -1% !important;
}

    .timing-line-img {

        height: 280px !important;
        /* Increased for 4K to prevent clipping */
    
}

    .registration-form {

        max-width: 600px;
        /* Reduced from 700px */
        gap: 60px;
        align-items: flex-start;
}

    .form-group label {

        margin-bottom: 20px;
}

    .form-group input {

        padding: 30px 40px;
}

    .submit-btn {

        padding: 25px 70px;
        /* Reduced width */
        margin-top: 40px;
}

    .contact-footer {

        margin-top: 100px;
        max-width: 1000px;
}
}

/* =========================================
   BOOKING SECTION 
   ========================================= */
.visit-booking {

    position: relative;
    background-image: url('../images/visit/BookingBG.png');
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    padding: 100px 5%;
    overflow: hidden;
    color: var(--white);
    margin-top: -5px;
    max-height: 550px !important;
    z-index: 20 !important;
}

.booking-bg-layer {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.booking-bg-pattern {

    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    opacity: 0.8;
}

.booking-inner {

    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.booking-left {

    flex: 1;
}

.booking-title {

    color: var(--gold);
    margin-bottom: 25px;
}

.booking-desc {

    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    color: var(--color-e0e0e0);
}

.booking-images {

    position: relative;
    width: 1031px;
    /* Natural width of BookingCow.png */
    height: 357px;
    /* Natural height */
    margin: 0 auto;
    margin-left: -30% !important;
}

.booking-cow-img {

    width: 850px;
    height: 257px;
    object-fit: contain;
    border-radius: 4px;
}

.booking-right {

    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: -30% !important;
}

.guidelines-card {

    width: 100%;
    max-width: 500px;
}

.guidelines-header {

    background-color: var(--white);
    padding: 12px 30px;
    display: inline-block;
    margin-bottom: 40px;
    border-radius: 2px;
}

.guidelines-header h3 {

    color: black;
    font-weight: 500;
    margin: 0;

    letter-spacing: 0px !important;
}

.guidelines-list {

    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {

    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.4 !important;
    color: var(--white);
    font-weight: 400;
}

.guidelines-list li::before {

    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
}

/* Base Responsive Override (Mobile/Tablet stacking) */
@media (max-width: 1024px) {

    .visit-booking {

        padding: 80px 5%;
        max-height: 1400px !important;
}

    .booking-inner {

        flex-direction: column;
        text-align: center;
        /* Center content for better mobile appearance */
        gap: 40px;
}

    .booking-left {

        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0 !important;
}

    .booking-desc {

        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
}

    .booking-images {

        margin: 0 auto !important;
        transform: none !important;
        margin-left: 0 !important;
}

    .booking-right {

        justify-content: flex-start;
        margin-left: 0 !important;
        transform: none !important;
        width: 100%;
        display: flex;
        justify-content: center;
}
}

/* =========================================
   TIMINGS & CONTACT SECTION 
   ========================================= */
.visit-timing-contact {

    position: relative;
    background-image: url('../images/visit/Timing_BG.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    /* Removed horizontal padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: -2%;
    z-index: 10 !important;
    /* Move upward */

}

.timing-section {

    max-width: 1200px;
    margin-bottom: 60px;
    padding: 0 5%;
    /* Re-added horizontal padding here */

}

.timing-title {

    color: var(--blue);
    margin-bottom: 25px;
}

.timing-desc {

    line-height: 1.6;
    color: var(--color-333);
    max-width: 800px;
    margin: 0 auto;
}

.timing-line-container {

    width: 100%;
    margin: 20px 0 30px 0;
    overflow: hidden;
}

.timing-line-img {

    width: 100%;
    height: 120px;
    /* Static height for all devices */
    object-fit: cover;
    display: block;
}

.contact-section {

    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    /* Re-added horizontal padding here */

}

.contact-title {

    color: var(--blue);
    margin-bottom: 25px;
}

.contact-desc {

    line-height: 1.6;
    color: var(--color-333);
    margin-bottom: 50px;
}

.registration-form {

    max-width: 400px;
    /* Reduced width for a more compact desktop look */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    /* Centered button and inputs */

}

.form-group {

    width: 100%;
    text-align: left;
}

.form-group label {

    display: block;
    font-weight: 600;
    color: var(--color-333);
    margin-bottom: 10px;
    margin-left: 20px;
}

.form-group input {

    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn {

    margin-top: 20px;
    padding: 12px 40px;
    /* Reduced width */
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-footer {

    margin-top: 60px;
    line-height: 1.6;
    color: var(--color-333);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SCOPED BOOTSTRAP GRID FOR APP PROMO SECTION (To prevent design collapse 
   since Visit page does not load Bootstrap)
   ========================================================================== */
.app-promo-section .container {

    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

@media (min-width: 576px) {

    .app-promo-section .container {

        max-width: 540px;
}
}

@media (min-width: 768px) {

    .app-promo-section .container {

        margin-top: 5% !important;
        max-width: 720px;
}
}

@media (min-width: 992px) {

    .app-promo-section .container {

        max-width: 960px;
}
}

@media (min-width: 1200px) {

    .app-promo-section .container {

        max-width: 1140px;
}
}

@media (min-width: 1400px) {

    .app-promo-section .container {

        max-width: 1320px;
}
}

.app-promo-section .row {

    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y, 0));
    margin-right: calc(-.5 * var(--bs-gutter-x, 1.5rem));
    margin-left: calc(-.5 * var(--bs-gutter-x, 1.5rem));
}

.app-promo-section .row>* {

    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
    margin-top: var(--bs-gutter-y, 0);
}

.app-promo-section .align-items-center {

    align-items: center !important;
}

@media (min-width: 768px) {

    .app-promo-section .col-md-6 {

        flex: 0 0 auto;
        width: 50%;
}
}

.app-promo-section .mb-1 {

    margin-bottom: 0.25rem !important;
}

.app-promo-section .mb-3 {

    margin-bottom: 1rem !important;
}

.app-promo-section .mb-2 {

    margin-bottom: 0.5rem !important;
}

.app-promo-section .pt-0 {

    padding-top: 0 !important;
}

@media (min-width: 768px) {

    .app-promo-section .pt-md-3 {

        padding-top: 1rem !important;
}

    .app-promo-section .mb-md-4 {

        margin-bottom: 1.5rem !important;
}
}