/* Old color variables removed - new ones defined above */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: rgba(20, 28, 38, 0.85);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

/* Modern Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding-top: 140px !important;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: block;
    word-wrap: break-word;
    letter-spacing: -0.02em;
    position: relative;
}

/* Title Glow Effect */
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.3), rgba(241, 143, 1, 0.3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(2px);
    z-index: -1;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 64, 0.7) 0%, rgba(46, 134, 171, 0.4) 100%);
    z-index: 1;
}



/* Responsive adjustments for hero only */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-container {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.services-section {
    background: linear-gradient(135deg, #fffbe7 0%, #f8fafb 100%);
    z-index: 1;
}
.signature-experiences {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
    z-index: 1;
}
.destinations-section {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
    z-index: 1;
}
.about-section {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
    z-index: 1;
}
.contact-section {
    background: linear-gradient(135deg, #f8fafb 0%, #fffbe7 100%);
    z-index: 1;
}



/* Typography */
/* Enhanced Text Gradient with Animation - Same as Gallery */
.text-gradient {
    background: linear-gradient(135deg, #F18F01 0%, #A23B72 50%, #2E86AB 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 300% 300% !important;
    animation: gradientShift 4s ease-in-out infinite !important;
    word-wrap: break-word !important;
    font-weight: 900 !important;
    position: relative !important;
}

.text-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F18F01 0%, #A23B72 50%, #2E86AB 100%);
    background-size: 300% 300%;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
}

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

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Subtler glass effect for main content areas */
.container,
.section-header,
.footer,
.modal-content,
.hero-image-container,
.service-card,
.signature-card,
.destination-card,
.about-section,
.contact-section {
  background: rgba(255, 255, 255, 0.07);   /* Lower opacity */
  backdrop-filter: blur(4px);              /* Less blur */
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;                     /* Softer corners */
  box-shadow: 0 2px 16px 0 rgba(31, 38, 135, 0.05);
  border: 1px solid rgba(255,255,255,0.06); /* Softer border */
  padding: 40px 32px;
}

@media (max-width: 700px) {
  .container,
  .section-header,
  .footer,
  .modal-content,
  .hero-image-container,
  .service-card,
  .signature-card,
  .destination-card,
  .about-section,
  .contact-section {
    padding: 20px 8px;
  }
}

/* For cards and modals, keep them a bit more solid for readability, but still subtle */
.modal-content,
.service-card,
.signature-card,
.destination-card {
  background: rgba(30, 41, 59, 0.13);
  color: #fff;
}

/* Ensure text remains readable */
.hero-title, .hero-subtitle, .section-title, .section-description, .footer, .modal-content {
  color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1.5px solid rgba(46, 134, 171, 0.08);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.35s, box-shadow 0.35s, border-bottom 0.35s;
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 0.92); /* dark glassy blue */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid rgba(46, 134, 171, 0.12);
    transition: background 0.35s, box-shadow 0.35s, border-bottom 0.35s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--primary-color);
    font-size: 2rem;
    animation: pulse 3s infinite;
}

.logo-icon img {
  height: 70px;
  width: auto;
  display: block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(46, 134, 171, 0.08);
}

.nav-link:hover::before {
    width: 80%;
}

/* Old hamburger styles - disabled to prevent conflicts */
.hamburger-old {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: #fff !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: var(--shadow-medium) !important;
}

.btn-secondary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 59, 114, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block !important;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block !important;
}

/* Override gradient for section titles - make them black */
.section-title.text-gradient {
    display: inline-block !important;
    width: auto !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #000000 !important;
    animation: none !important;
}

/* Make hero title white */
.hero-title.text-gradient {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    animation: none !important;
    word-wrap: break-word !important;
    font-weight: 900 !important;
    position: relative !important;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 5.5rem;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1100px;
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 2rem;
        max-width: 700px;
    }
}
@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 95vw;
    }
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 270px;
    max-width: 350px;
    margin: 0 auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-image {
    margin: 1rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.service-image-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(46,134,171,0.10);
    z-index: 2;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.service-image-icon i {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.service-card:hover .service-image-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 16px rgba(46,134,171,0.18);
}
.service-card:hover .service-image-icon i {
    color: #fff;
}
@media (max-width: 600px) {
    .service-image-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    .service-image-icon i {
        font-size: 1rem;
    }
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 59, 114, 0.1));
    opacity: 0;
    transition: var(--transition);
}

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

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

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Link Styles */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card .service-link {
    position: relative;
    z-index: 1;
}

