* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #c97a2a;
    --accent-color: #d4af37;
    --light-bg: #f8f6f1;
    --text-color: #2c3e50;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-2: linear-gradient(135deg, #16213e 0%, #0f172a 100%);
    --purple-accent: #667eea;
    --pink-accent: #f093fb;
    --coral-accent: #f5576c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #f8f6f1 0%, #f0ebe3 100%);
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--accent-color);
    width: 100%;
    margin-bottom: 30px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;

}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.logo h1:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav {
    flex: 1;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #f5a623);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #667eea 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInDown 0.8s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    background: var(--secondary-color);
    color: #000000 !important;
    padding: 15px 42px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 8px 25px rgba(201, 122, 42, 0.2);
    animation: slideInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 122, 42, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), #d99a42);
}

/* FEATURED DESTINATIONS */
.featured-destinations {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f6f1 0%, #f0ebe3 100%);
    position: relative;
}

.featured-destinations::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.featured-destinations::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.08), transparent);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.featured-destinations h2,
.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.featured-destinations h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    border: 3px solid transparent;
    background-image:
        linear-gradient(var(--white), var(--white)),
        linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.destinations-grid .destination-card:nth-child(1) {
    animation-delay: 0.1s;
}

.destinations-grid .destination-card:nth-child(2) {
    animation-delay: 0.2s;
}

.destinations-grid .destination-card:nth-child(3) {
    animation-delay: 0.3s;
}

.destinations-grid .destination-card:nth-child(4) {
    animation-delay: 0.4s;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 122, 42, 0.15), rgba(212, 175, 55, 0.15));
    opacity: 0;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(201, 122, 42, 0.2);
}

.destination-card:hover::before {
    opacity: 0.15;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.card-content p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

.card-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #000000 !important;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 122, 42, 0.25);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.card-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.card-btn:hover::after {
    width: 250px;
    height: 250px;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 122, 42, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), #d99a42);
}

/* FEATURES SECTION */
.features {
    background: linear-gradient(180deg, #f8f6f1 0%, #f0ebe3 100%);
    padding: 80px 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--secondary-color), #d99a42) 1;
}

.features-grid .feature:nth-child(1) {
    animation-delay: 0.1s;
}

.features-grid .feature:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid .feature:nth-child(3) {
    animation-delay: 0.3s;
}

.features-grid .feature:nth-child(4) {
    animation-delay: 0.4s;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.feature:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #2c2c54);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* DESTINATION PAGES */
.destination-page {
    padding: 60px 0;
}

.destination-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

.destination-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.destination-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-hero {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(78, 205, 196, 0.05));
    padding: 2rem;
    border-left: 5px solid var(--gradient-1);
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight {
    background: linear-gradient(135deg, rgba(201, 122, 42, 0.15), rgba(212, 175, 55, 0.15));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #000000 !important;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(201, 122, 42, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.highlights .highlight:nth-child(1) {
    animation-delay: 0.1s;
}

.highlights .highlight:nth-child(2) {
    animation-delay: 0.2s;
}

.highlights .highlight:nth-child(3) {
    animation-delay: 0.3s;
}

.highlights .highlight:nth-child(4) {
    animation-delay: 0.4s;
}

.highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.highlight h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* CONTACT PAGE */
.contact-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(78, 205, 196, 0.08));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-info .info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info .info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info .info-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info .info-item:nth-child(4) {
    animation-delay: 0.4s;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.info-item .icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: #000000 !important;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(201, 122, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 122, 42, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), #d99a42);
}

/* ============================================
   MOBILE RESPONSIVE - CRITICAL FIXES
   ============================================ */

