/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-dark: #1a2332;
  --color-primary: #69832b;
  --color-gold: #d4af37;
  --color-white: #ffffff;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
  --text: #2d3319;
  --primary: #69832b;
  --primary-dark: #3d4d1c;
  --primary-light: #5a7028;
  --secondary: #8b7355;
  --cream: #faf8f5;
  --cream-dark: #f5f2ed;
  --text: #2d3319;
  --text-muted: #5c6347;
  --white: #ffffff;
  --black: #1a1a1a;
  --gold: #c9a961;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  line-height: 1.6;
  background-color: var(--color-white);
}

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

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

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: #0f766e;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn-white:hover {
  background-color: var(--color-gray-100);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-gray-400);
  color: var(--color-gray-800);
}

.btn-outline:hover {
  background-color: var(--color-gray-100);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn-outline.light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: var(--color-white);
}

.btn-instagram:hover {
  opacity: 0.9;
}

.btn-instagram svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Icon Buttons */
.icon-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Top Banner */
.top-banner {
  background-color: var(--primary);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}

.top-banner strong {
  color: var(--gold);
}

/* Header */
.header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 45px;
  height: 45px;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-item a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
}

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

.nav-item .arrow {
  font-size: 10px;
  opacity: 0.6;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #ff6b35;
}

.arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Mobile dropdown styles */
.mobile-nav .dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.mobile-nav .dropdown-toggle::after {
  content: "▼";
  position: absolute;
  right: 10px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-nav .dropdown-toggle.active::after {
  transform: rotate(180deg);
}

.mobile-nav .mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.mobile-nav .mobile-dropdown-menu.active {
  max-height: 500px;
}

.mobile-nav .mobile-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  color: #666;
  font-size: 14px;
}

/* Hamburger to X animation */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  /* display: none; */
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

@media (min-width: 768px) {
  .phone {
    display: flex;
  }
  
}

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

.phone-dropdown {
  position: relative;
}

.phone-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  /* border: 1px solid #ccc; */
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.phone-icon{
    display: flex;
    align-items: center;
}
.phone-dropdown:hover .phone-submenu {
  display: block;
}

.header-actions .btn {
  display: none;
}

@media (min-width: 768px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 999;
  padding: 100px 20px 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.login-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 51, 25, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-form-container.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Close Button */
.login-form-container .fa-times {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  background: var(--cream);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.login-form-container .fa-times:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

/* Form Container */
.login-form-container form {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  animation: slideUp 0.4s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Heading */
.login-form-container form h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Input Groups */
.input-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.login-form-container form label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: capitalize;
}

.login-form-container form .box {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  background: white;
  color: var(--text);
  transition: all 0.3s ease;
  outline: none;
}

.login-form-container form .box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(105, 131, 43, 0.1);
}

/* reCAPTCHA Container */
.recaptcha-container {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

/* Submit Button */
.login-form-container form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.login-form-container form .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(105, 131, 43, 0.3);
}

.login-form-container form .btn:active {
  transform: translateY(0);
}

/* Remember Me Checkbox */
.remember-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.remember-group label {
  margin-bottom: 0;
}

.login-form-container form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.remember-group label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Links */
.login-form-container form p {
  color: var(--text);
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}

.login-form-container form p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-form-container form p a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .login-form-container form {
    padding: 2rem 1.5rem;
  }
  .logo-icon{
    display: none;
  }
  .phone-icon > p{
    display: none;
  }

  .login-form-container form h3 {
    font-size: 1.5rem;
  }

  .login-form-container .fa-times {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  p{
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  max-width: 800px;
  margin-left: 5%;
}

@media (min-width: 1024px) {
  .hero-content {
    margin-left: 10%;
  }
}

.hero-tag {
  display: inline-block;
  background-color: var(--primary);
  color: var(--color-white);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-btn.active,
.hero-nav-btn:hover {
  background-color: var(--color-white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-arrow {
    display: flex;
  }
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--color-white);
}

.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}

/* Tripadvisor Bar */
.Tripadvisor-bar {
  background-color: var(--color-gray-100);
  padding: 1rem;
}

.Tripadvisor-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.Tripadvisor-label {
  font-weight: 600;
}

.Tripadvisor-stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: #00b67a;
  font-size: 1rem;
}

.star.half {
  opacity: 0.5;
}

.Tripadvisor-rating {
  color: var(--color-gray-600);
}

.Tripadvisor-brand {
  font-weight: 600;
  color: #00b67a;
}

/* Section Styles */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  display: block;
  margin-bottom: 0.25rem;
  text-align: center;
}

