/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #b8860b;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray: #666;
  --gray-light: #F8F8F8;
  --gray-dark: #333333;
  --gold: #D4AF37;
  --gold-light: #F4E5A1;
  --gold-dark: #B8941F;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
  margin: 0 10px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--body-font);
  font-size: 1.1em;
  color: var(--gray-dark);
  line-height: 1.8;
  gap: 5px;
  letter-spacing: 0.5px;
}

.breadcrumb-link {
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-divider {
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb-current {
  font-weight: 600;
  color: var(--black);
}

.breadcrumb-title-wrap {
  animation: fadeInUp 0.6s ease-out forwards;
}

.breadcrumb-title {
  font-family: var(--header-font);
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: right;
  letter-spacing: 1px;
}

.hero-section {
    background: var(--black); /* Dark background for luxury */
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2; /* Subtle grain for texture */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto 2rem;
    text-align: left;
    background: none;
    padding: 2rem;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
    box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--main-color);
}

.download-link::before {
   content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.download-link:hover::before {
    left: 100%;
}

.download-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* Brief Summary */
.brief-summary {
    padding: 3rem 2rem;
    background: var(--gray-light); /* Soft gray for a clean look */
}

.brief-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.brief-summary h2::after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.summary-list {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.summary-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gold); /* Gold border for elegance */
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.summary-list li strong {
    color: var(--main-color);
    font-weight: 600;
}

/* Itinerary */
.itinerary-section {
    padding: 4rem 2rem;
    background: var(--white); /* Clean white for simplicity */
}

.itinerary-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.itinerary-title::after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.day-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--main-color);
}

.day-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.day-number {
    font-size: 2.5rem; /* Slightly smaller to fit better */
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem; /* Moved closer to edge */
    z-index: 1;
    min-width: 80px; /* Ensure consistent width */
    text-align: center;
}

.day-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    padding-right: 90px; /* Increased padding to accommodate wider numbers */
    position: relative;
    z-index: 2;
}

.day-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Contact Form */
.contact-section {
    padding: 4rem 2rem;
    background: var(--black); /* Dark background for luxury */
    color: var(--white);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.contact-title::after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05); /* Subtle transparency */
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gold-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(161, 119, 61, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
    box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--main-color);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  border-color: var(--white);
}

.back-to-top::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
  opacity: 1;
}

.back-to-top-icon {
  font-size: 1.5em;
  color: var(--black);
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  color: var(--black);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 480px) {
 
}

@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .day-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top-icon {
    font-size: 1.2em;
  }
}

@media screen and (min-width: 769px) {
  .breadcrumb-section {
    padding: 40px 32px 20px;
    margin: 0 20px;
  }

  .breadcrumb-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }

  .breadcrumb-links {
    font-size: 1.2em;
  }

  .breadcrumb-title {
    font-size: 4rem;
    text-align: right;
  }
}