/* Destination Link Styles */
.destination-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.destination-link:hover {
    text-decoration: none;
    color: inherit;
}

.destination-card .destination-link {
    position: relative;
    z-index: 1;
}

/* Popular Tours Section */
.popular-tours-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.popular-tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.05) 0%, rgba(162, 59, 114, 0.03) 100%);
    z-index: 1;
}

.popular-tours-section .container {
    position: relative;
    z-index: 2;
}

.popular-tours-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.popular-tours-section .section-subtitle {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.popular-tours-section .section-title {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.popular-tours-section .section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.popular-tours-section .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.popular-tours-section .tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popular-tours-section .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-tours-section .tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.popular-tours-section .tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.popular-tours-section .tour-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popular-tours-section .tour-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.popular-tours-section .tour-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popular-tours-section .tour-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.popular-tours-section .tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.popular-tours-section .tour-highlights span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.popular-tours-section .tour-highlights i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.popular-tours-section .tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.popular-tours-section .tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.popular-tours-section .tour-duration i {
    color: var(--accent-color);
}

.popular-tours-section .tour-btn {
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.popular-tours-section .tour-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

/* Mobile Responsive for Popular Tours */
@media (max-width: 1024px) {
    .popular-tours-section .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .popular-tours-section {
        padding: 60px 0;
    }
    
    .popular-tours-section .tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .popular-tours-section .tour-content {
        padding: 20px;
    }
    
    .popular-tours-section .tour-title {
        font-size: 1.2rem;
    }
    
    .popular-tours-section .tour-description {
        font-size: 0.9rem;
    }
    
    .popular-tours-section .tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .popular-tours-section .tour-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .popular-tours-section {
        padding: 40px 0;
    }
    
    .popular-tours-section .section-title {
        font-size: 1.8rem;
    }
    
    .popular-tours-section .section-description {
        font-size: 1rem;
    }
    
    .popular-tours-section .tours-grid {
        padding: 0 10px;
    }
    
    .popular-tours-section .tour-content {
        padding: 15px;
    }
    
    .popular-tours-section .tour-highlights {
        flex-direction: column;
        gap: 10px;
    }
}

.service-hover {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: rotate(360deg);
}

/* Signature Experiences Section */
.signature-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.signature-scroll::-webkit-scrollbar {
    height: 8px;
}

.signature-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.signature-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.signature-card {
    min-width: 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.signature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.signature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 59, 114, 0.1));
    opacity: 0;
    transition: var(--transition);
}

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

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

.signature-content {
    padding: 2rem;
}

.signature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.signature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.signature-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signature-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 !important;
  background: rgba(255,255,255,0.13) !important; /* glassy */
  border-radius: 20px !important;
  overflow: hidden !important;
  min-height: 340px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: box-shadow 0.3s, background 0.3s, border 0.3s;
}

.destination-card:hover {
  box-shadow: 0 16px 48px 0 rgba(46,134,171,0.22) !important;
  background: rgba(255,255,255,0.22) !important;
  border: 1.5px solid rgba(46,134,171,0.22);
}

.destination-image {
  width: 100%;
  height: 200px;
  position: relative;
  display: block;
  overflow: hidden;
}

.destination-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  display: block;
  transition: transform 0.7s cubic-bezier(.23,1.02,.64,1), filter 0.4s;
  filter: brightness(0.96) saturate(1.15) blur(0px);
  will-change: transform, filter;
}

.destination-card:hover .destination-image img {
  transform: scale(1.07) rotate(-1deg);
  filter: brightness(1.05) saturate(1.25) blur(1.5px);
}

.destination-content {
  background: rgba(30, 41, 59, 0.68) !important; /* dark glass, more solid */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 20px 20px;
  padding: 22px 22px 16px 22px !important;
  position: absolute !important;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  color: #fff !important;
  text-align: left;
  box-shadow: none !important;
  display: block !important;
}