.section-label.light {
  color: var(--color-primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gray-800);
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-title.light {
  color: var(--color-white);
}

.section-title.centered {
  text-align: center;
  margin-bottom: 3rem;
}

/* Deals Section */
.deals-section {
  padding: 3rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  padding: 0 1rem;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .carousel-btn {
    display: flex;
  }
}

.carousel-btn:hover {
  background: var(--color-gray-100);
}

.carousel-btn.light {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-gray-800);
}

/* Tour Card */
.tour-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tour-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.tour-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ef4444;
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tour-info {
  padding: 1rem;
}

.tour-days {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.tour-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--color-gray-800);
}

.tour-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

/* Trip Card (for trip sections) */
.trip-card {
  flex-shrink: 0;
  width: 280px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.trip-image {
  height: 320px;
  overflow: hidden;
  border-radius: 1rem;
}

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

.trip-card:hover .trip-image img {
  transform: scale(1.05);
}

.trip-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-white);
}

.trip-days {
  font-size: 0.75rem;
  opacity: 0.9;
}

.trip-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin: 0.25rem 0 0.5rem;
}

.trip-price {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Trips Section */
.trips-section {
  padding: 4rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

.dark-bg {
  background-color: var(--color-dark);
  max-width: 100%;
  padding-left: calc((100% - 1280px) / 2 + 1rem);
  padding-right: calc((100% - 1280px) / 2 + 1rem);
}

/* Why Section */
.why-section {
  padding: 4rem 1rem;
  background-color: var(--color-gray-100);
}

.benefits-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(13, 148, 136, 0.1);
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Instagram Section */
.instagram-section {
  padding: 4rem 1rem;
  /* max-width: 1280px; */
  /* margin: 0 auto; */
}

.instagram-header {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.instagram-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .instagram-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.instagram-description {
  color: var(--color-gray-600);
  line-height: 1.6;
  max-width: 80vw;
  text-align: center;
  margin-bottom: 1rem;
}

/* .instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
} */

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 1rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}

.newsletter-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.newsletter-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .newsletter-content h2 {
    font-size: 2rem;
  }
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  color: var(--color-white);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-disclaimer {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background-color: var(--color-gray-800);
  color: var(--color-white);
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-white);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: var(--color-white);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.customer-service {
  margin-top: 1rem;
}

.customer-service span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.customer-service strong {
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badges {
  display: flex;
  gap: 1rem;
}

.trust-badges img {
  height: 2rem;
}

/* Utility Classes */
@media (max-width: 640px) {
  .promo-code {
    display: none;
  }

  .section-header .btn {
    display: none;
  }
}

/* Staggered Gallery Styles */
.scroll-info,
header {
  position: absolute;
  left: 1rem;
}

.staggered-gallery {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Wrapper so we can rotate & shift without affecting layout */
.item {
  width: 180px;
  /* Set your image size here */
  height: 180px;
  position: relative;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* --- Shifts (vertical offset) --- */
.shift-1 {
  top: 10px;
}

.shift-2 {
  top: -10px;
}

.shift-3 {
  top: 20px;
}

/* --- Rotations --- */
.rotate-1 {
  transform: rotate(-3deg);
}

.rotate-2 {
  transform: rotate(3deg);
}

.rotate-3 {
  transform: rotate(-5deg);
}

/* Smooth look */
.item {
  transition: 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
  /* optional hover effect */
}
