/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A174E;
    --accent-color: #F5D042;
    --primary-light: #1a2a6b;
    --primary-dark: #060d2e;
    --accent-light: #f7d95a;
    --accent-dark: #e6c42e;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 4px 20px rgba(10, 23, 78, 0.15);
    --shadow-hover: 0 8px 30px rgba(10, 23, 78, 0.25);
    --gradient-primary: linear-gradient(135deg, #0A174E 0%, #1a2a6b 100%);
    --gradient-accent: linear-gradient(135deg, #F5D042 0%, #f7d95a 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* Smooth entrance animations */
@keyframes slideUpReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes slideLeftReveal {
    from {
        opacity: 0;
        transform: translateX(-60px) rotateY(15deg);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
        filter: blur(0);
    }
}

@keyframes slideRightReveal {
    from {
        opacity: 0;
        transform: translateX(60px) rotateY(-15deg);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
        filter: blur(0);
    }
}

@keyframes bounceReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes popReveal {
    0% {
        opacity: 0;
        transform: scale(0.6);
        filter: brightness(1.5) blur(8px);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) blur(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(245, 208, 66, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 208, 66, 0.6);
    }
}

@keyframes floatReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* Reveal classes */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal.active {
    animation: slideUpReveal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-left {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-left.active {
    animation: slideLeftReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-right {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-right.active {
    animation: slideRightReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-bounce {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-bounce.active {
    animation: bounceReveal 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.reveal-pop {
    opacity: 0;
    will-change: transform, opacity, filter;
}

.reveal-pop.active {
    animation: popReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-float {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-float.active {
    animation: floatReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Glow effect for special elements */
.reveal-glow {
    opacity: 0;
}

.reveal-glow.active {
    animation: slideUpReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, glowPulse 2s ease-in-out forwards;
}

/* Add delay variants for staggered effect */
.reveal.delay-1 { --delay: 0.1s; }
.reveal.delay-2 { --delay: 0.2s; }
.reveal.delay-3 { --delay: 0.3s; }
.reveal.delay-4 { --delay: 0.4s; }
.reveal.delay-5 { --delay: 0.5s; }

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-bounce.active,
.reveal-pop.active,
.reveal-float.active,
.reveal-glow.active {
    animation-delay: var(--delay, 0s);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #ffff;
    padding: 0.5rem 0.5rem;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    transition: transform 0.3s ease;
    
}

.nav-logo a {
    text-decoration: none;
    color: var(--primary-color);
    display: inline-flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
}

.nav-logo a:visited {
    text-decoration: none;
    color: var(--primary-color);
}

.nav-logo a:hover,
.nav-logo a:active {
    text-decoration: none;
    color: var(--accent-color);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.logo-name {
    font-size: 50px;
    font-weight: bold;
    color: var(--primary-color);

}

.nav-logo a:hover .logo-name,
.nav-logo a:active .logo-name {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    font-size:medium;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: transform 0.25s ease, opacity 0.2s ease;
    z-index: -1;
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
}

.nav-link:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);

}

.btn-book {
    color: var(--#ffff) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px;

}

.btn-book:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.cart-bar {
    display: flex;
    align-items: center;
}

.cart-icon {
    color: var(--primary-color); 
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.0);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F5D042" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23F5D042" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23F5D042" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WELCOME SECTION ===== */
.welcome {
    background: var(--light-gray);
    position: relative;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.welcome-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.welcome-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align :center;
}

.welcome-text p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.welcome-text ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.welcome-text li {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
}

.services h1 {
    text-align: center;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 5rem;
}

.services-intro {
    margin-left: 1.25rem; /* ~20px */
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    padding: 0 20px;
    overflow-x: visible;
}

.service-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    height: 580px;
    box-sizing: border-box;
    margin: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 23, 78, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.description {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: block;
  text-align: center;
  margin: 3px auto;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 0.3rem;
}

.read-more:hover,
.read-more:focus {
  color: var(--accent-color);
}


.services-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
  padding: 0 20px;
  overflow-x: auto;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8rem;
  padding: 0 20px;
  overflow-x: visible;
}



.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-card h3 {
    color: var(--primary-color);
    text-align: center;
    padding: 1rem 1.5rem 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;

}

.service-card p {
    padding: 1rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    flex-grow: 1;
    overflow: hidden;
}

.services .service-card .duration {
    margin-left: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

.service-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}



/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    padding: 5rem 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-text p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    border: 1px solid rgba(10, 23, 78, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--medium-gray);
    font-size: 1rem;
}

.about-image {
    position:relative;
    width:100%;
    height:auto;

    margin-top: 0;
    padding-top: 0;
}

.about-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);

}

.about-placeholder img {
    width: 100%;
    height: auto;
    object-fit:contain;
    object-position:top;
    display:block;
    transition: transform 0.3s ease;

}

.feature:hover .about-placeholder img {
    transform: scale(1.05);
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonial-section {
  padding: 40px 20px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  align-content:space-between;
}




.testimonial {
  background-color: var(--accent-color);
  border-radius: 20px;
  padding: 20px;
  width: 25%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  flex-direction:column;
  order: 2;
}



.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-color: #F5D042;
}



.quote {
  font-style: italic;
  margin-bottom: 15px;
  color: #0A174E;

}

.client-info {
  margin-top: 20px;
  font-size: 0.9em;
  color: var(--primary-color);
}

.client-info strong {
    color: var(--primary-color);
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 8rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23F5D042" opacity="0.08"/><circle cx="75" cy="75" r="0.5" fill="%23F5D042" opacity="0.08"/><circle cx="50" cy="10" r="0.3" fill="%23F5D042" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}

.footer .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    padding: 0 2.5rem 3rem;
}

/* ===== FOOTER SECTIONS ===== */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    align-items: flex-start;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(20px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FOOTER LOGO SECTION ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.footer-logo a {
    display: flex;
    align-items: left;
    gap: 1rem;
    text-decoration: none;
    color: var(--accent-color);
}

.footer-logo a:visited,
.footer-logo a:hover,
.footer-logo a:active {
    text-decoration: none;
    color: var(--accent-color);
}

.footer-logo img {
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo span {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content:flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 208, 66, 0.3);
}

.social-links a i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

/* ===== CONTACT INFORMATION ===== */
.footer-section p i {
    color: var(--accent-color);
    margin-right: 0.7rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Ensure phone links match email color in footer (esp. on mobile auto-linking) */
.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover {
    color: var(--accent-color);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: var(--primary-dark);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(245, 208, 66, 0.2);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* ===== CONTACT FORM ===== */
form {
    max-width: 600px;
    margin: 8rem auto 3rem;
    background: rgb(13, 7, 136);
    background: linear-gradient(
    90deg,
    rgb(12, 12, 222) 50%,
  );
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0px 15px 60px var(--primary-light);
    border: 2px solid rgba(10, 23, 78, 0.1);
     
}


form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(10, 23, 78, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 208, 66, 0.1);
}

form button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

form button:hover {
    background: var(--gradient-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}



/* ===== BOOKING/CHECKOUT SECTION ===== */
.booking {
    background: var(--light-gray);
    padding: 8rem 2rem 5rem;
    min-height: 100vh;
}

.booking h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.booking h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ===== ENHANCED FORM STYLING ===== */
.form-group {
    margin-bottom: 2rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(10, 23, 78, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    color: var(--primary-light);
}

.payment-options label:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.payment-options input[type="radio"] {
    display: none;
}

.payment-options input[type="radio"]:checked + .payment-method {
    color: var(--primary-color);
}

.payment-options input[type="radio"]:checked + .payment-method i {
    color: var(--accent-color);
}

.payment-options label:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.payment-method i {
    font-size: 1.2rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

/* ===== SELECT DROPDOWN STYLING ===== */
select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(10, 23, 78, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--primary-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230A174E' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 3rem;
}

select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 208, 66, 0.1);
}

select:hover {
    border-color: var(--accent-color);
    background-color: var(--white);
}

/* ===== ENHANCED INPUT STYLING ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(10, 23, 78, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--primary-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 208, 66, 0.1);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="time"]:hover {
    border-color: var(--accent-color);
    background: var(--white);
}

/* ===== PLACEHOLDER STYLING ===== */
::placeholder {
    color: var(--medium-gray);
    opacity: 0.7;
}

/* ===== ENHANCED BUTTON STYLING ===== */
.booking form button[type="submit"] {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking form button[type="submit"]:hover {
    background: var(--gradient-accent);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content {
    flex: 1 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 2rem;
    min-height: 60vh;
    
}

.contact-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-section p {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-section p + a {
    margin-top: -1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-section a:hover {
    color: var(--accent-color);
}

/* Keep booking info links clean without underlines */
.booking-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.booking-info a:hover,
.booking-info a:focus {
    color: var(--accent-color);
    text-decoration: none;
}

.services-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.services-footer a:hover,
.services-footer a:focus {
    color: var(--accent-color);
}
.services-footer a:visited {
    text-decoration: none;
}



/* ===== SERVICE TYPE MEDIA GRID (Beach Massage) ===== */
.servicetype-image {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

.servicetype-image img,
.servicetype-image video {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

@media (min-width: 900px) {
	.servicetype-image {
		grid-template-columns: 1fr 1fr; /* two equal columns */
		grid-template-rows: auto auto; /* two rows to align top/bottom */
		align-items: start;
	}

	/* Make the video the large feature on the left */
	.servicetype-image video {
		grid-column: 1;
		grid-row: 1 / span 2; /* span both rows */
		width: 100%;
		height: auto;
		object-fit: contain;
		aspect-ratio: 9 / 16;
		max-height: 70vh; /* reduce video height on desktop */
	}

	/* Images: first at top-right, second at bottom-right */
	.servicetype-image img { grid-column: 2; }
	.servicetype-image img:nth-of-type(1) { grid-row: 1; align-self: start; }
	.servicetype-image img:nth-of-type(2) { grid-row: 2; align-self: end; }
}

/* ===== RESPONSIVE UTILITIES ===== */
img, video {
    max-width: 100%;
    height: auto;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 1200px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 900px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    p { font-size: 1rem; }
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
}

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 1200px) {
    .container { padding: 0 1.5rem; }
    .navbar .nav-menu { gap: 2rem; }
    .footer .container { grid-template-columns: repeat(3, 1fr); }
    .testimonial { width: 45%; }
    .services .service-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0 15px; }
    .service-card { flex: 0 0 calc(50% - 10px); min-width: 280px; max-width: none; height: 520px; }
}

@media (max-width: 900px) {
    section { padding: 4rem 1.25rem; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .navbar { flex-wrap: wrap; }
    .nav-menu { gap: 1.25rem; flex-wrap: wrap; justify-content: center; font-size: 1rem; }
    .about-content { grid-template-columns: 1fr; }
    .footer .container { grid-template-columns: repeat(2, 1fr); }
    .testimonial-section { gap: 24px; }
    .testimonial { width: 48%; }
    .services .service-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0 15px; }
    .service-card { flex: 0 0 calc(50% - 10px); min-width: 280px; max-width: none; height: 500px; }
}

@media (max-width: 700px) {
    .nav-menu { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
    .navbar { padding: 0.5rem 1rem; }
    .nav-menu { gap: 0.75rem; }
    .hero { min-height: 80vh; padding: 5rem 1rem 2rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { gap: 0.75rem; }
    .footer .container { grid-template-columns: 1fr; row-gap: 2rem; }
    .footer { margin-top: 4rem; }
    form { margin: 5rem 1rem 2rem; padding: 2rem; }
    .testimonial { width: 100%; }
    .services .service-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0 15px; }
    .service-card { flex: 0 0 100%; min-width: unset; max-width: 400px; height: auto; min-height: 480px; margin: 0 auto; }
    .services .service-grid { display: flex !important; flex-direction: column; align-items: center; gap: 20px; padding: 0 10px; }
    .service-card { flex: none; width: 100%; min-width: unset; max-width: 350px; margin: 0 auto; }

    /* Fix About image on mobile */
    .about { padding: 3.5rem 1rem; }
    .about-placeholder { height: 220px; }
    .about-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* Ensure service cards stretch nicely within responsive grids */
.services .service-card { max-width: 100%; }

/* ===== CART PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .cart-page {
        padding: 1rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cart-title {
        font-size: 1.8rem !important;
    }
    
    .cart-table {
        font-size: 0.9rem;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 0.75rem !important;
    }
    
    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .cart-summary {
        justify-content: center !important;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .summary-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 4rem !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .checkout-btn {
        padding: 1rem !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
}

/* ===== HAMBURGER NAV (MOBILE) ===== */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 7px;
    display: block;
    width: 24px;
    height: 1px;
    background: var(--primary-color);
    transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.25s ease;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }

@media (max-width: 900px) {
    .hamburger { display: flex; margin-left: auto; order: 2; }
    
    .cart-bar { 
        display: flex; 
        margin-right: 0.1rem;
        margin-left: auto;
        order: 1;
    }
    
    .cart-icon {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    #cart-count {
        background: var(--accent-color);
        color: var(--primary-color);
        border-radius: 50%;
        padding: 0.1rem 0.3rem;
        font-size: 0.7rem;
        font-weight: bold;
        margin-left: 0.2rem;
        min-width: 1.2rem;
        text-align: center;
        display: inline-block;
    }

    .nav-menu {
        position: relative;
        top: 100%;
        right: 1rem;
        background: var(--white);
        border: 1px solid rgba(10, 23, 78, 0.1);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 0.5rem;
        display: none;
        flex-direction: column;
        gap: 0.3rem;
        z-index: 1100;
    }

    .nav-menu .nav-link { padding: 0.75rem 1rem; display: block; }

    /* Show only Home, Services, Contact, About in mobile menu */
    .nav-menu .btn-book { display: none !important; }

    /* Dividers between mobile menu items */
    .nav-menu li + li { border-top: 1px solid rgba(10, 23, 78, 0.12); }
    .nav-menu li { margin: 0; }
    .nav-menu .nav-link { margin: 0; }

    body.nav-open .nav-menu { display: flex; }

    body.nav-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
    body.nav-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
 
.gallery {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 1rem;
    padding: 0 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--light-gray);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 3 / 2;
    }
}

/* ===== WATERFALL MASSAGE SERVICE STYLES ===== */
.servicetype-image img,
.servicetype-image video {
    max-width: 100%;
    height: auto;
}

/* ===== SERVICE PAGE BUTTONS (Add to Cart & Book Now) ===== */
.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: center;
}

.buttons p {
    width: 100%;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
    font-style: italic;
}

.add-to-cart,
.book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

/* Add to Cart - outlined style */
.add-to-cart {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.add-to-cart:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 23, 78, 0.3);
}

.add-to-cart:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(10, 23, 78, 0.2);
}

/* Book Now - filled accent style */
.book-now {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.book-now:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 208, 66, 0.4);
}

.book-now:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(245, 208, 66, 0.25);
}

/* Ripple shimmer effect on hover */
.add-to-cart::after,
.book-now::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transition: left 0.5s ease;
}

.add-to-cart:hover::after,
.book-now:hover::after {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .add-to-cart,
    .book-now {
        width: 100%;
        min-width: unset;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== SELECT DROPDOWN FOCUS STYLES ===== */
#servicesContainer select:focus {
    border-color: #FFD700 !important;
    outline: none;
    box-shadow: 0 0 5px #FFD700;
}

#same_service:focus {
    border-color: #FFD700 !important;
    outline: none;
    box-shadow: 0 0 5px #FFD700;
}
