/*==============================
   HEADER STYLES (from index.css)
==============================*/
header {
  background-color: #fffdf5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #002c1b;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a:not(.nav-cta) {
  text-decoration: none;
  color: #002c1b;
  font-weight: bold;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  transition: color 0.3s;
}

.main-nav a:not(.nav-cta):hover {
  color: #007f5f;
}

.nav-cta {
  background: #116B21;
  border: 2px solid #116B21;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: Arial, sans-serif;
}

.nav-cta:hover {
  background: #0C4D17;
  color: white;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-toggle:hover {
    background-color: rgba(0, 44, 27, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #002c1b;
    margin-bottom: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    border-radius: 2px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

body.mobile-nav-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/*==============================
  FOOTER STYLES (from index.css)
==============================*/
.footer-redesigned {
    background: linear-gradient(135deg, #f8f6e8 0%, #f0f0e8 100%);
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-section {
    width: 100%;
}

.footer-section h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    margin-top: 0;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.company-logo img {
    height: 35px;
    width: auto;
    margin-right: 10px;
}

.company-logo h3 {
    margin: 0;
    color: #116B21;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
}

.company-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.btn-book-now {
    background: #2c5530;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.btn-book-now:hover {
    background: #1e3a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.hours-list {
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.hour-item span:last-child {
    color: #666;
}

.contact-header {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.contact-details {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2c3e50;
}

.contact-item a {
    color: #116B21;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0C4D17;
    text-decoration: underline;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    opacity: 0.8;
}

.follow-us p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    font-family: Arial, sans-serif;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #116B21;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #0C4D17;
    transform: translateY(-2px);
}

.reviews-section {
    background: rgba(17, 107, 33, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(17, 107, 33, 0.1);
    width: 100%;
}

.reviews-section p {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.review-btn {
    background: #116B21;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
}

.review-btn:hover {
    background: #0C4D17;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 107, 33, 0.3);
}

.review-btn i {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
    font-family: Arial, sans-serif;
}

.footer-bottom a {
    color: #116B21;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/*==============================
  BACK TO TOP BUTTON (from index.css)
==============================*/
#back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  background-color: #16a34a;
  color: white;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
  transition: all 0.3s ease;
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  font-family: Arial, sans-serif;
}

#back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#back-top:hover {
  background-color: #15803d;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

#back-top:active {
  transform: translateY(0) scale(0.95);
  transition: transform 0.1s ease;
}

/* Hide back to top when mobile nav is open */
body.mobile-nav-open #back-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/*==============================
  MOBILE RESPONSIVE - HEADER/FOOTER ONLY
==============================*/
@media (max-width: 950px) {
    .header-container {
        padding: 10px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 253, 245, 0.98);
        backdrop-filter: blur(15px);
        z-index: 400;
        
        transform: translateX(100%);
        transition: transform 0.3s ease;
        
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        padding: 2rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .main-nav.nav-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .main-nav a {
        font-size: 1.5rem !important;
        font-weight: bold !important;
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        min-width: 200px !important;
        display: block !important;
        color: #002c1b !important;
        text-decoration: none !important;
        font-family: Arial, sans-serif !important;
    }

    .main-nav a:not(.nav-cta):hover {
        background-color: rgba(17, 107, 33, 0.1) !important;
        transform: translateY(-2px) !important;
        color: #007f5f !important;
    }

    .main-nav .nav-cta {
        background: #116B21 !important;
        color: white !important;
        border: 2px solid #116B21 !important;
        font-size: 1.25rem !important;
        padding: 1rem 2rem !important;
        margin-top: 1rem !important;
        border-radius: 20px !important;
    }

    .main-nav .nav-cta:hover {
        background: #0C4D17 !important;
        transform: translateY(-2px) scale(1.05) !important;
        color: white !important;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .company-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .reviews-section {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 430px) {
    .header-container {
        padding: 8px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        height: 35px;
    }

    .footer-container {
        padding: 0 15px;
    }
    
    .footer-redesigned {
        padding: 40px 0 20px;
    }
    
    .reviews-section {
        width: 100%;
        max-width: none;
        padding: 15px 10px;
    }
    
    .review-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}


/*==============================
  PRIVACY POLICY PAGE STYLES
==============================*/

/* Main container */
.privacy-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f6e8 0%, #fff 50%, #f0f8f0 100%);
    padding: 40px 20px 80px;
    position: relative;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Header section */
.privacy-header {
    background: linear-gradient(135deg, #116B21 0%, #0C4D17 100%);
    color: white;
    padding: 60px 40px 50px;
    text-align: center;
    position: relative;
}

.privacy-header::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="leaf" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M20 5c8 0 15 7 15 15s-7 15-15 15-15-7-15-15 7-15 15-15z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.privacy-header h1 {
    font-size: 3.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 1.1rem;
    margin: 0 0 25px 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Content sections */
.privacy-content {
    padding: 50px 40px;
}

.privacy-section {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-number {
    background: linear-gradient(135deg, #116B21 0%, #0C4D17 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(17, 107, 33, 0.2);
    margin-top: 5px;
}

.section-content {
    flex: 1;
}

.section-content h2 {
    color: #002c1b;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.section-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 15px 0;
    text-decoration-color: #116B21;
}

.section-content a {
    color: #0C4D17;
    text-decoration-color: #15803d;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-list {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.privacy-list li {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

/* Contact highlight */
.contact-highlight {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #116B21;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-highlight i {
    color: #116B21;
    font-size: 1.2rem;
}

.contact-highlight strong {
    color: #002c1b;
}

/* Bottom contact section */
.privacy-contact {
    background: linear-gradient(135deg, #f8f6e8 0%, #f0f8f0 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.privacy-contact h3 {
    color: #002c1b;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.privacy-contact > p {
    color: #555;
    font-size: 1.1rem;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-method i {
    color: #116B21;
    font-size: 1.1rem;
}

.contact-method a {
    color: #002c1b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.contact-method a:hover {
    color: #116B21;
}

.privacy-contact .cta-button {
    background: #116B21;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.privacy-contact .cta-button:hover {
    background: #0C4D17;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 107, 33, 0.3);
}

/*==============================
  RESPONSIVE STYLES
==============================*/
@media (max-width: 768px) {
    .privacy-main {
        padding: 20px 15px 60px;
    }

    .privacy-container {
        border-radius: 15px;
        margin: 0 auto;
    }

    .privacy-header {
        padding: 40px 25px 35px;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 35px 25px;
    }

    .privacy-section {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        align-self: flex-start;
    }

    .section-content h2 {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .section-content p,
    .privacy-list li {
        font-size: 1rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .privacy-contact {
        padding: 30px 25px;
    }

    .privacy-contact h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-header {
        padding: 30px 20px 25px;
    }

    .privacy-content {
        padding: 25px 20px;
    }

    .intro-text,
    .last-updated {
        font-size: 1rem;
    }

    .section-content h2 {
        font-size: 1.3rem;
    }

    .privacy-contact {
        padding: 25px 20px;
    }
}

/*==============================
  ANIMATION STYLES
==============================*/
.privacy-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-header {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.privacy-contact {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}