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

body {
    background-color: #faf8f3;
    color: #333;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    flex-direction: column;
    display: flex;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Screen reader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* main header section */
header {
    position: sticky;
    background-color: #1a1a1a;
    top: 0;
    color: white;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    color: #d4af37;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #fff;
}

.nav-menu a:hover {
    color: #f0d053;
}

/* mobile menu toggle */
.menu-checkbox {
    display: none;
}

.menu-icon {
    cursor: pointer;
    flex-direction: column;
    z-index: 1001;
    padding: 0;
    display: none;
}

.menu-icon span {
    background-color: white;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    display: block;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-checkbox:checked + .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-checkbox:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked + .menu-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* hero banner area */
.hero {
    background: url('../images/hero-dubai.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
    min-height: 500px;
    max-height: 800px;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
}

.hero-content p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}


.cta-button {
    background-color: #d4af37;
    padding: 15px 40px;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #b8941e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-button:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* overview area */
.overview {
    padding: 0 20px;
    max-width: 1200px;
    margin: 3rem auto;
}

.overview h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* cards grid layout */
.cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    display: grid;
}

.card {
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 6px #ddd;
    border-radius: 8px;
}

.card:hover {
    box-shadow: 0 6px 12px #ccc;
}

.card img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #c49d1a;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.8rem;
}

/* top attractions section */
.featured {
    padding: 0 20px;
    margin: 3rem auto;
    max-width: 1200px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.featured h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

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

.featured-item {
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 6px #ddd;
}

.featured-item:hover {
    box-shadow: 0 6px 12px #ccc;
}

.featured-item img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    color: #c49d1a;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.featured-content a {
    font-weight: bold;
    color: #b8941e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    text-decoration: underline;
}

.featured-content a:hover {
    text-decoration: underline;
}

/* image slideshow */
.slideshow-section {
    margin: 3rem auto;
    padding: 0 20px;
    max-width: 1200px;
}

.slideshow-section h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.slideshow-intro {
    color: #595959;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.slideshow-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.slideshow-container input[type="radio"] {
    display: none;
}

.slides {
    transition: transform 0.6s ease-in-out;
    display: flex;
}

.slide {
    aspect-ratio: 16 / 9;
    position: relative;
    min-width: 100%;
}

/* Zoomable Image */

.zoom-checkbox {
    display: none;
}

.slide > label[for^="zoom"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    display: block;
    z-index: 1;
}

.zoomable-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.slide > label[for^="zoom"]:hover .zoomable-image {
    opacity: 0.95;
}

/* Zoom Modal Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

#zoom1:checked ~ #overlay1,
#zoom2:checked ~ #overlay2,
#zoom3:checked ~ #overlay3,
#zoom4:checked ~ #overlay4,
#zoom5:checked ~ #overlay5,
#zoom6:checked ~ #overlay6,
#zoom7:checked ~ #overlay7,
#zoom8:checked ~ #overlay8,
#zoom9:checked ~ #overlay9,
#zoom10:checked ~ #overlay10,
#zoom11:checked ~ #overlay11,
#zoom12:checked ~ #overlay12,
#zoom13:checked ~ #overlay13,
#zoom14:checked ~ #overlay14 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.zoom-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(212, 175, 55, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: rgba(184, 148, 30, 1);
    transform: scale(1.1);
}

.zoom-prev,
.zoom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(212, 175, 55, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.zoom-prev {
    left: 30px;
}

.zoom-next {
    right: 30px;
}

.zoom-prev:hover,
.zoom-next:hover {
    background: rgba(212, 175, 55, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.zoom-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.zoom-caption h3 {
    color: #f5d76e;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.zoom-caption p {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 2rem;
    color: white;
    z-index: 6;
    pointer-events: none;
}

.slide-overlay h3 {
    color: #f5d76e;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-overlay p {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Slide Controls */
.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-controls label {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slide-controls label:hover {
    background-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.2);
}

/* Automatic Slideshow */
@keyframes autoSlide {
    0%, 6% { transform: translateX(0%); }
    7%, 13% { transform: translateX(-100%); }
    14%, 20% { transform: translateX(-200%); }
    21%, 27% { transform: translateX(-300%); }
    28%, 34% { transform: translateX(-400%); }
    35%, 41% { transform: translateX(-500%); }
    42%, 48% { transform: translateX(-600%); }
    49%, 55% { transform: translateX(-700%); }
    56%, 62% { transform: translateX(-800%); }
    63%, 69% { transform: translateX(-900%); }
    70%, 76% { transform: translateX(-1000%); }
    77%, 83% { transform: translateX(-1100%); }
    84%, 90% { transform: translateX(-1200%); }
    91%, 97% { transform: translateX(-1300%); }
    100% { transform: translateX(0%); }
}

.slides {
    animation: autoSlide 70s infinite ease-in-out;
}

/* Manual control */
#slide1:checked ~ .slides { animation: none; transform: translateX(0%); }
#slide2:checked ~ .slides { animation: none; transform: translateX(-100%); }
#slide3:checked ~ .slides { animation: none; transform: translateX(-200%); }
#slide4:checked ~ .slides { animation: none; transform: translateX(-300%); }
#slide5:checked ~ .slides { animation: none; transform: translateX(-400%); }
#slide6:checked ~ .slides { animation: none; transform: translateX(-500%); }
#slide7:checked ~ .slides { animation: none; transform: translateX(-600%); }
#slide8:checked ~ .slides { animation: none; transform: translateX(-700%); }
#slide9:checked ~ .slides { animation: none; transform: translateX(-800%); }
#slide10:checked ~ .slides { animation: none; transform: translateX(-900%); }
#slide11:checked ~ .slides { animation: none; transform: translateX(-1000%); }
#slide12:checked ~ .slides { animation: none; transform: translateX(-1100%); }
#slide13:checked ~ .slides { animation: none; transform: translateX(-1200%); }
#slide14:checked ~ .slides { animation: none; transform: translateX(-1300%); }

/* Active indicator animation */
@keyframes indicatorProgress {
    0%, 6% {
        background-color: #d4af37;
        transform: scale(1.3);
    }
    7%, 100% {
        background-color: rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(1) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 0s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(2) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 5s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(3) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 10s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(4) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 15s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(5) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 20s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(6) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 25s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(7) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 30s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(8) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 35s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(9) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 40s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(10) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 45s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(11) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 50s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(12) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 55s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(13) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 60s;
}

.slideshow-container:not(:has(input:checked)) .slide-controls label:nth-child(14) {
    animation: indicatorProgress 70s infinite;
    animation-delay: 65s;
}

/* Show active dot when manually clicked */
#slide1:checked ~ .slide-controls label:nth-child(1),
#slide2:checked ~ .slide-controls label:nth-child(2),
#slide3:checked ~ .slide-controls label:nth-child(3),
#slide4:checked ~ .slide-controls label:nth-child(4),
#slide5:checked ~ .slide-controls label:nth-child(5),
#slide6:checked ~ .slide-controls label:nth-child(6),
#slide7:checked ~ .slide-controls label:nth-child(7),
#slide8:checked ~ .slide-controls label:nth-child(8),
#slide9:checked ~ .slide-controls label:nth-child(9),
#slide10:checked ~ .slide-controls label:nth-child(10),
#slide11:checked ~ .slide-controls label:nth-child(11),
#slide12:checked ~ .slide-controls label:nth-child(12),
#slide13:checked ~ .slide-controls label:nth-child(13),
#slide14:checked ~ .slide-controls label:nth-child(14) {
    background-color: #d4af37;
    transform: scale(1.3);
    animation: none;
}

/* booking call to action */
.booking-section {
    background: linear-gradient(135deg, #e4be42 0%, #c0991a 100%);
    padding: 3rem 20px;
    margin-top: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.booking-section h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-section .cta-button {
    background-color: #1a1a1a;
    color: #f5d76e;
    border: 3px solid #f5d76e;
}

.booking-section .cta-button:hover {
    color: #000;
    background-color: #f5d76e;
    border-color: #d4af37;
}

.booking-section .cta-button:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    color: #000;
    padding: 3rem 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #000;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Attraction Page Layout */
.attraction {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.attraction-image img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.attraction-info h2 {
    font-size: 2rem;
    color: #b8941e;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.details-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.detail h4 {
    color: #b8941e;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.book-button {
    display: inline-block;
    background-color: #d4af37;
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.book-button:hover {
    background-color: #b8941e;
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.book-button:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Culture Page Layout */
.culture-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.culture-image {
    width: 50%;
    margin-right: 2rem;
}

.culture-image img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.culture-text {
    width: 50%;
}

.culture-text h2 {
    font-size: 2rem;
    color: #b8941e;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tips-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fef9e7;
    border-left: 4px solid #b8941e;
}

.tips-box h4 {
    color: #b8941e;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* Food Page Layout */
.food-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.food-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.food-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px #ddd;
}

.food-card:hover {
    box-shadow: 0 6px 12px #ccc;
}

.food-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.food-info {
    padding: 1.5rem;
}

.food-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #b8941e;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.restaurant-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.restaurant-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px #ddd;
}

.restaurant-card h3 {
    color: #b8941e;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.restaurant-card strong {
    color: #b8941e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dining Tips */
.dining-tips {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.dining-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tip-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px #ddd;
}

.tip-box h4 {
    color: #b8941e;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* Booking Form */
.booking-intro {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
    text-align: center;
}

.form-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
}

.booking-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px #ddd;
}

.booking-form h2 {
    color: #b8941e;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

fieldset {
    border: 1px solid #b8941e;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

legend {
    font-weight: bold;
    color: #b8941e;
    padding: 0 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

small {
    display: block;
    margin-top: -1rem;
    margin-bottom: 1rem;
    color: #595959;
    font-size: 0.9rem;
    font-style: italic;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #b8941e;
    border-color: #b8941e;
    box-shadow: 0 0 0 2px rgba(184, 148, 30, 0.2);
}

.checkbox-list label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: normal;
}

.checkbox-list input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
    margin-bottom: 0;
    cursor: pointer;
}

.input-with-symbol {
    position: relative;
    display: block;
    margin-bottom: 1.5rem;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #b8941e;
    font-weight: bold;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 10;
    line-height: 1.5rem;
}

.input-with-symbol input[type="number"] {
    padding-left: 40px !important;
    width: 100%;
    margin-bottom: 0 !important;
}

.form-buttons {
    text-align: center;
}

.submit-btn {
    background-color: #d4af37;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #b8941e;
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.submit-btn:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

.form-note {
    text-align: center;
    color: #595959;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.benefit-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px #ddd;
    text-align: center;
}

.benefit-box h3 {
    color: #b8941e;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: #b8941e;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #b8941e;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px #ddd;
}

/* page footer */
footer {
    padding: 3rem 20px 1rem;
    background-color: #1a1a1a;
    margin-top: auto;
    color: white;
}

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

.footer-column h3,
.footer-column h4 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #fff;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #aaa;
    text-align: center;
}

/* Media Queries for Tablet (768px) */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        flex-wrap: wrap;
        position: relative;
    }

    .menu-icon {
        display: flex;
        order: 1;
    }

    .logo {
        order: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #1a1a1a;
        order: 2;
        padding: 0;
        margin-top: 1rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .menu-checkbox:checked ~ .nav-menu {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    /* Hero */
    .hero {
        min-height: 400px;
        height: 500px;
        max-height: 500px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    /* Grids - 2 columns */
    .cards-container,
    .featured-container,
    .food-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide-overlay h3 {
        font-size: 1.5rem;
    }

    .slide-overlay p {
        font-size: 0.95rem;
    }

    .slide-overlay {
        padding: 1.5rem;
    }
    
    /* Attraction */
    .attraction {
        grid-template-columns: 1fr;
    }
    
    .details-box {
        grid-template-columns: 1fr;
    }
    
    /* Culture */
    .culture-section {
        flex-direction: column;
    }
    
    .culture-image,
    .culture-text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    /* Tips Grid */
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Contact */
    .contact-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Media Queries for Mobile (480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        min-height: 300px;
        height: 400px;
        max-height: 400px;
    }
    
    .hero-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}
    
   .hero-content p {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}
    
    /* Page Header */
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Grids - 1 column */
    .cards-container,
    .featured-container,
    .food-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .slide-overlay h3 {
        font-size: 1.3rem;
    }

    .slide-overlay p {
        font-size: 0.85rem;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .slide-controls {
        bottom: 10px;
    }

    .slide-controls label {
        width: 10px;
        height: 10px;
    }
    
    /* Images - maintain aspect ratio on mobile */
    .attraction-image img,
    .culture-image img {
        aspect-ratio: 16 / 9;
    }
    
    /* Form */
    .booking-form {
        padding: 1rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
}
