* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #f5f1e8;
    --sand-color: #d4c4a8;
    --sand-light: #e8ddd0;
    --sand-medium: #c9b896;
    --sand-dark: #b8a082;
    --gold: #c9a961;
    --gold-light: #d4b877;
    --gold-dark: #b8954f;
    --desert-brown: #8b7355;
    --text-dark: #3d3528;
    --text-gray: #6b5d47;
    --white: #ffffff;
    --dark-footer: #2a2419;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-sand: rgba(201, 169, 97, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--primary-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--sand-light);
    box-shadow: 0 2px 10px rgba(139, 115, 85, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.logo a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--desert-brown);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-icon {
    display: none;
}

.nav-text {
    display: inline;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Sections */
.hero-fullscreen {
    margin-top: 70px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 60px;
}

.page-hero {
    margin-top: 70px;
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.architecture-hero {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9a961 50%, #b8954f 100%);
}

.shopping-hero {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.nature-hero {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9b896 100%);
}

.culture-hero {
    background: linear-gradient(135deg, #e8ddd0 0%, #c9a961 50%, #b8a082 100%);
}

.contact-hero {
    background: linear-gradient(135deg, #d4c4a8 0%, #d4b877 50%, #c9a961 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    flex: 1;
    text-align: left;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    animation: fadeInUp 1s 0.4s both;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--desert-brown);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--desert-brown);
    margin-bottom: 3rem;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.architecture-bg {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9a961 50%, #b8954f 100%);
}

.shopping-bg {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.nature-bg {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9b896 100%);
}

.culture-bg {
    background: linear-gradient(135deg, #e8ddd0 0%, #c9a961 50%, #b8a082 100%);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.category-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.category-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.5);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-size: 2.5rem;
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.detail-card.reverse {
    direction: rtl;
}

.detail-card.reverse > * {
    direction: ltr;
}

.detail-image {
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.burj-khalifa-image {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9a961 50%, #b8954f 100%);
}

.palm-jumeirah-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.dubai-mall-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9b896 100%);
}

.burj-al-arab-image {
    background: linear-gradient(135deg, #d4b877 0%, #c9a961 50%, #b8954f 100%);
}

.dubai-mall-shopping-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4c4a8 50%, #c9a961 100%);
}

.mall-emirates-image {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9b896 50%, #b8a082 100%);
}

.dubai-fountain-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4b877 50%, #c9a961 100%);
}

.dubai-opera-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #c9a961 50%, #b8954f 100%);
}

.desert-safari-image {
    background: linear-gradient(135deg, #c9b896 0%, #b8a082 50%, #8b7355 100%);
}

.water-sports-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9a961 100%);
}

.theme-parks-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.jumeirah-beach-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9b896 100%);
}

.kite-beach-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.palm-beach-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #b8a082 100%);
}

.safa-park-image {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9b896 50%, #b8a082 100%);
}

.dubai-creek-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #c9a961 50%, #b8954f 100%);
}

.boat-tours-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4b877 50%, #c9a961 100%);
}

.dune-buggy-image {
    background: linear-gradient(135deg, #c9b896 0%, #b8a082 50%, #8b7355 100%);
}

.al-fahidi-image {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9a961 50%, #b8954f 100%);
}

.dubai-museum-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.heritage-village-image {
    background: linear-gradient(135deg, #c9b896 0%, #b8a082 50%, #8b7355 100%);
}

.gold-souk-image {
    background: linear-gradient(135deg, #d4b877 0%, #c9a961 50%, #b8954f 100%);
}

.spice-souk-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #c9a961 50%, #b8a082 100%);
}

.textile-souk-image {
    background: linear-gradient(135deg, #f0e8d8 0%, #d4c4a8 50%, #c9a961 100%);
}

.etihad-museum-image {
    background: linear-gradient(135deg, #d4c4a8 0%, #c9b896 50%, #b8954f 100%);
}

.cultural-centre-image {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4b877 50%, #c9a961 100%);
}

.detail-content h2 {
    font-size: 2.2rem;
    color: var(--desert-brown);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.detail-content h3 {
    font-size: 1.8rem;
    color: var(--desert-brown);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight {
    background: var(--sand-light);
    padding: 1rem;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    font-style: italic;
    margin: 1.5rem 0;
}

.facts-list {
    list-style: none;
    margin: 1.5rem 0;
}

.facts-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.facts-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.2rem;
    color: var(--desert-brown);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--desert-brown);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--desert-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--sand-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    font-size: 2.2rem;
    color: var(--desert-brown);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.map-container {
    background: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    display: block;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.map-placeholder:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Thank You Section */
.thank-you-section {
    padding: 120px 0;
    background: var(--primary-bg);
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.thank-you-content h1 {
    font-size: 2.8rem;
    color: var(--desert-brown);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thank-you-note {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--dark-footer);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-documents {
    text-align: left;
}

.footer-documents h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-documents ul {
    list-style: none;
}

.footer-documents ul li {
    margin-bottom: 0.5rem;
}

.footer-documents ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-documents ul li a:hover {
    color: var(--gold);
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

/* Unique Sections */
.unique-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.unique-section:nth-child(even) {
    background: var(--white);
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tip-card h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--desert-brown);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Why Visit Section */
.why-visit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-visit-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Architecture Facts Section */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.fact-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fact-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.fact-item:hover .fact-image {
    transform: scale(1.05);
}

.fact-content {
    padding: 2rem;
}

.fact-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Timeline Section */
.timeline-content {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--gold);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Visit Content */
.visit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visit-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Shopping Tips Section */
.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tip-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tip-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Calendar Content */
.calendar-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.calendar-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Family Activities Section */
.family-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.family-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Beach Safety Section */
.safety-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.safety-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.safety-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.safety-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Conservation Section */
.conservation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conservation-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Seasonal Activities Section */
.seasonal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.season-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.season-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.season-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Cultural Etiquette Section */
.etiquette-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.etiquette-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.etiquette-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.etiquette-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Traditional Crafts Section */
.crafts-content {
    max-width: 900px;
    margin: 0 auto;
}

.crafts-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.crafts-list {
    list-style: none;
    margin: 2rem 0;
}

.crafts-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--sand-light);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.crafts-list li strong {
    color: var(--desert-brown);
}

/* Cultural Events Section */
.events-content {
    max-width: 900px;
    margin: 0 auto;
}

.events-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-item h3 {
    color: var(--desert-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Document Content */
.document-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.document-content h1 {
    font-size: 2.5rem;
    color: var(--desert-brown);
    margin-bottom: 1rem;
}

.document-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.document-content h2 {
    font-size: 1.8rem;
    color: var(--desert-brown);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.document-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.document-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.document-content ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--sand-color);
    }

    .nav-link {
        justify-content: flex-start;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-fullscreen {
        height: auto;
        min-height: 70vh;
        margin-top: 70px;
        padding: 40px 0;
    }

    .hero-background-blur {
        filter: blur(5px);
    }

    .hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        max-height: 300px;
    }

    .page-hero {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-card.reverse {
        direction: ltr;
    }

    .detail-image {
        height: 250px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tips-grid,
    .highlights-grid,
    .facts-grid,
    .tips-content,
    .safety-content,
    .seasonal-content,
    .etiquette-content,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .fact-image {
        height: 280px;
    }

    .document-content {
        padding: 2rem;
    }

    .map-placeholder {
        height: 250px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .detail-content h2 {
        font-size: 1.8rem;
    }

    .detail-content h3 {
        font-size: 1.5rem;
    }

    .fact-image {
        height: 250px;
    }

    .facts-grid {
        gap: 2rem;
    }
}