.destination-content h3,
.destination-content p {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.42), 0 1px 4px rgba(0,0,0,0.32);
}

.destination-rating i {
  color: #F18F01 !important;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 2px #fff8);
}

.destination-card.large {
    grid-column: span 2;
    height: 400px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.destination-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 59, 114, 0.1));
    opacity: 0;
    transition: var(--transition);
}

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

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

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35)); /* lighter, less opaque */
    color: white;
    backdrop-filter: none;
}
.destination-content h3 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.destination-content p {
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.destination-overlay {
    opacity: 0 !important;
}

.destination-rating {
    display: flex;
    gap: 0.2rem;
}

.destination-rating i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 60px;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
}

.about-image .image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 59, 114, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

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

.about-extra-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.about-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
}
.about-info-separator {
    color: #bfc9d1;
    font-size: 1.1rem;
    margin: 0 0.7rem;
}
.about-extra-info i {
    color: #F18F01;
    font-size: 1.1rem;
}
@media (max-width: 480px) {
    .about-extra-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.98rem;
    }
    .about-info-separator {
        display: none;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 60px;
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* WhatsApp Button - Handled by footer.css */

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(46, 134, 171, 0.12);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, box-shadow 0.3s;
    z-index: 999;
    padding: 0;
    outline: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    box-shadow: 0 20px 60px rgba(46, 134, 171, 0.2);
    background: #f0f7ff;
}
.scroll-progress {
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 56px;
    pointer-events: none;
}
.progress-bg {
    /* background circle */
}
.progress-bar {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.3s;
}
.arrow-up {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border-left: 3px solid #2E86AB;
    border-bottom: 3px solid #2E86AB;
    transform: rotate(45deg);
    margin-top: 6px;
    background: transparent;
}
@media (max-width: 480px) {
    .scroll-top-btn {
        width: 44px;
        height: 44px;
    }
    .scroll-progress {
        width: 44px;
        height: 44px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disabled old hamburger to prevent conflicts */
    .hamburger-old {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        transition: var(--transition);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger-old.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-old.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-old.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        color: #000000 !important;
    }
    
    .section-title .text-gradient {
        color: #000000 !important;
        background: none !important;
        animation: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card.large {
        grid-column: span 1;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        color: #000000 !important;
    }
    
    .section-title .text-gradient {
        color: #000000 !important;
        background: none !important;
        animation: none !important;
    }

    .service-card,
    .contact-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Service card mobile improvements */
    .service-image {
        margin: 0.5rem 0;
    }
    
    .service-image img {
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* WhatsApp button mobile styles - Handled by footer.css */

    .signature-card {
        min-width: 280px;
    }

    .scroll-top-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }
    .scroll-top-btn.visible {
        /* No translateY */
    }
    .scroll-top-btn:hover {
        transform: scale(1.08);
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(46, 134, 171, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Top Info Bar */
.top-info-bar {
    width: 100%;
    background: rgba(44, 62, 80, 0.85);
    color: #fff;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    padding: 0.3rem 0;
}
.top-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.top-info-left, .top-info-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.top-info-separator {
    color: #bfc9d1;
    font-size: 1.1rem;
    margin: 0 0.7rem;
}
.top-info-lang {
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.top-info-bar i {
    color: #F18F01;
    font-size: 1.1rem;
}
/* Language Dropdown Styles */
.lang-dropdown {
    display: none;
    position: absolute;
    top: 2.2rem;
    right: 0;
    background: #fff;
    color: #222;
    min-width: 170px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.13);
    border-radius: 6px;
    z-index: 1200;
    padding: 0.7rem 0.5rem 0.7rem 0.7rem;
    font-family: 'Inter', sans-serif;
}
.lang-dropdown.show {
    display: block;
}
.lang-dropdown-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #222;
}
.lang-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.lang-option {
    padding: 0.2rem 0.5rem;
    color: #1a3dab;
    font-size: 1.02rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    font-weight: 500;
}
.lang-option:hover, .lang-option:focus {
    background: #f0f7ff;
    color: #2E86AB;
}
.top-info-right {
    position: relative;
}
@media (max-width: 480px) {
    .lang-dropdown {
        top: 2.1rem;
        right: 0;
        min-width: 120px;
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .top-info-container {
        padding: 0 1rem;
        font-size: 0.95rem;
    }
    .top-info-left, .top-info-right {
        gap: 0.7rem;
    }
    .top-info-separator {
        margin: 0 0.4rem;
    }
}
@media (max-width: 480px) {
    .top-info-bar {
        font-size: 0.92rem;
    }
    .top-info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0 0.5rem;
    }
    .top-info-left, .top-info-right {
        gap: 0.5rem;
    }
}

/* Adjust navbar position to be below top info bar */
.navbar {
    top: 0;
}

/* Enhanced Scroll to Top Button Styles */
.scroll-top {
    position: fixed;
    bottom: 7.5rem; /* More space above WhatsApp button */
    right: 2.5rem;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(46, 134, 171, 0.18), 0 0 0 4px rgba(46,134,171,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
    border: 1.5px solid rgba(46,134,171,0.18);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, background 0.3s, opacity 0.3s, transform 0.18s;
    overflow: hidden;
}
.scroll-top:hover {
    box-shadow: 0 20px 60px rgba(46, 134, 171, 0.25), 0 0 0 8px rgba(46,134,171,0.10);
    background: linear-gradient(135deg, rgba(46,134,171,0.18), rgba(241,143,1,0.10));
    transform: scale(1.08) rotate(-2deg);
}
.scroll-top::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0.7;
}
.scroll-top .progress-circle {
    width: 52px;
    height: 52px;
    display: block;
    z-index: 1;
}
.scroll-top .progress-circle path {
    stroke: url(#scrollTopGradient);
    stroke-width: 5;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 8px rgba(46,134,171,0.10));
    transition: stroke-dashoffset 0.2s linear;
}
/* Add SVG gradient for the progress arc */
.scroll-top .progress-circle defs {
    z-index: 2;
}
/* WhatsApp button spacing - Handled by footer.css */
@media (max-width: 480px) {
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 6.5rem;
        right: 1rem;
    }
    .scroll-top .progress-circle {
        width: 32px;
        height: 32px;
    }
    /* WhatsApp button mobile styles - Handled by footer.css */
}

/* Optionally hide the old scroll-top-btn */
.scroll-top-btn { display: none !important; }

.scroll-top-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    animation: arrow-bounce 1.4s infinite cubic-bezier(0.4,0,0.2,1);
}
@keyframes arrow-bounce {
    0%, 100% { transform: none; }
    50% { transform: translateY(-10px); }
}
.scroll-top-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(46,134,171,0.10));
}
@media (max-width: 480px) {
    .scroll-top-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Consistent section padding */
.hero,
.services-section,
.signature-experiences,
.destinations-section,
.about-section,
.contact-section {
    padding: 6rem 0;
}
@media (max-width: 768px) {
    .hero,
    .services-section,
    .signature-experiences,
    .destinations-section,
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }
}

