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

/* Setmore Booking Styles */
.setmore-booking h3 {
    color: #2c5530;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.setmore-booking p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.setmore-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 10px;
    margin-top: 1rem;
}

.setmore-container a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.setmore-container a:hover {
    transform: scale(1.05);
}

.setmore-container img {
    max-width: 200px;
    height: auto;
}
/* Responsive Setmore styling */
@media (max-width: 768px) {
    .setmore-booking {
        padding: 1.5rem;
    }
    .setmore-container {
        padding: 1.5rem;
    }
    .setmore-container img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .setmore-booking h3 {
        font-size: 1.5rem;
    }
    .setmore-container img {
        max-width: 120px;
    }
}
html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff; /* Fallback white background */
    background-image: url('background.jpg'); /* Try to load custom background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;}
/* Responsive Setmore styling */


/* Add a semi-transparent overlay to improve readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85); /* Adjust this value: 0.85 = 85% opacity */
    z-index: -1;
    pointer-events: none;}
/* Responsive Setmore styling */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;}
/* Responsive Setmore styling */


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
/* Responsive Setmore styling */


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;}
/* Responsive Setmore styling */


.nav-logo h2 {
    color: #2c5530;
    font-weight: 700;
    font-size: 1.5rem;}
/* Responsive Setmore styling */


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;}
/* Responsive Setmore styling */


.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;}
/* Responsive Setmore styling */


.nav-link:hover,
.nav-link.active {
    color: #2c5530;}
/* Responsive Setmore styling */


.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5530;
    transition: width 0.3s ease;
}

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

/* Phone number in navigation */
.nav-phone-link {
    color: #2c5530 !important;
    font-weight: 600;
}

.nav-phone-link:hover {
    color: #4a7c59 !important;
}

.nav-phone-link::after {
    display: none; /* No underline animation for phone */
}

/* Book Now button in navigation */
.nav-menu .btn-primary {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.nav-menu .btn-primary:hover {
    background: linear-gradient(135deg, #4a7c59, #5d8f6a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.4);
}

/* Responsive Setmore styling */


.book-btn {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;}
/* Responsive Setmore styling */


.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);}
/* Responsive Setmore styling */


.book-btn::after {
    display: none;}
/* Responsive Setmore styling */


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;}
/* Responsive Setmore styling */


.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;}
/* Responsive Setmore styling */


/* Main Content */
#main-content {
    margin-top: 80px;}
/* Responsive Setmore styling */


.section {
    display: none;
    min-height: calc(100vh - 80px);
    padding: 4rem 0;}
/* Responsive Setmore styling */


.section.active {
    display: block;}
/* Responsive Setmore styling */


/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 80px);}
/* Responsive Setmore styling */


.hero-content {
    animation: slideInLeft 1s ease-out;}
/* Responsive Setmore styling */


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.2;}
/* Responsive Setmore styling */


.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


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

.hero-special-offer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;   /* ⬅️ add this */
    padding-bottom: 0;
    justify-content: center;
    overflow: visible;
  }

