/* Variables */
:root {
    --primary: #c5a059;
    /* Gold */
    --primary-dark: #a67c00;
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo-img {
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
}

/* Hero */
.history-hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
}

.main-btn {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
}

/* Tour Cards */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-img-wrapper {
    height: 200px;
    position: relative;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
}

.tour-info {
    padding: 25px;
}

.card-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.card-btn:hover {
    background: var(--primary);
    color: white;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.accordion-header {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-body {
    display: none;
    padding: 15px 0;
    color: #666;
}

.accordion-item.active .accordion-body {
    display: block;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

/* Floating Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25d366;
}

.phone-btn {
    background: #007bff;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* Mobile menu toggle needs JS */
    .hero-content h1 {
        font-size: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

:root {
    --gold: #c5a059;
    --gold-hover: #a67c00;
    --dark: #1a1a1a;
    --white: #ffffff;
}

.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gold);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
}

.logo-text span {
    color: var(--gold);
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

.nav-cta-btn {
    background: var(--gold);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
}

.history-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(30px, 8vw, 65px);
    margin-bottom: 15px;
    color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

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

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.main-btn {
    background: var(--gold);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}

.outline-btn {
    border: 2px solid var(--gold);
    color: var(--white) !important;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.outline-btn:hover {
    background-color: var(--gold); 
    color: var(--dark) !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

html {
    scroll-behavior: smooth;
}

.hero-btns {
    display: flex;
    gap: 20px; 
    justify-content: center;
    margin-top: 35px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}



:root {
  --gold: #c5a059;
  --dark: #1a1a1a;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: var(--dark); font-weight: 800; margin-top: 10px; }
.subtitle { color: var(--gold); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
.header-line { width: 70px; height: 3px; background: var(--gold); margin: 15px auto; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #eee;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.tour-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-img img { transform: scale(1.1); }

.tour-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}

.tour-card:hover .tour-overlay { opacity: 1; }

.view-btn {
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}

.tour-info { padding: 25px; }
.tour-info h3 { font-size: 20px; margin-bottom: 12px; color: var(--dark); }
.tour-info p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }

.book-btn {
  width: 100%;
  padding: 12px;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover { background: var(--gold); color: white; }

/* Testimonials Styling */
.testimonials-section { background: var(--light-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: white; padding: 30px; border-radius: 20px; box-shadow: var(--shadow); }
.stars { color: #f1c40f; margin-bottom: 15px; }
.user-info { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.user-info img { width: 50px; height: 50px; border-radius: 50%; }
.user-info h4 { margin: 0; font-size: 16px; }
.user-info span { font-size: 13px; color: #888; }


:root {
  --gold: #c5a059;
  --dark: #1a1a1a;
  --white: #ffffff;
  --light-bg: #f9f9f9;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tours-section {
  padding: 100px 0;
  background-color: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.tour-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img-box img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tour-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-content h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.tour-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-book {
  width: 100%;
  padding: 12px;
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: var(--gold);
  color: white;
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.testimonials-section {
  padding: 100px 0;
  background-color: #fcfcfc; 
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testi-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.1); 
  border-color: var(--gold);
}

.quote-icon {
  font-size: 30px;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 10px;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #f1c40f; 
  font-size: 14px;
  margin-right: 2px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.client-details h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 3px;
  font-weight: 700;
}

.client-details span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  
  .testi-card {
    padding: 30px 20px;
  }
}

.faq-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.small-container {
    max-width: 850px; 
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 17px;
    color: var(--dark);
    margin: 0;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.faq-icon {
    color: var(--gold);
    font-size: 14px;
    transition: transform 0.4s ease;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 20px 30px 30px;
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-question { padding: 18px 20px; }
    .faq-question h3 { font-size: 15px; }
}


.contact-section {
    background-color: #fcfcfc;
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.contact-info-side {
    background-color: var(--dark); 
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.contact-info-side h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.gold-text { color: var(--gold); }

.contact-info-side p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods { margin-bottom: 40px; }

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.method-details h4 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #fff;
}

.method-details p {
    margin-bottom: 0;
    font-size: 14px;
}

.social-side {
    display: flex;
    gap: 15px;
}

.social-side a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-side a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-form-side {
    padding: 60px;
    background: #fff;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group { margin-bottom: 20px; }

.modern-form input, 
.modern-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
}

.modern-form input:focus, 
.modern-form textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-side, .contact-form-side {
        padding: 40px 20px;
    }
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}


.heritage-section {
    background-color: #fcfcfc;
    padding: 100px 0;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.heritage-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.heritage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.12);
    border-color: var(--gold);
}

.card-img-holder {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.heritage-card:hover .card-img-holder img {
    transform: scale(1.1);
}

.card-overlay-btn {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.card-img-holder:hover .card-overlay-btn {
    opacity: 1;
}

.card-overlay-btn button {
    background: var(--gold);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.heritage-card-info {
    padding: 30px;
}

.heritage-card-info h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.heritage-card-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px; 
    overflow: visible;
}

.view-link {
    text-decoration: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.view-link::after {
    content: '→';
    transition: transform 0.3s;
}

.view-link:hover {
    color: var(--dark);
}

.view-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .heritage-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}


.main-footer {
    background-color: #111111; 
    color: #ffffff;
    padding: 80px 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.footer-logo span { color: var(--gold); }

.brand-col p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social { display: flex; gap: 15px; }

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-5px);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i { font-size: 10px; color: var(--gold); }

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact-info { list-style: none; padding: 0; }

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaaaaa;
    font-size: 14px;
}

.footer-contact-info i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-newsletter {
    display: flex;
    margin-top: 20px;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 100%;
}

.footer-newsletter button {
    background: var(--gold);
    border: none;
    padding: 0 20px;
    color: #111;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover { background: var(--gold-hover); }

.footer-bottom {
    background-color: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #666;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex span { color: var(--gold); font-weight: 600; }

.designer-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
}


@media (max-width: 768px) {
    .nav {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        text-align: center;
    }

    .nav.active {
        display: flex; 
    }

    .nav a {
        margin: 15px 0;
        display: block;
        font-size: 18px;
    }
    .menu-toggle {
        display: block !important;
    }
}



@media (max-width: 768px) {
    .main-footer {
        text-align: center; 
    }

    .footer-grid {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 40px;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links, .footer-contact-info {
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .footer-links li, .footer-contact-info li {
        justify-content: center; 
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); 
    }

    .footer-newsletter {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}


.destinations-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #777;
    font-size: 15px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px; 
    gap: 20px;
}

.dest-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: 0.3s;
}

.dest-info {
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.dest-card:hover .dest-info {
    transform: translateY(0);
}

.loc-tag {
    background: var(--gold);
    color: #111;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.dest-info h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.dest-info p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
    opacity: 0;
    transition: 0.3s;
}

.dest-card:hover .dest-info p {
    opacity: 1;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .dest-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .dest-info p {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    
    .section-padding {
        padding: 40px 0 !important; 
    }

    .section-header {
        margin-bottom: 25px !important;
    }

    .section-header h2 {
        font-size: 26px !important; 
    }

    .header-line {
        margin: 10px auto !important;
    }

  
    .faq-accordion, 
    .tours-grid, 
    .heritage-grid, 
    .destinations-grid, 
    .testimonial-grid {
        margin-top: 15px !important;
    }

    .heritage-card-info, .dest-info {
        padding: 20px !important;
    }

    .main-footer {
        padding-top: 40px !important;
    }

    .footer-grid {
        gap: 25px !important; 
    }
}