/*
 Theme Name:   Omelhorjogo
 Description:  Theme Omelhorjogo - Perfect Fun
 Version:      1.0.0
 Text Domain:  omelhorjogo
*/

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* DESIGN SYSTEM */
:root {
    /* Color Palette - Based on Perfect Fun branding */
    --primary: #FF3E6C;
    --primary-light: #FF7E9D;
    --primary-dark: #D81E4D;
    --secondary: #4ECDC4;
    --secondary-light: #7EEAE3;
    --secondary-dark: #2BA69E;
    --accent: #FFD166;
    --dark: #292F36;
    --light: #F7F9FC;
    --white: #FFFFFF;
    
    /* Grayscale */
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Baloo 2', cursive;
    
    /* Elevation */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px base for easier rem calculation */
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 5.6rem; }
h2 { font-size: 4.2rem; }
h3 { font-size: 3.2rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 2rem; }
h6 { font-size: 1.8rem; }

p {
    margin-bottom: 1.6rem;
}

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.section {
    padding: 10rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0.4rem;
    left: -1rem;
    right: -1rem;
    height: 1.2rem;
    background-color: var(--accent);
    z-index: -1;
    transform: skew(-3deg);
}

.section-title p {
    font-size: 2rem;
    color: var(--gray-600);
    max-width: 64rem;
    margin: 1.6rem auto 0;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 2rem 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--primary);
    z-index: 1001;
}

.logo-emoji {
    font-size: 3.2rem;
    line-height: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 4rem;
    height: 3.2rem;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.nav-link {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--gray-800);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 0;
    height: 0.3rem;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 3.2rem;
}

/* COMPONENTS */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: all 0.5s ease;
}

.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.6rem 4rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 2.4rem;
    font-size: 1.4rem;
}

.btn-block {
    width: 100%;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 5.6rem;
    margin-bottom: 1.6rem;
    color: var(--white);
}

.page-description {
    font-size: 2rem;
    max-width: 76.8rem;
    margin: 0 auto;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #FF5E8D 0%, #FF3E6C 100%);
    color: var(--white);
    display: flex;
    align-items: center;
}

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

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 30rem;
    height: 30rem;
    top: -10rem;
    left: -10rem;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 20rem;
    height: 20rem;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 15rem;
    height: 15rem;
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

.hero-shape-4 {
    width: 25rem;
    height: 25rem;
    bottom: -10rem;
    right: -10rem;
    animation-delay: 3s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 60rem;
}

.hero-title {
    font-size: clamp(3.6rem, 5vw, 6.4rem);
    line-height: 1.1;
    margin-bottom: 2.4rem;
    color: var(--white);
}

.hero-title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(to right, #FFFFFF, #FFD166);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hero-title-sub {
    display: block;
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    margin-bottom: 3.2rem;
    max-width: 55rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
}

.hero-features {
    display: flex;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.8rem 1.6rem;
    border-radius: 10rem;
}

.hero-feature-icon {
    color: var(--accent);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 2.4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-decoration {
    position: absolute;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1.2rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 6s infinite ease-in-out;
}

.hero-image-decoration-1 {
    top: -2rem;
    left: -3rem;
    font-size: 1.8rem;
    transform: rotate(-5deg);
    animation-delay: 1s;
}

.hero-image-decoration-2 {
    bottom: -2rem;
    right: -2rem;
    font-size: 3.6rem;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    transform: rotate(10deg);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

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

.hero-visual-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-visual-shape-1 {
    width: 30rem;
    height: 30rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    filter: blur(60px);
}

.hero-visual-shape-2 {
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    bottom: -5rem;
    left: -5rem;
    opacity: 0.15;
    filter: blur(40px);
}

/* Indicador de scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-icon {
    width: 2.4rem;
    height: 3.6rem;
    border: 2px solid var(--white);
    border-radius: 1.2rem;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.6rem;
    height: 0.6rem;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    80% {
        opacity: 0;
        transform: translate(-50%, 1.6rem);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
}

/* Content Sections */
.content-section {
    padding: 8rem 0;
}

/* FEATURES SECTION */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
}

.feature-card {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: var(--white);
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 2.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    transition: var(--transition);
}

.feature-text {
    transition: var(--transition);
}

/* ATTRACTIONS SECTION */
.attractions {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.attractions::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 50% 0 0 50%;
    opacity: 0.1;
    z-index: 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
}

.attraction-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    transition: var(--transition);
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.attraction-image {
    height: 25rem;
    position: relative;
    overflow: hidden;
}

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

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

.attraction-content {
    padding: 3.2rem;
}

.attraction-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--primary);
}

.attraction-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.attraction-title a:hover {
    color: var(--primary-dark);
}

.attraction-text {
    margin-bottom: 2.4rem;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.attraction-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    font-weight: 600;
}

.attraction-feature-icon {
    font-size: 1.2rem;
}

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

