html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
}
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff"/><stop offset="100%" style="stop-color:%23e8f4f8"/></linearGradient></defs><rect width="1600" height="800" fill="url(%23bg)"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Carousel Styles */
.hero.is-fullheight-with-navbar {
    min-height: auto !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.2));
    pointer-events: none;
}

/* Contrôles du carousel */
.carousel-control {
    display: none;
}

.navbar {
    display: flex !important;
    align-items: stretch !important;
    min-height: auto !important;
    padding: 0;
    box-shadow: none;
}

.navbar-brand {
    flex: 1 1 20%;
    min-width: 250px;
    background: white;
    padding: 1rem 2rem;
    min-height: auto;
}

.navbar-brand .brand-content {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand .brand-text {
    /* No positioning - stays next to logo */
}

.navbar-brand .logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.brand-title {
    margin: 0;
    color: #707070;
    line-height: 1.2;
    white-space: nowrap;
}

.brand-subtitle {
    margin: 0;
    color: #666;
    line-height: 1;
    white-space: nowrap;
}

.menu-item {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 2rem !important;
    display: flex;
    align-items: center;
    text-align: center;
    white-space: normal;
    position: relative;
    perspective: 1000px;
    overflow: visible;
    min-height: 80px;
    flex: 1;
}

.menu-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80px;
    transition: transform 0.7s;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.navbar-item:hover {
    background-color: #0FB4DB;
}

.menu-item:hover .menu-item-inner {
    transform: rotateX(180deg);
}

.menu-item-front,
.menu-item-back {
    position: absolute;
    width: calc(100% + 4rem);
    height: 100%;
    min-height: 80px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    top: 0;
    left: -2rem;
}

.menu-item-front {
    color: white;
    font-weight: 500;
    background: transparent;
}

.menu-item-back {
    transform: rotateX(180deg);
    background-size: cover;
    background-position: center;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Images pour chaque élément du menu */
.menu-item-back.la-grave {
    background: url(../images/arton6-4ac1a.jpg);
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    background-color:#0FB4DB;
}

.menu-item-back.reserver {
    background: url(../images/arton6-4ac1a.jpg);
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    background-color:#0FB4DB;
}

.menu-item-back.location {
    background: url(../images/arton6-4ac1a.jpg);
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    background-color:#0FB4DB;
}

.menu-item-back.concept {
    background: url(../images/arton6-4ac1a.jpg);
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    background-color:#0FB4DB;
}

.navbar-end {
    flex: 0 0 auto;
    min-width: 80px;
    padding: 0 !important;
    background: #EF961B;
    display: flex;
    flex-direction: column;
}

.language-selector-mobile {
    display: none;
}

.lang-item {
    color: white;
    font-weight: bold;
    text-transform: uppercase; 
    padding: 0.5rem 1rem;
    text-align: center;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lang-item:hover {
    background: #e67e22;
}
strong.langue_es, strong.langue_de, strong.langue_en, strong.langue_fr{
	color:#FFF !important;
	}
	
.lang-item:has(strong){background: #e67e22;}

.lang-item.menu_lang_item>a,
.lang-item>a{color:#FFF !important; }
/*
.lang-item:first-child {
    background: #d68910;
}
*/


.navbar-menu {
    background: #0FB4DB;
    flex: 3 1 60%;
}

.navbar-start {
    flex-grow: 1;
    display: flex;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
}

.hero-content .button-container {
    margin-bottom: 5.3rem;
}

.carousel-cta-mobile {
    display: none;
}

.cta-section {
    display: none;
}

.description-section {
    display: none;
}

.description-section-desktop {
    background: transparent;
    padding: 0;
    margin: 0;
}

.description-section-desktop .description-box {
    margin-top: 20px;
    border-left: 12px solid #0FB4DB;
}

.cta-button {
    background: #EF961B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    color: white;
}

.description-box {
    background: rgba(255, 255, 255, 0.30);
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    line-height: 1.6;
    color: #393737;
    margin-bottom: 3rem;
}

.description-box h2 {
    color: #0FB4DB;
}

.mentions-link {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 500;
}

.mentions-link:hover {
    text-decoration: underline;
}

.brand-section {
    background: white;
    padding: 1rem 2rem;
    border-bottom: 3px solid #17a2b8;
}

.brand-text {
    color: #666;
    font-weight: 500;
    margin-left: 1rem;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.button-container .cta-button {
    margin: 0;
}

.footer {
    background: white;
    padding: 0.5rem 2rem;
}

.footer .content {
    margin: 0;
}

/* Hamburger menu */
.navbar-burger {
    display: none;
    cursor: pointer;
    width: 3.25rem;
    height: 3.25rem;
    position: relative;
    margin-left: auto;
    z-index: 101;
}

.navbar-burger span {
    background-color: #EF961B;
    display: block;
    height: 3px;
    left: calc(50% - 12px);
    position: absolute;
    transform-origin: center;
    transition: all 0.3s ease;
    width: 24px;
}

@media (max-width: 768px) {
    .navbar-burger {
        width: 4rem;
        height: 4rem;
    }

    .navbar-burger span {
        height: 4px;
        left: calc(50% - 16px);
        width: 32px;
    }

    .navbar-burger span:nth-child(1) {
        top: calc(50% - 10px);
    }

    .navbar-burger span:nth-child(2) {
        top: calc(50% - 2px);
    }

    .navbar-burger span:nth-child(3) {
        top: calc(50% + 6px);
    }

    .navbar-burger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-burger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.navbar-burger span:nth-child(1) {
    top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
    top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
    top: calc(50% + 6px);
}

.navbar-burger.is-active span {
    background-color: #EF961B;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Simulation de l'image de fond avec du CSS */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a90e2 0%, #7bb3f0 50%, #ffffff 100%);
    opacity: 0.8;
}

.skier-illustration {
    position: absolute;
    bottom: 20%;
    left: 30%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ff4444 30%, #cc0000 70%);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .navbar-brand .brand-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .navbar-brand .logo-img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column !important;
    }

    .navbar-menu {
        flex-direction: column;
    }

    .navbar-end {
        flex-direction: row !important;
        min-width: auto;
    }

    .hero.is-fullheight-with-navbar {
        min-height: auto !important;
        margin-bottom: 0;
    }

    .carousel-container {
        height: calc(100vh - 82px);
        max-height: calc(100vh - 82px);
        overflow: hidden;
    }

    .carousel {
        height: 100%;
    }

    .carousel-cta-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        position: absolute;
        bottom: 10%;
        left: 0;
        right: 0;
        z-index: 20;
        padding: 0 3rem;
    }

    .carousel-cta-mobile .cta-button {
        flex: 0 0 calc(50% - 0.5rem);
        margin: 0;
    }

    .hero-content {
        display: none;
    }

    .cta-section {
        display: none;
    }

    .description-section-desktop {
        display: none;
    }

    .description-section {
        display: block;
        background: white;
        padding: 0rem 1.5rem 2rem 1.5rem;
    }

    .description-section .description-box {
        
        background: transparent;
        margin-top: 25px;
        border-left: #0FB4DB 1px solid;
        border-radius:0 0 0 0;
        padding-top:0.1rem;
        padding-bottom:0.1rem;
    }

    .button-container {
        margin-bottom: 0;
    }

    .cta-button {
        display: block;
        margin: 1rem auto;
        width: 40%;
        max-width: 200px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .navbar-burger {
        display: block;
    }

    .navbar-brand {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
        padding: 0.5rem 1rem;
        position: relative;
        z-index: 101;
        background: white;
        align-items: center;
    }

    .navbar-brand .brand-content {
        display: contents;
    }

    .navbar-brand .brand-content > div:first-child {
        justify-self: start;
    }

    .navbar-brand .brand-text {
        text-align: center;
        justify-self: center;
    }

    .navbar-burger {
        justify-self: end;
    }

    .navbar-brand .logo-img {
        height: 50px;
    }

    .brand-title {
        font-size: 1.1rem !important;
    }

    .brand-subtitle {
        font-size: 0.75rem !important;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0FB4DB;
        z-index: 100;
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding-top: 2rem;
    }

    .navbar-menu.is-active {
        display: flex;
    }

    .navbar-start {
        flex-direction: column;
        width: 100%;
    }

    .menu-item {
        border-right: none;
        border-bottom: 2px solid white;
        padding: 1.5rem !important;
        min-height: auto;
        justify-content: center;
    }

    .menu-item:first-child {
        border-top: 2px solid white;
    }

    .menu-item-inner {
        min-height: auto;
        display: flex;
        align-items: center;
        gap: 1rem;
        transform: none !important;
    }

    .menu-item-front {
        position: static;
        width: auto;
        flex: 1;
        left: 0;
        padding: 0;
        min-height: auto;
    }

    .menu-item-back {
        position: static;
        width: 80px;
        height: 80px;
        left: 0;
        padding: 0;
        min-height: auto;
        transform: none;
        border-radius: 8px;
        color: transparent;
        text-shadow: none;
    }

    .menu-item:hover .menu-item-inner {
        transform: none;
    }

    .navbar-end {
        display: none;
    }

	.language-selector-mobile ul#menu_lang{
		display:flex;
		gap : 1rem;
	}
    .language-selector-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 2rem 2.5rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .language-selector-mobile .lang-item {
        background: #EF961B;
        color: white;
        padding: 0.5rem 2.5rem;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

    .language-selector-mobile .lang-item:hover {
        background: #e67e22;
    }
}

li.more, li.less {
	color:#FFF;
	font-weight: 500;
	list-style-type: none;
	font-size: 1rem;
	text-shadow: 1px 0 0 #94928f;
}
.hidden {
    display: none;
}
/* Page La Grave - La Meije Styles */
.page-title-section {
    background: white;
    padding: 2rem 1.5rem 1rem 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.page-title-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #0FB4DB;
    text-align: left;
}

.breadcrumb-nav {
    background: transparent;
    padding: 0;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: #0FB4DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #EF961B;
}

.breadcrumb-item.active {
    color: #666;
    pointer-events: none;
}

.breadcrumb-separator {
    color: #999;
    font-size: 1.2rem;
}

.content-grid {
    max-width: 1600px;
    margin: 1.2rem auto;
    padding: 0 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

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

.content-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 180, 219, 0.45);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-overlay h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.card-content {
    background: #0FB4DB;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-reverse .card-content {
    align-items: flex-end;
    text-align: right;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.card-wrapper .content-card {
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    color: #E33333;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.price-value {
    color: #E33333;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.card-button {
    background: #EF961B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

.card-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Back to top button - Desktop (hidden) */
.back-to-top {
    display: none !important;
}

/* Rental CTA Styles */
.rental-cta-container {
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.rental-cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    text-align: center;
}

/* Mobile responsive pour page La Grave */
@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2rem;
    }

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

    .rental-cta-container {
        max-width: 100%;
        margin: 2rem 0;
        padding: 0;
        width: 100%;
    }

    .rental-cta-button {
        display: block !important;
        width: 100% !important;
        padding: 1.25rem 1rem !important;
        font-size: 1rem !important;
        box-sizing: border-box;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }

    .content-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .content-card.card-reverse {
        grid-template-columns: 1fr;
    }

    .content-card.card-reverse .card-content {
        order: 2;
        align-items: flex-start;
        text-align: left;
    }

    .content-card.card-reverse .card-image-wrapper {
        order: 1;
    }

    .card-image {
        min-height: 200px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .card-content {
        padding: 1rem;
    }

    .card-text {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .card-image-overlay h2 {
        font-size: 1.2rem;
    }

    .card-button {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

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

    /* Back to top button - Mobile only */
    .back-to-top {
        display: none;
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        background: #EF961B;
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .back-to-top:hover {
        background: #e67e22;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }

    .back-to-top.show {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .back-to-top svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
}

/* Product Detail Page Styles */
.product-title-section {
    background: white;
    padding: 2rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0FB4DB;
    margin: 0;
}

.product-intro-section {
    background: white;
    padding: 1rem 1.5rem 2rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-intro-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.product-detail-section {
    background: white;
    margin: 0 0 3rem 0;
}

.product-detail-container {
    position: relative;
}

.product-detail-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.product-carousel .carousel-slide.active {
    opacity: 1;
    position: relative;
}

.product-carousel .slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-label {
    position: absolute;
    top: 33%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(15, 180, 219, 0.75);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 50%;
}

.product-detail-text {
    background: #0FB4DB;
    color: white;
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: -4rem auto 0 auto;
    position: relative;
}

.product-detail-text .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.product-text-content {
    margin-bottom: 1.5rem;
}

.product-detail-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.product-detail-text p:last-child {
    margin-bottom: 0;
}

.text-truncated {
    display: block;
}

.text-hidden {
    display: none;
}

.text-expanded .text-truncated {
    display: none;
}

.text-expanded .text-hidden {
    display: block;
}

.detail-more-button {
    display: block;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.detail-more-button svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.detail-more-button:hover {
    transform: scale(1.15);
}

.detail-more-button.rotated svg {
    transform: rotate(90deg);
}

.pricing-section {
    background: white;
    padding: 0 1.5rem 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header-text {
    display: inline;
}

.pricing-header-icon {
    display: none;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0FB4DB;
    margin: 0 0 1.5rem 0;
}

.pricing-mobile-subtitle {
    display: none;
}

.pricing-table-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.pricing-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    text-align: center;
}

.pricing-table th {
    background: white;
    color: #B33;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-table tbody td {
    color: #333;
}

.download-link {
    color: #E33333;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    align-self: center;
}

.download-link:hover {
    text-decoration: underline;
}

.booking-section {
    background: white;
    padding: 2rem 1.5rem 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #B33;
    margin: 0 0 0.5rem 0;
}

.booking-contact {
    font-size: 1rem;
    color: #0FB4DB;
    margin-bottom: 1.5rem;
}

.booking-form {
    max-width: 900px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-large {
    flex: 2;
}

.form-field-small {
    max-width: 250px;
}

.form-field-full {
    width: 100%;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-row-checkboxes {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.checkbox-group-label {
    font-weight: 500;
    color: #333;
    min-width: 140px;
}

.form-checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox-option span {
    font-size: 0.95rem;
    color: #333;
}

.form-fieldset {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-fieldset .form-row {
    margin-bottom: 0.75rem;
}

.form-fieldset .form-row:last-child {
    margin-bottom: 0;
}

.form-submit-button {
    background: #EF961B;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Responsive for product detail page */
@media (max-width: 768px) {
    .product-title-section h1 {
        font-size: 1.8rem;
    }

    .product-detail-label {
        font-size: 1.3rem;
        top: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        transform: none;
    }

    .product-detail-text {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
    }

    .product-detail-section {
        margin-bottom: 2rem;
    }

    .pricing-table-wrapper {
        flex-direction: column;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }

    .pricing-header-text {
        display: none;
    }

    .pricing-header-icon {
        display: inline-block;
        width: 30px;
        height: 30px;
    }

    .pricing-mobile-subtitle {
        display: block;
        font-size: 0.95rem;
        color: #333;
        margin: 0 0 1rem 0;
        font-weight: 500;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row-checkboxes {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .checkbox-group-label {
        min-width: auto;
        width: 100%;
    }

    .form-field-large,
    .form-field-small,
    .form-field-full {
        max-width: 100%;
    }
}