.service-image-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(46,134,171,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(46,134,171,0.18);
    z-index: 3;
    font-size: 1.6rem;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s, opacity 0.18s;
}
.service-image-arrow i {
    color: #fff;
    font-size: 1.6rem;
}
.service-card:hover .service-image-arrow {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 32px rgba(46,134,171,0.25);
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
}
@media (max-width: 600px) {
    .service-image-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .service-image-arrow i {
        font-size: 1.1rem;
    }
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(46,134,171,0.7);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}

.slide-nav.prev { left: 16px; }
.slide-nav.next { right: 16px; }

.slide-nav:hover {
  background: rgba(241,143,1,0.8);
}

/* Modal Overlay Enhancement */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 41, 59, 0.55);
  justify-content: center; align-items: center;
  transition: background 0.3s;
}

/* Modal Content Enhancement */
.modal-content {
  background: #fff;
  margin: 0;
  padding: 32px 32px 28px 32px; /* Reduced top and bottom padding */
  border-radius: 18px;
  max-width: 600px;
  width: 95%;
  box-shadow: 0 12px 48px rgba(46,134,171,0.18), 0 1.5px 8px rgba(30,41,59,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalPop 0.35s cubic-bezier(.23,1.02,.64,1) both;
}

@keyframes modalPop {
  0% { transform: scale(0.95) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 2rem;
  color: #2E86AB;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover { color: #F18F01; }

.booking-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18404a;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.01em;
}

.booking-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.booking-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.booking-form label {
  font-size: 1rem;
  font-weight: 500;
  color: #2E86AB;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.booking-form input,
.booking-form textarea {
  padding: 12px 14px;
  border: 1.5px solid #dbeafe;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  outline: none;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #2E86AB;
  box-shadow: 0 0 0 2px #2e86ab22;
}
.booking-form textarea {
  min-height: 90px;
  resize: vertical;
}
.booking-form button[type="submit"] {
  margin-top: 24px;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2E86AB 0%, #F18F01 100%); /* Book Now button color */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,134,171,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.booking-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #F18F01 0%, #2E86AB 100%);
  box-shadow: 0 4px 16px rgba(46,134,171,0.12);
}

@media (max-width: 700px) {
  .modal-content { padding: 18px 8px 12px 8px; }
  .booking-form .form-row { flex-direction: column; gap: 0; }
  .booking-form button[type="submit"] { width: 100%; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* left align on desktop */
  min-height: 480px;
  padding: 48px 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(30,41,59,0.18), 0 1.5px 8px rgba(30,41,59,0.10);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(30,41,59,0.10);
}

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

@media (max-width: 900px) {
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
  }
  .hero-title,
  .hero-subtitle {
    max-width: 95vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .btn {
    width: 90% !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 3000;
    background: rgba(30, 41, 59, 0.85); /* dark glassy */
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
    border-bottom: 1.5px solid rgba(46, 134, 171, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-container {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #fff;
  }
  /* Disabled old hamburger to prevent conflicts */
  .hamburger-old {
    display: block;
    cursor: pointer;
    z-index: 3100;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: rgba(30, 41, 59, 0.98);
    color: #fff;
    z-index: 3001;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    border-radius: 0 0 18px 18px;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-link {
    color: #fff !important;
    font-size: 1.2rem;
    margin: 12px 0;
    transition: color 0.2s;
  }
  .nav-link:hover {
    color: #F18F01 !important;
  }
  .hamburger-old .bar {
    background: #fff !important;
    height: 3px;
    width: 28px;
    margin: 5px 0;
    border-radius: 2px;
    display: block;
    transition: background 0.3s;
  }
}

.hero-title .text-gradient {
  background: none !important;
  color: #fff !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}

.about-section {
  border-radius: 0 !important;
}

.contact-section {
  border-radius: 0 !important;
}

.about-section .about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 40px;
}

.about-section .about-text {
  flex: 1 1 0;
  align-items: flex-start;
  text-align: left;
}

.about-section .about-image {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .about-section .about-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .about-section .about-text,
  .about-section .about-image {
    text-align: center;
    align-items: center;
  }
}

.about-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-facebook i {
  color: #1877f3 !important;
}
.footer-instagram i {
  color: #e4405f !important;
}
.footer-twitter i {
  color: #1da1f2 !important;
}
.footer-youtube i {
  color: #ff0000 !important;
}

.footer-section,
.footer-section h4,
.footer-section p,
.footer-section ul,
.footer-section ul li,
.footer-section ul li a,
.footer-logo,
.footer-bottom {
  text-align: center !important;
}

.social-links a {
  text-decoration: none !important;
}

.animate-hero {
  opacity: 1;
  transform: none;
  transition: none;
}
.animate-hero.visible {
  opacity: 1;
  transform: none;
}

.hero-image-container {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(.23,1.02,.64,1), transform 1.2s cubic-bezier(.23,1.02,.64,1);
}
.hero-image-container.visible {
  opacity: 1;
  transform: scale(1);
}

/* Desktop/tablet: two columns, text left, image right */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Mobile: stack, image on top */
@media (max-width: 768px) {
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  .hero-image-container {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    overflow: visible !important;
    background: #fff;
    text-align: center;
  }
  .hero-slideshow {
    position: relative;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    overflow: visible !important;
    background: #fff;
    text-align: center;
  }
  .hero-slideshow .slide {
    position: static !important;
    display: none;
    width: 100% !important;
    height: auto !important;
    max-width: 100vw;
    max-height: 60vw;
    object-fit: contain !important;
    border-radius: 16px !important;
    background: #fff;
    margin: 0 auto;
  }
  .hero-slideshow .slide.active {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%) !important;
  }
  .hero-image-container {
    width: 100% !important;
    height: 280px !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    overflow: hidden !important;
    background: transparent !important;
  }
  .hero-slideshow {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px;
    max-height: 280px;
    overflow: hidden;
    background: transparent !important;
  }
  .hero-slideshow .slide {
    position: absolute;
    left: 0; top: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    background: transparent !important;
  }
  .hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
  }
}

/* Floating background elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.floating-element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===================================================================
   MOBILE TOUCH TARGET OPTIMIZATION & ACCESSIBILITY
   Professional mobile UX improvements for all devices
   ================================================================= */

/* Touch-friendly interactions for all mobile devices */
@media (max-width: 768px) {
    /* Ensure all buttons meet minimum touch target size (44px Apple/Google guidelines) */
    .btn, 
    .nav-link,
    .filter-btn,
    .slide-nav,
    .close-modal,
    .zoom-btn,
    .indicator,
    .signature-btn {
        min-width: 44px !important;
        min-height: 44px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(46, 134, 171, 0.2) !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    /* Form elements optimization */
    input, 
    textarea, 
    select,
    button {
        min-height: 44px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        touch-action: manipulation !important;
        -webkit-appearance: none !important;
        border-radius: 8px !important;
    }
    
    /* Hero buttons specific sizing */
    .hero-buttons .btn {
        min-height: 50px !important;
        padding: 12px 24px !important;
        margin: 8px 0 !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Contact form improvements */
    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px !important;
        margin-bottom: 16px !important;
    }
    
    /* Navigation improvements */
    .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0 !important;
    }
    
    /* Slideshow controls */
    .slide-nav {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
    
    /* Modal improvements */
    .modal-content {
        max-width: calc(100vw - 32px) !important;
        margin: 16px !important;
    }
}

/* Additional touch improvements for very small screens */
@media (max-width: 480px) {
    .btn {
        min-height: 48px !important;
        font-size: 14px !important;
        padding: 12px 16px !important;
    }
    
    .hero-buttons .btn {
        min-height: 52px !important;
        font-size: 15px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Larger touch targets for critical actions */
    .signature-btn,
    .contact-form button {
        min-height: 50px !important;
        font-size: 16px !important;
    }
}

/* High contrast mode support for accessibility */
@media (prefers-contrast: high) {
    .btn,
    .nav-link,
    .service-card,
    .destination-card {
        border: 2px solid currentColor !important;
    }
    
    .text-gradient {
        background: none !important;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-slideshow .slide {
        transition: none !important;
    }
    
    .floating-element {
        animation: none !important;
    }
}

/* Focus management for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 3px solid var(--primary-color) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.3) !important;
}

/* Screen reader only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* WhatsApp Floating Button - Home Page Style, Vertical Menu, Bottom Right, Strong Shadow */
.whatsapp-simple {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.whatsapp-btn:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}
.whatsapp-menu {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: 100000;
  min-width: 200px;
  padding: 0.5rem 0;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
}
.whatsapp-menu.show {
  display: flex;
}
.whatsapp-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #25d366;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  transition: background 0.2s;
}
.whatsapp-menu a:last-child {
  border-bottom: none;
}
.whatsapp-menu a:hover {
  background: #f0f0f0;
}
@media (max-width: 600px) {
  .whatsapp-simple {
    bottom: 24px;
    right: 20px;
  }
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .whatsapp-menu {
    min-width: 140px;
    bottom: 90px;
  }
}

.whatsapp-simple {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.scroll-top, .scroll-top-btn {
  position: fixed;
  bottom: 104px;
  right: 24px;
  z-index: 99998;
}

@media (max-width: 600px) {
  .whatsapp-simple {
    bottom: 24px;
    right: 20px;
  }
  .scroll-top, .scroll-top-btn {
    bottom: 90px;
    right: 20px;
  }
}

/* White Text Elements for Day Tour Pages */
.hero-title,
.cta-title,
.booking-header h3,
.cta-content h2,
.cta-section h2,
.booking-card h3 {
    color: white !important;
}

/* Specific page elements that should be white */
.hero h1,
.hero h2,
.cta-section .cta-title,
.booking-section h3 {
    color: white !important;
}

/* Specific selectors for day tour pages */
.hero-text h1,
.welcome-text h2 {
    color: white !important;
}

/* Additional specific selectors for day tour pages */
.tour-hero .hero-text h1,
.welcome-section .welcome-text h2 {
    color: white !important;
}

/* Force white color for these specific elements */
.tour-hero .hero-content .hero-text h1,
.tour-main .welcome-section .welcome-card .welcome-text h2 {
    color: white !important;
}

/* Devota Tours - Modern Travel Website Theme */
/* Color Palette:
   Primary Background: Pure white (#ffffff)
   Secondary Background: Light cream (#fafaf9)
   Primary Accent: Ocean blue (#2E86AB)
   Secondary Accent: Warm orange (#F18F01)
   Tertiary Accent: Purple (#A23B72)
   Body Text: Dark charcoal (#2d3748)
   Header Text: Deep navy (#1a202c)
   Borders/Dividers: Light gray (#e2e8f0)
*/

:root {
    /* Core Colors - Updated to match home page theme */
    --primary-color: #2E86AB; /* Ocean blue */
    --secondary-color: #F18F01; /* Warm orange */
    --tertiary-color: #A23B72; /* Purple */
    --accent-color: #F18F01; /* Warm orange for accents */
    
    /* Background Colors */
    --bg-white: #ffffff; /* Pure white */
    --bg-light: #fafaf9; /* Light cream */
    --bg-secondary: #f7fafc; /* Light gray for secondary backgrounds */
    
    /* Text Colors */
    --text-primary: #2d3748; /* Dark charcoal */
    --text-secondary: #4a5568; /* Medium gray */
    --text-light: #718096; /* Light gray */
    --text-header: #1a202c; /* Deep navy */
    
    /* Border Colors */
    --border-color: #e2e8f0; /* Light gray */
    --border-light: #f1f5f9; /* Very light gray */
    
    /* Button Colors */
    --btn-primary-bg: #2E86AB; /* Ocean blue */
    --btn-primary-text: #ffffff; /* White */
    --btn-primary-hover: #1e6b8a; /* Darker blue */
    
    --btn-secondary-bg: #F18F01; /* Warm orange */
    --btn-secondary-text: #ffffff; /* White */
    --btn-secondary-hover: #e67e00; /* Darker orange */
    
    --btn-ghost-bg: transparent;
    --btn-ghost-border: #2E86AB; /* Ocean blue */
    --btn-ghost-text: #2E86AB; /* Ocean blue */
    --btn-ghost-hover-bg: #2E86AB; /* Ocean blue */
    --btn-ghost-hover-text: #ffffff; /* White */
    
    --btn-tertiary-bg: #f7fafc; /* Light gray */
    --btn-tertiary-text: #2d3748; /* Dark charcoal */
    --btn-tertiary-hover: #edf2f7; /* Medium gray */
    
    /* Status Colors */
    --success-color: #48bb78; /* Fresh green */
    --warning-color: #ed8936; /* Golden yellow */
    --danger-color: #e53e3e; /* Soft red */
    --disabled-color: #cbd5e0; /* Light gray */
    --disabled-text: #a0aec0; /* Muted text */
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(46, 134, 171, 0.18); /* Ocean blue with opacity */
    
    /* Shadows */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 2px 8px rgba(46, 134, 171, 0.2); /* Blue shadow */
    --shadow-secondary: 0 2px 8px rgba(241, 143, 1, 0.2); /* Orange shadow */
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Border Radius */
    --border-radius: 8px; /* Softer, more friendly */
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}