.attraction-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* PACKAGES SECTION */
.packages {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.packages::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30rem;
    height: 30rem;
    background-color: var(--secondary-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.packages-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.package-tab {
    padding: 1.2rem 2.4rem;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.package-tab:hover,
.package-tab.active {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.package-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.package-card.featured::before {
    content: "Mais Popular";
    position: absolute;
    top: 2rem;
    right: -4rem;
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.8rem 5rem;
    font-weight: 700;
    font-size: 1.4rem;
    transform: rotate(45deg);
    z-index: 2;
}

.package-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.package-header {
    padding: 3.2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.package-name {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.package-price {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 1.6rem;
    font-family: var(--font-display);
}

.package-price small {
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.package-description {
    font-size: 1.8rem;
    opacity: 0.9;
}

.package-content {
    padding: 3.2rem;
}

.package-features {
    margin-bottom: 3.2rem;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
}

.package-feature-icon {
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-dark);
    font-weight: 700;
    flex-shrink: 0;
}

.package-cta {
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: 2.4rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gray-800);
}

.form-control {
    width: 100%;
    padding: 1.6rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 15rem;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.6rem center;
    background-size: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

/* GALLERY SECTION */
.gallery {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 25rem);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.4rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-caption {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    transform: translateY(2rem);
    transition: var(--transition);
    margin: 0;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-more {
    text-align: center;
    margin-top: 4rem;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 30rem;
    height: 30rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.testimonials-container {
    max-width: 96rem;
    margin: 0 auto;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 4rem;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: 4.8rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 12rem;
    font-family: serif;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 3.2rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.testimonial-avatar {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
}

.testimonial-info p {
    font-size: 1.6rem;
    color: var(--gray-600);
    margin-bottom: 0.8rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    color: var(--accent);
    font-size: 1.8rem;
}

.testimonial-rating .star {
    transition: var(--transition);
}

.testimonial-rating .star.filled {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.3);
}

.testimonial-rating .star:not(.filled) {
    color: var(--gray-300);
}

/* Testimonials Slider Styles */
.testimonials-slider {
    position: relative;
    max-width: 96rem;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-prev,
.testimonials-next {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    font-size: 2.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-dots .dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active,
.testimonials-dots .dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonials-more {
    text-align: center;
    margin-top: 4rem;
}

/* CTA SECTION */
.cta {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1472162072942-cd5147eb3902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    margin-bottom: 2.4rem;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
}

.cta-text {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 1.6rem;
    max-width: 60rem;
    margin: 0 auto;
    align-items: stretch;
}

.cta-input {
    flex: 1;
    padding: 1.6rem 2.4rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    transition: var(--transition);
}

.cta-input::placeholder {
    color: var(--gray-500);
    opacity: 1;
}

.cta-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-form .btn {
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: 8rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2.4rem;
}

.footer-about p {
    margin-bottom: 2.4rem;
}

.footer-social {
    display: flex;
    gap: 1.6rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition);
}

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

.footer-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2.4rem;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.8rem;
}

.footer-contact li {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

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

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

.footer-bottom p {
    margin-bottom: 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .hero-content {
        max-width: 70%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .section {
        padding: 8rem 0;
    }
    
    .hero {
        min-height: 70rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 3.2rem;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 12rem 3.2rem 3.2rem;
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
        flex-direction: column;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2.4rem;
    }
    
    .nav-link {
        font-size: 2.4rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 3.2rem;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hero {
        padding-top: 12rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-decoration-1 {
        top: -1.5rem;
        left: 0;
    }
    
    .hero-image-decoration-2 {
        bottom: -1.5rem;
        right: 0;
    }
    
    .hero-title {
        font-size: 5.6rem;
    }
    
    .features-grid,
    .attractions-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 3.2rem;
    }
    
    .testimonial-text {
        font-size: 1.8rem;
    }
    
    .package-tab {
        min-width: 20rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 3.6rem;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-input {
        margin-bottom: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 20rem);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* CTA Response Messages and Enhanced Functionality */
.cta-response {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.cta-response.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-response.success {
    background: rgba(76, 205, 196, 0.1);
    color: #4ECDC4;
    border: 1px solid rgba(76, 205, 196, 0.3);
}

.cta-response.error {
    background: rgba(255, 62, 108, 0.1);
    color: #FF3E6C;
    border: 1px solid rgba(255, 62, 108, 0.3);
}

.cta-response.warning {
    background: rgba(255, 209, 102, 0.1);
    color: #FFD166;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

/* Loading State */
.cta-submit.loading {
    position: relative;
    color: transparent;
}

.loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Input Validation */
.cta-form input.invalid {
    border-color: #FF3E6C;
    box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.1);
}

.cta-form input.invalid:focus {
    border-color: #FF3E6C;
    box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.2);
}

/* CTA Animation on Scroll */
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cta-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Success State */
.cta-form.success {
    opacity: 0.7;
    pointer-events: none;
}

.cta-form.success .cta-submit {
    background: #4ECDC4;
    border-color: #4ECDC4;
}

/* Responsive enhancements for CTA messages */
@media (max-width: 768px) {
    .cta-response {
        margin-top: 0.75rem;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 5.6rem;
    margin-bottom: 1.6rem;
    color: var(--white);
    font-family: var(--font-display);
}

.page-description {
    font-size: 2rem;
    max-width: 76.8rem;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    z-index: 1;
    margin-top: -8rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow-lg);
    padding: 0;
    overflow: hidden;
}

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

/* Contact Form */
.contact-form-container {
    padding: 6.4rem;
    background-color: var(--white);
}

.contact-form-title {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
    color: var(--primary);
    font-family: var(--font-display);
}

.contact-form-subtitle {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: var(--gray-600);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gray-800);
}

.form-control {
    width: 100%;
    padding: 1.6rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 15rem;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.6rem center;
    background-size: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

/* Contact Info */
.contact-info-container {
    padding: 6.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1472162072942-cd5147eb3902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

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

.contact-info-title {
    font-size: 3.6rem;
    margin-bottom: 3.2rem;
    color: var(--white);
    font-family: var(--font-display);
}

.contact-info-list {
    margin-bottom: 4.8rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.contact-info-icon {
    font-size: 2.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-text {
    font-size: 1.8rem;
}

.contact-info-text strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.contact-info-text a {
    color: inherit;
    text-decoration: underline;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1.6rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

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

/* Map Section */
.map-section {
    height: 50rem;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.4rem;
    overflow: hidden;
}

.faq-question {
    padding: 2.4rem;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark);
    background-color: var(--white);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question::after {
    content: "+";
    font-size: 2.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2.4rem 2.4rem;
    font-size: 1.8rem;
    color: var(--gray-700);
}

/* Contact Form Success/Error Messages */
.contact-message {
    padding: 1.6rem 2.4rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.contact-message.success {
    background-color: rgba(76, 205, 196, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(76, 205, 196, 0.3);
}

.contact-message.error {
    background-color: rgba(255, 62, 108, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 62, 108, 0.3);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 4.2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 4.8rem 3.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 3.6rem;
    }
    
    .page-description {
        font-size: 1.8rem;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 3rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 3.2rem 2.4rem;
    }
}


/* FEATURES SECTION */
.features {
    background-color: var(--white);
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.feature-card {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: var(--white);
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 2.4rem;
    color: var(--primary);
    transition: var(--transition);
    display: block;
}

.feature-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    transition: var(--transition);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
}

.feature-text {
    transition: var(--transition);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Features Additional */
.features-additional {
    margin-top: 4rem;
}

/* Features CTA */
.features-cta {
    text-align: center;
    margin-top: 6rem;
}

/* Features Animation */
.feature-card {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Features Responsive */
@media (max-width: 768px) {
    .features {
        padding: 6rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .feature-card {
        padding: 3rem 2rem;
    }
    
    .feature-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .feature-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-text {
        font-size: 1.4rem;
    }
    
    .features-cta {
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 3.5rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-text {
        font-size: 1.3rem;
    }
}


/* FORCE BALOO 2 FONT FOR ALL TITLES */
.section-title h1,
.section-title h2,
.section-title h3,
.feature-title,
.package-name,
.gallery h2,
.testimonials h2,
.hero-title,
.hero-title-main,
.hero-title-sub,
.attraction-title,
.cta h2,
h1, h2, h3, h4, h5, h6 {
    font-family: "Baloo 2", cursive !important;
    font-weight: 700;
}

/* Specific font weight variations for Baloo 2 */
.section-title h1,
.section-title h2 {
    font-weight: 800;
}

.feature-title,
.package-name {
    font-weight: 700;
}

.hero-title-main {
    font-weight: 800;
}

.hero-title-sub {
    font-weight: 600;
}

/** 404 Page **/

.error-404-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-404-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.error-404-header .page-title {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.error-404-header .page-description {
    font-size: 1.5rem;
    margin-top: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.error-404-section {
    padding: 80px 0;
    background-color: var(--light);
}

.error-404-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.error-icon {
    color: var(--primary);
    margin-bottom: 30px;
}

.error-message {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-display);
}

.error-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-quick-links,
.error-recent-posts {
    margin-top: 50px;
}

.error-quick-links h3,
.error-recent-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-display);
}

.quick-links-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-links-grid .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.quick-links-grid .btn svg {
    width: 20px;
    height: 20px;
}

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

.quick-links-grid .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-links-grid .btn-secondary {
    background: var(--secondary);
    color: white;
}

.quick-links-grid .btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-links-grid .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.quick-links-grid .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.recent-post-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
}

.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recent-post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-card:hover .recent-post-thumbnail img {
    transform: scale(1.1);
}

.recent-post-content {
    padding: 20px;
}

.recent-post-title {
    font-size: 1.125rem;
    margin: 0 0 10px 0;
    font-family: var(--font-display);
}

.recent-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .error-404-header .page-title {
        font-size: 5rem;
    }

    .error-404-header .page-description {
        font-size: 1.25rem;
    }

    .error-message {
        font-size: 1.5rem;
    }

    .error-description {
        font-size: 1rem;
    }

    .quick-links-grid {
        flex-direction: column;
    }

    .quick-links-grid .btn {
        width: 100%;
        justify-content: center;
    }

    .recent-posts-grid {
        grid-template-columns: 1fr;
    }
}