/* ==========================================
   TINYTOES NEWBORN CLICK - BRAND STYLING
   ========================================== */

/* 1. Imports and Custom Properties */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-primary: #af4f42;
    --color-primary-light: #c26154;
    --color-primary-dark: #85372d;
    
    --color-bg-base: #f5ebe6;
    --color-bg-alt: #eddcd2;
    --color-bg-card: #ffffff;
    --color-bg-overlay: rgba(54, 34, 28, 0.45);
    
    --color-accent-hsl: 36, 60%, 50%;
    --color-accent: hsl(var(--color-accent-hsl));
    
    --color-text-dark: #36221c;
    --color-text-light: #fffaf7;
    --color-text-gray: #6b5c57;
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-cursive: 'Caveat', cursive;
    
    /* Spacings & Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 30px rgba(166, 75, 56, 0.12);
    --shadow-strong: 0 20px 40px rgba(54, 34, 28, 0.25);
    
    --header-height: 80px;
}

/* 2. Global Resets & Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg-alt);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-base);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 3. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(175, 79, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(54, 34, 28, 0.2);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    transition: var(--transition-smooth);
}

/* 4. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(166, 75, 56, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 75, 56, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 75, 56, 0.2);
}

/* 5. Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    text-align: center;
    padding: 0 24px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--color-bg-overlay), var(--color-bg-overlay)), 
                      url('media/home hero.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 60px;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.hero-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(54, 34, 28, 0.45));
    transition: var(--transition-smooth);
}

.hero-logo-img:hover {
    transform: scale(1.02);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(54, 34, 28, 0.3);
    text-align: justify;
    text-align-last: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-actions .btn {
    min-width: 150px;
}


/* 6. Section Utilities */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-white::after { background-color: #ffffff !important; }

/* 7. Gallery Section */
.gallery-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-bg-base);
    overflow: hidden;
}

.gallery-section .section-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(125, 51, 36, 0.65), rgba(125, 51, 36, 0.78)),
                      url('media/gallery.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

.gallery-section .section-title {
    color: #ffffff;
    left: 0;
    transform: none;
    margin-bottom: 50px;
    font-size: 2.3rem;
    font-weight: 500;
}

.gallery-section .section-title::after {
    display: none;
}

.gallery-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.gallery-card {
    background: transparent;
    border: none;
    overflow: visible;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.gallery-img-wrapper {
    width: 100%;
    height: 323px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

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

.gallery-card:hover .gallery-img-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-label,
.gallery-card.active .gallery-label {
    color: #ffffff;
    font-weight: 700;
}

.gallery-card.active .gallery-img-wrapper {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 3px var(--color-accent);
}

/* Gallery Photo Grid */
.gallery-grid-container {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.gallery-grid-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.gallery-grid-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    background-color: rgba(0, 0, 0, 0.15);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.gallery-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(54, 34, 28, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-grid-overlay i {
    color: #ffffff;
    font-size: 1.3rem;
    background-color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay i {
    transform: scale(1);
}

.gallery-card:hover .gallery-label {
    color: #ffffff;
    transform: scale(1.05);
}

/* 8. Packages Section */
.packages-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.packages-section .section-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(54, 34, 28, 0.8), rgba(54, 34, 28, 0.85)),
                      url('media/package.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    z-index: 1;
}

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 30px;
}

.package-card {
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    background-color: var(--color-primary-light);
}

/* Featured / Silver Package Card */
.package-card.featured {
    background-color: var(--color-primary-dark);
    border: 2px solid var(--color-accent);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    background-color: #4f251d;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-val {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-actual {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-top: 4px;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 0.9rem;
    width: 20px;
}

.text-accent {
    color: var(--color-accent) !important;
}

/* Book Now Button inside card */
.btn-booking {
    background-color: #ffffff;
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 0;
    border-radius: var(--radius-full);
    width: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-booking:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 153, 51, 0.4);
}

/* 9. Contact Section */
.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .section-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(54, 34, 28, 0.45), rgba(54, 34, 28, 0.5)), 
                      url('media/contact.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-pill {
    background-color: var(--color-primary);
    border-radius: 36px;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    color: #ffffff;
}

.contact-pill i {
    font-size: 1.6rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.contact-pill:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(166, 75, 56, 0.3);
    color: #ffffff;
}

/* 10. Footer Section */
.footer {
    background-color: #af4f42;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0;
    text-align: center;
    border-top: 4px solid var(--color-accent);
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

.footer-slogan {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* 11. Lightbox styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 22, 18, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 2.5rem;
    padding: 20px;
    transition: var(--transition-smooth);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-accent);
}

.lightbox-content {
    max-width: 85vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lightbox-caption {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lightbox-counter {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

.lightbox-main-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 65vh;
}

.lightbox-main-img-container img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-strong);
    border: 4px solid #ffffff;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    max-width: 80vw;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: 3px;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(204, 153, 51, 0.6);
    transform: scale(1.08);
}

/* 12. Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 22, 18, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal-content {
    background-color: var(--color-bg-base);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(166, 75, 56, 0.1);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--color-text-gray);
    font-size: 2rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.booking-modal-close:hover {
    color: var(--color-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(166, 75, 56, 0.2);
    background-color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(166, 75, 56, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    margin-top: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    font-weight: 700;
}

.btn-submit:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-submit i {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* ==========================================
   13. Responsive Styles & Breakpoints
   ========================================== */

@media (max-width: 1024px) {
    .gallery-slider {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .gallery-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
    }
    .gallery-img-wrapper {
        height: 272px;
        border-radius: 28px;
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .package-card.featured {
        transform: none;
    }
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-toggle {
        display: block;
        color: #ffffff;
    }
    
    .nav-menu {
        position: fixed;
        top: calc(var(--header-height) + 10px);
        right: 16px;
        left: auto;
        width: 52vw;
        max-width: 220px;
        height: auto;
        background-color: #af4f42;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        z-index: 999;
        border-radius: 18px;
        padding: 12px 0;
        box-shadow: 0 8px 32px rgba(54, 34, 28, 0.28);
        transform: translateY(-12px) scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.25s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu .nav-link {
        width: 100%;
        padding: 12px 24px;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.95rem;
        border-radius: 0;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.12);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .hero-logo-img {
        height: 110px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 30px auto 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 90px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-pill {
        padding: 14px 28px;
        border-radius: 28px;
        gap: 15px;
    }
    .contact-pill i {
        font-size: 1.3rem;
        width: 26px;
        height: 26px;
    }
    .contact-text {
        font-size: 0.95rem;
    }
    
    .booking-modal-content {
        padding: 30px 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.2rem;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-grid-title {
        font-size: 1.3rem;
    }
    
    .lightbox-thumb {
        width: 48px;
        height: 48px;
    }
}
