/* Custom Properties / Tokens */
:root {
    --primary-bg: #FFFFFF;
    --secondary-color: #0F3D2E;
    --secondary-light: #165c45;
    --accent-color: #C9A96E;
    --accent-hover: #b5955a;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --bg-mint: #f0f7f4;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(15, 61, 46, 0.08);
    
    --border-radius-lg: 20px;
    --border-radius-md: 14px;
    --border-radius-sm: 8px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    border: none;
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: 2px solid var(--accent-color);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 61, 46, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

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

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

.nav-cta {
    padding: 10px 24px;
    font-size: 1rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.chevron {
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--primary-bg);
    min-width: 240px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-md);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1010;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.95rem;
    color: var(--text-main);
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background-color: var(--bg-mint);
    color: var(--secondary-color);
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

/* Page Headers (for subpages) */
.page-header {
    position: relative;
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.95) 0%, rgba(15, 61, 46, 0.85) 100%), 
                url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--primary-bg);
}

.page-header h1 {
    color: var(--primary-bg);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section (Home) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.85) 0%, rgba(15, 61, 46, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 {
    color: var(--primary-bg);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Section Common Styling */
.section-tag {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

/* About Section & Pages */
.about {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 60px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
    text-align: left;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 480px;
    background: #eef3f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credentials-box {
    background-color: var(--bg-mint);
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    margin-top: 30px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.credentials-box h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

/* Timeline System (Credentials / Bio) */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 60px auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(15, 61, 46, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--primary-bg);
    border: 4px solid var(--accent-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.timeline-item:hover::after {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
}

.right::after {
    left: -8px;
}

.timeline-content {
    padding: 24px 30px;
    background: var(--bg-light);
    position: relative;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: inline-block;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Services */
.services {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-bg);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.01);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.2rem;
    margin: 0 auto 25px auto;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-mint);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Service Detail Layouts */
.service-details {
    padding: 100px 0;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.detail-row:nth-child(even) {
    direction: rtl;
}

.detail-row:nth-child(even) .detail-content {
    direction: ltr;
}

.detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.detail-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.detail-features {
    margin: 20px 0;
}

.detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.detail-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
    background: #eef3f0;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--primary-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-card {
    background-color: var(--bg-mint);
    border: 1px solid rgba(15, 61, 46, 0.08);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.pricing-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pricing-list strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
}

.pricing-list span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-list .price {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

/* Policies */
.policies {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.policies h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.policy-item {
    background-color: var(--primary-bg);
    padding: 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.policy-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.policy-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* FAQ Accordion System */
.faq-section {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.02);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 30px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 30px;
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.accordion-item.active {
    background-color: var(--primary-bg);
    box-shadow: var(--shadow-soft);
    border-color: rgba(15, 61, 46, 0.08);
}

.accordion-item.active .accordion-content {
    padding-bottom: 25px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Testimonials Carousel (Home) */
.testimonials {
    padding: 120px 0;
    background-color: var(--bg-mint);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    display: none;
    padding: 0 40px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.testimonial-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 61, 46, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

/* Interactive Booking Form Styling */
.booking-container {
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background: var(--primary-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.booking-form-wrapper {
    padding: 50px;
}

.booking-info-sidebar {
    background-color: var(--secondary-color);
    color: var(--primary-bg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-info-sidebar h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.booking-info-list {
    margin: 30px 0;
}

.booking-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.booking-info-list li strong {
    color: var(--primary-bg);
    display: block;
}

.booking-info-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(15, 61, 46, 0.15);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230F3D2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    appearance: none;
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    padding: 120px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--primary-bg);
    font-size: 2.8rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--primary-bg);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer h3, .footer h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 25px;
    display: block;
    object-fit: contain;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--primary-bg);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    .booking-info-sidebar {
        order: -1;
        padding: 40px;
    }
    .booking-form-wrapper {
        padding: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        height: 350px;
    }
    .detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .detail-row:nth-child(even) {
        direction: ltr;
    }
    .detail-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-cta {
        order: 3;
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        padding: 35px 0;
        gap: 25px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-toggle:checked ~ .nav-links {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .about, .services, .pricing, .policies, .cta {
        padding: 80px 0;
    }
    
    .services-grid, .pricing-grid, .policies-grid {
        gap: 24px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Dropdown styles */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 5px 0 0 0;
        display: none;
        text-align: center;
        min-width: unset;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        position: static;
        transform: none;
    }

    .dropdown-menu a {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 0;
        background: transparent;
        color: var(--accent-color);
    }
}

/* Floating Leaves Animation */
.leaf-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.leaf {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("leaf.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    animation: leaf-fall 22s infinite linear;
}

.leaf:nth-child(1) { left: 10%; width: 28px; height: 28px; animation-delay: 0s; animation-duration: 26s; }
.leaf:nth-child(2) { left: 28%; width: 18px; height: 18px; animation-delay: -6s; animation-duration: 19s; }
.leaf:nth-child(3) { left: 50%; width: 22px; height: 22px; animation-delay: -3s; animation-duration: 24s; }
.leaf:nth-child(4) { left: 72%; width: 16px; height: 16px; animation-delay: -9s; animation-duration: 21s; }
.leaf:nth-child(5) { left: 88%; width: 32px; height: 32px; animation-delay: -4s; animation-duration: 30s; }

@keyframes leaf-fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(110vh) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 2px 8px 25px rgba(37, 211, 102, 0.35);
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}
