* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --bg-card-hover: #242424;
    --text-light: #ffffff;
    --text-gray: #d3d3d3;
    --accent-gold: #ffd700;
    --accent-orange: #ff8c42;
    --accent-gold-hover: #ffed4e;
    --border-dark: #333333;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-dark);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: var(--accent-gold-hover);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-gold);
    animation: fadeInLeft 1s ease-out;
    z-index: 3;
    min-height: 400px;
    background-color: var(--bg-card);
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    min-height: 400px;
}

.hero-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
    text-align: left;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: var(--text-light);
    line-height: 1.2;
}

.hero-content > p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    line-height: 1.6;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-orange) 100%);
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 2;
    text-align: justify;
}

/* What to Visit Section */
.what-to-visit {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.preview-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid var(--border-dark);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
}

.preview-image {
    height: 250px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-card:hover .preview-image {
    transform: scale(1.05);
}

.preview-content {
    padding: 2rem;
}

.preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.preview-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
    transform: translateX(5px);
}

/* Useful Tips Section */
.useful-tips {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.tip-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* News & Events Section */
.news-events {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.event-image {
    height: 200px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    background-color: var(--bg-dark);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
}

.event-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-date {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Page Hero (for inner pages) */
.page-hero {
    background-color: var(--bg-dark);
    padding: 120px 20px 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Content Section (for article pages) */
.content-section {
    padding: 80px 20px;
    background-color: var(--bg-darker);
}

/* Document Content Styles */
.document-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.document-content h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.document-content h2:first-of-type {
    margin-top: 0;
}

.document-content h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.document-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.document-content ul {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.document-content ul li {
    margin-bottom: 0.8rem;
}

.document-content ul li::marker {
    color: var(--accent-gold);
}

.attraction-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.attraction-article.reverse {
    direction: rtl;
}

.attraction-article.reverse > * {
    direction: ltr;
}

.article-image {
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.burj-khalifa-large {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(52, 152, 219, 0.9) 100%);
}

.dubai-mall-large {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(255, 71, 87, 0.9) 100%);
}

.dubai-fountain-large {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.9) 0%, rgba(155, 89, 182, 0.9) 100%);
}

.palm-jumeirah-large {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.9) 0%, rgba(255, 184, 0, 0.9) 100%);
}

.al-fahidi-img {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.9) 0%, rgba(218, 165, 32, 0.9) 100%);
}

.dubai-creek-img {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.9) 0%, rgba(100, 149, 237, 0.9) 100%);
}

.gold-souk-img {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 223, 0, 0.9) 100%);
}

.mosque-culture-img {
    background: linear-gradient(135deg, rgba(72, 61, 139, 0.9) 0%, rgba(138, 43, 226, 0.9) 100%);
}

.dubai-beaches-img {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.9) 0%, rgba(0, 191, 255, 0.9) 100%);
}

.desert-safari-img {
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.9) 0%, rgba(222, 184, 135, 0.9) 100%);
}

.miracle-garden-img {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9) 0%, rgba(255, 105, 180, 0.9) 100%);
}

.green-parks-img {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(50, 205, 50, 0.9) 100%);
}

.article-content {
    padding: 1rem;
}

.article-content h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.article-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.info-item a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-gold);
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-form-wrapper h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--bg-darker);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-orange) 100%);
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-dark);
}

.map-address {
    text-align: center;
    color: var(--text-gray);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Thank You Section */
.thank-you-section {
    padding: 150px 20px;
    background-color: var(--bg-darker);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
}

.thank-you-content h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-gray);
    padding: 3rem 20px;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Climate Section (go.html) */
.climate-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.climate-content {
    max-width: 1000px;
    margin: 0 auto;
}

.climate-info h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.climate-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.weather-tips {
    margin-top: 3rem;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.weather-tips h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.tips-list li:last-child {
    border-bottom: none;
}

/* Safety Section (go.html) */
.safety-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.safety-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.safety-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.safety-card h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.safety-card p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Future Projects Section (modern-dubai.html) */
.future-projects {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.projects-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.project-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project-item h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.project-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Records Section (modern-dubai.html) */
.records-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.record-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    text-align: center;
    transition: all 0.3s ease;
}

.record-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.record-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.record-number {
    color: var(--accent-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 140, 66, 0.3);
}

.record-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Cuisine Section (history-culture.html) */
.cuisine-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.cuisine-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cuisine-intro {
    margin-bottom: 3rem;
}

.cuisine-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
    text-align: center;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dish-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.dish-card-image {
    height: 250px;
    overflow: hidden;
}

.dish-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-card-image img {
    transform: scale(1.05);
}

.dish-card-content {
    padding: 2rem;
}

.dish-card h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dish-card p {
    color: var(--text-gray);
    line-height: 1.9;
}

.dining-experience-card-wrapper {
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.dining-tips {
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dining-tips-image {
    height: 300px;
    overflow: hidden;
}

.dining-tips-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dining-tips-content {
    padding: 2.5rem;
}

.dining-tips h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dining-tips p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Mosque Cards Section (history-culture.html) */
.mosque-cards-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-dark);
}

.mosque-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mosque-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.mosque-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.mosque-card-image {
    height: 250px;
    overflow: hidden;
}

.mosque-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mosque-card:hover .mosque-card-image img {
    transform: scale(1.05);
}

.mosque-card-content {
    padding: 1.5rem;
}

.mosque-card-content h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mosque-card-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Festivals Section (history-culture.html) */
.festivals-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.festival-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.festival-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.festival-card-image {
    height: 250px;
    overflow: hidden;
}

.festival-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.festival-card:hover .festival-card-image img {
    transform: scale(1.05);
}

.festival-card-content {
    padding: 2rem;
}

.festival-card h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.festival-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Water Sports Section (nature-activities.html) */
.water-sports-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.water-sports-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sport-category {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.sport-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sport-category h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sport-category p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Adventure Tours Section (nature-activities.html) */
.adventure-tours-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.adventure-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.adventure-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.adventure-card-image {
    height: 250px;
    overflow: hidden;
}

.adventure-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.adventure-card:hover .adventure-card-image img {
    transform: scale(1.05);
}

.adventure-card-content {
    padding: 2.5rem;
}

.adventure-card h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.adventure-card p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        text-align: left;
        transition: left 0.3s ease;
        padding: 100px 2rem 2rem;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.8);
        border-right: 1px solid var(--border-dark);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
    }

    .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-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content > p {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-image {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .preview-cards,
    .tips-grid,
    .events-grid,
    .safety-grid,
    .records-grid,
    .dishes-grid,
    .adventure-grid,
    .mosque-cards-grid,
    .festivals-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .attraction-article {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .attraction-article.reverse {
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.8rem;
    }

    .thank-you-content h1 {
        font-size: 2.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .document-content {
        padding: 2rem;
    }

    .document-content h2 {
        font-size: 1.6rem;
    }

    .document-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .page-hero {
        padding: 100px 20px 60px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent-gold);
    color: var(--bg-darker);
}

::-moz-selection {
    background-color: var(--accent-gold);
    color: var(--bg-darker);
}