.btn-special {
    background: linear-gradient(135deg, #c92a2a, #e63946);
    color: white !important;
    border: 5px dashed black !important;  /* Force it to appear */
    border-radius: 6px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(201, 42, 42, 0.3);
    animation: gentle-pulse-red 3s ease-in-out infinite;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;

    /* 👇 add these for visibility */
    background-clip: padding-box; /* prevents gradient from covering the border */
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}



/* Scissor icons on both sides */

.btn-special:hover {
    background: linear-gradient(135deg, #e63946, #f15a5a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 42, 42, 0.5);
}

/* Responsive Setmore styling */

/* Animation of Scissors */
/* tuneables */
.btn-special {
    --gap: 10px;     /* distance outside the border */
    --speed: 1.6s;   /* animation speed */
    --sc: 1.5rem;    /* scissor size */
    position: relative;
  }
  
  /* make sure they can travel outside */
  .hero-special-offer { overflow: visible; }
  
  /* left scissor goes clockwise */
  @keyframes orbitL {
    0%   { top: 50%; left: calc(-1 * var(--gap));          transform: translate(-100%, -50%) rotate(-45deg); }
    25%  { top: calc(-1 * var(--gap)); left: 50%;          transform: translate(-50%, -100%) rotate(0deg); }
    50%  { top: 50%; left: calc(100% + var(--gap));        transform: translate(0, -50%) rotate(45deg); }
    75%  { top: calc(100% + var(--gap)); left: 50%;        transform: translate(-50%, 0) rotate(135deg); }
    100% { top: 50%; left: calc(-1 * var(--gap));          transform: translate(-100%, -50%) rotate(-45deg); }
  }
  

  
/* Tunables */
.btn-special {
    position: relative;
    --gap: 12px;    /* distance outside the dashed border */
    --speed: 1.8s;  /* orbit speed */
    --sx: 4.12;     /* oval width scale  (1 = circle) */
    --sy: 0.92;     /* oval height scale (1 = circle) */
  }
  
  /* The rotating layer (no animation by default) */
  .scissor-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform-origin: 50% 50%;
    animation: none;
  }
  
  /* The scissor sits at the top-center of the orbit */
  .scissor {
    position: absolute;
    left: 50%;
    top: calc(0px - var(--gap));
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    line-height: 1;
    color: black;
  }
  
  /* Start the orbit when hovered; re-triggers each time you re-hover */
  .btn-special:hover .scissor-orbit {
    animation: orbit var(--speed) linear 1;
  }
  
  /* Keep the scissor upright while the ring spins (optional) */
  .btn-special:hover .scissor { rotate: -1turn; }
  
  /* Lock scale + rotation together to get an ellipse path */
  @keyframes orbit {
    from { transform: scaleX(var(--sx)) scaleY(var(--sy)) rotate(0deg); }
    to   { transform: scaleX(var(--sx)) scaleY(var(--sy)) rotate(360deg); }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .btn-special:hover .scissor-orbit { animation: none; }
  }
  
  
  .btn-special {
    position: relative;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: uppercase;
  }
  
  /* Main bold headline */
  .btn-special .main-text {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  /* Thin note below */
  .btn-special .sub-text {
    display: block;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.85;
    margin-bottom: 0.2rem;
  }
  
  /* Thin "Click to Book Now" line */
  .btn-special .click-text {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 0.95;
  }
  
  /* Keep the scissors above all */
  .scissor-orbit {
    z-index: 2;
  }
  


/* End Animation of Scissors on Hover */



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;}
/* Responsive Setmore styling */


.hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);}
/* Responsive Setmore styling */


.hero-icon {
    max-width: 372px;
    max-height: 372px;
    width: auto;
    height: auto;
    object-fit: contain;}
/* Responsive Setmore styling */


/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;}
/* Responsive Setmore styling */


.btn-primary {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;}
/* Responsive Setmore styling */


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);}
/* Responsive Setmore styling */


.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;}
/* Responsive Setmore styling */


.btn-secondary:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);}
/* Responsive Setmore styling */


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;}
/* Responsive Setmore styling */


.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;}
/* Responsive Setmore styling */


.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;}
/* Responsive Setmore styling */


/* Our Story Section */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;}
/* Responsive Setmore styling */


.story-text h3 {
    color: #2c5530;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.story-text h4 {
    color: #2c5530;
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;}
/* Responsive Setmore styling */


.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;}
/* Responsive Setmore styling */


.story-features {
    list-style: none;
    margin-top: 1.5rem;}
/* Responsive Setmore styling */


.story-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;}
/* Responsive Setmore styling */


.story-features i {
    color: #2c5530;
    margin-right: 0.75rem;
    font-size: 0.875rem;}
/* Responsive Setmore styling */


.story-image {
    display: flex;
    justify-content: center;}
/* Responsive Setmore styling */


.story-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #2c5530;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);}
/* Responsive Setmore styling */


.story-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;}
/* Responsive Setmore styling */


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;}
/* Responsive Setmore styling */


.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 85, 48, 0.1);
    opacity: 0;
    transform: translateY(30px);}
/* Responsive Setmore styling */


.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);}
/* Responsive Setmore styling */


.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);}
/* Responsive Setmore styling */


.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2c5530;}
/* Responsive Setmore styling */


.service-card h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;}
/* Responsive Setmore styling */


.service-duration {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;}
/* Responsive Setmore styling */


/* More Section */
.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;}
/* Responsive Setmore styling */


.more-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.more-card h3 {
    color: #2c5530;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;}
/* Responsive Setmore styling */


.more-card h3 i {
    margin-right: 0.75rem;
    font-size: 1.125rem;}
/* Responsive Setmore styling */


.hours-info p,
.location-info p {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;}
/* Responsive Setmore styling */


.hours-info p i,
.location-info p i {
    margin-right: 0.5rem;
    color: #2c5530;
    width: 16px;}
/* Responsive Setmore styling */


.safety-list {
    list-style: none;}
/* Responsive Setmore styling */


.safety-list li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;}
/* Responsive Setmore styling */


.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;}
/* Responsive Setmore styling */


.offers {
    display: flex;
    flex-direction: column;
    gap: 1rem;}
/* Responsive Setmore styling */


.offer-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 10px;
    text-align: center;}