/* MOBILE FIRST: 480px and below */
@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    /* HEADER FIXES */
    .header {
        padding: 0.5rem 0;
        border-bottom: 2px solid var(--accent-color);
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .header .container {
        display: block !important;
        padding: 0 10px;
        width: 100%;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 0.6rem;
    }

    .logo h1 {
        font-size: 1.1rem;
        margin: 0;
    }

    .nav {
        width: 100%;
    }

    .nav ul {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
        background: rgba(0, 0, 0, 0.1);
        padding: 0.4rem;
        border-radius: 6px;
        margin: 0 !important;
        list-style: none;
    }

    .nav li {
        margin: 0;
        padding: 0;
    }

    .nav a {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem !important;
        background: rgba(212, 175, 55, 0.15) !important;
        border-radius: 12px;
        border: none;
        display: inline-block;
        white-space: nowrap;
        color: var(--white);
    }

    .nav a::after {
        display: none !important;
    }

    .nav a:hover,
    .nav a.active {
        background: var(--accent-color) !important;
        color: #000 !important;
    }

    /* HERO OVERRIDE */
    section[style*="margin: 0 -1rem"] {
        margin: 0 !important;
        padding: 2rem 1rem !important;
        border-radius: 0 !important;
    }

    section[style*="margin: 0 -1rem"] h1 {
        font-size: 1.2rem !important;
        margin: 0 0 0.5rem 0 !important;
    }

    section[style*="margin: 0 -1rem"] p {
        font-size: 0.85rem !important;
    }

    /* GENERAL OVERRIDES */
    [style*="font-size: 3.5rem"] {
        font-size: 1.2rem !important;
    }

    [style*="font-size: 1.3rem"] {
        font-size: 0.9rem !important;
    }

    [style*="font-size: 1.1rem"] {
        font-size: 0.85rem !important;
    }

    [style*="font-size: 2.5rem"] {
        font-size: 1.2rem !important;
    }

    /* SECTIONS */
    .section-title {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem 0;
    }

    .featured-destinations h2,
    .features h2 {
        font-size: 1.2rem;
    }

    .destination-header h1 {
        font-size: 1.2rem;
    }

    .destination-hero {
        height: 180px;
    }

    /* GRIDS */
    .destinations-grid,
    .features-grid,
    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    [style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    /* CARDS & ITEMS */
    .card-content {
        padding: 0.8rem;
    }

    .card-content h3 {
        font-size: 0.95rem;
    }

    .card-content p {
        font-size: 0.75rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-item .icon {
        font-size: 1.6rem;
    }

    .info-item h3 {
        font-size: 0.9rem;
    }

    .info-item p {
        font-size: 0.75rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 0.9rem;
    }

    .feature p {
        font-size: 0.75rem;
    }

    .highlight {
        padding: 0.8rem;
    }

    /* FORMS */
    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 8px;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.7rem;
    }

    /* BUTTONS */
    .cta-btn,
    .card-btn,
    .submit-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* TABLET: 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .header .container {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 15px;
        align-items: center;
    }

    .header {
        padding: 0.8rem 0;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav {
        width: 100%;
    }

    .nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
        background: rgba(0, 0, 0, 0.15);
        padding: 0.6rem;
        border-radius: 8px;
        margin: 0;
    }

    .nav a {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
        background: rgba(212, 175, 55, 0.12);
        border-radius: 18px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        display: inline-block;
    }

    .nav a::after {
        display: none !important;
    }

    .nav a:hover,
    .nav a.active {
        background: var(--accent-color);
        color: #000;
        border-color: var(--accent-color);
    }

    .hero {
        padding: 3rem 1rem !important;
    }

    .hero-content h2 {
        font-size: 1.6rem !important;
    }

    .featured-destinations h2,
    .features h2 {
        font-size: 1.6rem;
    }

    .destination-header h1 {
        font-size: 1.6rem;
    }

    .destination-hero {
        height: 280px;
    }

    .destinations-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

/* LARGE DEVICES: 769px and up */
@media (min-width: 769px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav {
        flex: 1;
    }

    .nav ul {
        justify-content: flex-end;
    }

    .nav a::after {
        display: block;
    }
}

/* Additional animations for live wallpaper effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hover glow effect for cards */
.destination-card:hover {
    animation: glow 2s ease-in-out infinite;
}

.feature:hover {
    animation: glow 2s ease-in-out infinite;
}