/* Responsive Setmore styling */


.offer-item h4 {
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.offer-item p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.offer-item p:last-child {
    margin-bottom: 0;
}

.offer-disclaimer {
    font-size: 0.75rem !important;
    color: #999 !important;
    font-style: italic;
    margin-top: 0.75rem !important;
}

/* Pulse animation for featured offer */
@keyframes gentle-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(44, 85, 48, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
        transform: scale(1);
    }
}

/* Red pulse animation for special button */
@keyframes gentle-pulse-red {
    0% {
        box-shadow: 0 4px 12px rgba(201, 42, 42, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(201, 42, 42, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 12px rgba(201, 42, 42, 0.3);
        transform: scale(1);
    }
}

/* Offer link wrapper */
.offer-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.offer-link:hover {
    transform: translateY(-4px);
}

/* Featured offer - Grand Opening Special */
.offer-featured {
    background: linear-gradient(135deg, #2c5530, #4a7c59) !important;
    color: white;
    border: 2px solid #1a3a1f;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-link:hover .offer-featured {
    box-shadow: 0 8px 24px rgba(44, 85, 48, 0.5);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .offer-featured {
        animation: none;
    }
    
    .btn-special {
        animation: none;
    }
}

.offer-featured h4 {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem !important;
}

.offer-countdown {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 300;
    margin-bottom: 1rem !important;
    font-style: italic;
}

.offer-featured .offer-deal {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
}

.offer-featured .offer-deal strong {
    font-size: 1.2rem;
    color: #a8e6cf;
}

.offer-featured .offer-price {
    color: #e8f5e8 !important;
    font-size: 1rem !important;
}

.offer-featured .offer-price strong {
    color: #a8e6cf;
    font-size: 1.3rem;
    font-weight: 700;
}

.offer-featured .offer-disclaimer {
    color: rgba(255, 255, 255, 0.7) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
}

.offer-featured .offer-cta {
    color: #a8e6cf !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive Setmore styling */


.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;}
/* Responsive Setmore styling */


.faq-item h4 {
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.faq-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;}
/* Responsive Setmore styling */


/* Booking Section */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;}
/* Responsive Setmore styling */


.booking-info h3 {
    color: #2c5530;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.booking-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;}
/* Responsive Setmore styling */


.feature {
    display: flex;
    align-items: center;
    color: #666;}
/* Responsive Setmore styling */


.feature i {
    color: #2c5530;
    margin-right: 1rem;
    font-size: 1.125rem;
    width: 20px;}
/* Responsive Setmore styling */


.calendly-widget {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.calendly-placeholder {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px dashed rgba(44, 85, 48, 0.3);}
/* Responsive Setmore styling */


.calendly-placeholder i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;}
/* Responsive Setmore styling */


.calendly-placeholder h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.calendly-placeholder p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.setup-note {
    margin-top: 1rem !important;
    color: #888 !important;
    font-style: italic;}
/* Responsive Setmore styling */


.calendly-popup-widget {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.calendly-popup-widget i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;}
/* Responsive Setmore styling */


.calendly-popup-widget h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.calendly-popup-widget p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.calendly-popup-widget button {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;}
/* Responsive Setmore styling */


.calendly-popup-widget button i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    margin-bottom: 0;}
/* Responsive Setmore styling */


.booking-note {
    margin-top: 1rem !important;
    color: #888 !important;
    font-style: italic;}
/* Responsive Setmore styling */


.calendly-fallback {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.calendly-fallback i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;}
/* Responsive Setmore styling */


.calendly-fallback h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.calendly-fallback p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.calendly-fallback .btn {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;}
/* Responsive Setmore styling */


.calendly-fallback .btn i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    margin-bottom: 0;}
/* Responsive Setmore styling */


/* Masseuse Selection Styles */
.masseuse-selection {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(44, 85, 48, 0.1);}
/* Responsive Setmore styling */


.masseuse-selection h3 {
    color: #2c5530;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.masseuse-selection p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.masseuse-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;}
/* Responsive Setmore styling */


.masseuse-btn {
    background: white;
    border: 2px solid rgba(44, 85, 48, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
/* Responsive Setmore styling */


.masseuse-btn:hover {
    border-color: #2c5530;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.2);}
/* Responsive Setmore styling */


.masseuse-info i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;}
/* Responsive Setmore styling */


.masseuse-info h4 {
    color: #2c5530;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.masseuse-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;}
/* Responsive Setmore styling */


/* Calendly Widget Styles */
.calendly-header {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    gap: 1rem;}
/* Responsive Setmore styling */


.back-btn {
    background: transparent;
    border: 1px solid #2c5530;
    color: #2c5530;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    margin: 0 auto;}
/* Responsive Setmore styling */


.back-btn:hover {
    background: #2c5530;
    color: white;
    text-decoration: none;}
/* Responsive Setmore styling */


.calendly-header h3 {
    color: #2c5530;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
    text-align: center;}
/* Responsive Setmore styling */


.calendly-inline-widget {
    width: 100%;
    height: 630px;
    border: none;
    border-radius: 15px;}
/* Responsive Setmore styling */


/* Custom styling for Calendly widget */
.calendly-widget .calendly-inline-widget {
    border-radius: 15px;}
/* Responsive Setmore styling */


/* Ensure Calendly widget is responsive */

.setmore-booking h3 {
    color: #2c5530;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.setmore-booking p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.setmore-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-radius: 10px;
    margin-top: 1rem;
}

.setmore-container a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.setmore-container a:hover {
    transform: scale(1.05);
}

.setmore-container img {
    max-width: 200px;
    height: auto;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5530, #1a3a1f);
    color: white;
    padding: 3rem 0 1rem;}
/* Responsive Setmore styling */


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


.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;}
/* Responsive Setmore styling */


.footer-section h3 {
    font-size: 1.5rem;}
/* Responsive Setmore styling */


.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;}
/* Responsive Setmore styling */


.footer-section ul {
    list-style: none;}
/* Responsive Setmore styling */


.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;}
/* Responsive Setmore styling */


.footer-section a:hover {
    color: white;}

/* Prevent email from wrapping */
.footer-section .email-no-wrap {
    white-space: nowrap;
}

/* Make phone number stand out */
.footer-section .footer-phone a {
    color: rgb(65, 171, 149);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-phone a:hover {
    color: rgb(82, 211, 184);
}

.footer-section .footer-phone strong {
    font-weight: 700;
    font-size: 1.1em;
}

/* Location text under phone number */
.footer-section .footer-location {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    display: block;
    margin-top: 4px;
}

/* Responsive phone number sizing */
@media (max-width: 768px) {
    .footer-section .footer-phone strong {
        font-size: 1em;
    }
    
    .footer-section .footer-location {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .footer-section .footer-phone strong {
        font-size: 0.95em;
    }
    
    .footer-section .footer-location {
        font-size: 0.75em;
    }
}

/* Responsive Setmore styling */


.social-links {
    display: flex;
    gap: 1rem;}
/* Responsive Setmore styling */


.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;}
/* Responsive Setmore styling */


.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);}
/* Responsive Setmore styling */


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);}
/* Responsive Setmore styling */


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================================
   RESPONSIVE DESIGN - MOBILE & TABLET OPTIMIZATION
   =========================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    /* Background Tablet Fix */
    body {
        background-attachment: scroll; /* Better performance on tablets */
        background-size: cover;
        background-position: center;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-placeholder {
        width: 350px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Our Story Section Tablet */
    .story-content {
        gap: 3rem;
    }
    
    .story-placeholder {
        width: 280px;
        height: 280px;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Background Mobile Fix */
    body {
        background-attachment: scroll; /* Fix for mobile devices */
        background-size: cover;
        background-position: center top; /* Better positioning for mobile */
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    /* Phone in mobile menu */
    .nav-phone {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .nav-phone-link {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Book button in mobile menu */
    .nav-menu .btn-primary {
        margin-top: 1rem;
        width: 80%;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section Mobile */
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: calc(100vh - 80px);
        padding: 2rem 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-placeholder {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    /* Special offer button mobile */
    .hero-special-offer {
        padding: 0 10px; /* Less padding on mobile */
    }
    
    .btn-special {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
        max-width: 100%;
        letter-spacing: 0.3px;
    }
    
    /* Hide scissors on mobile for cleaner look */
    .btn-special::before,
    .btn-special::after {
        display: none;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Our Story Section Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-text {
        text-align: left;
    }
    
    .story-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* More Section Mobile */
    .more-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .more-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Typography Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Setmore Mobile */
    .setmore-booking {
        padding: 1.5rem;
    }
    .setmore-container {
        padding: 1.5rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Background Small Mobile Fix */
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 1.5rem 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-placeholder {
        width: 240px;
        height: 240px;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Special offer button small mobile */
    .btn-special {
        font-size: 0.8rem;
        padding: 0.85rem 1.25rem;
        letter-spacing: 0.2px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .more-card {
        padding: 1.25rem;
    }
    
    /* Our Story Section Small Mobile */
    .story-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .story-text h4 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .setmore-booking h3 {
        font-size: 1.5rem;
    }
    .setmore-container img {
        max-width: 120px;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}