:root {
    --green-primary: #1e6091;
    --green-light: #76c7f2;
    --green-pale: #d0ebff;
    --beige: #e9fdf4;
    --brown-dark: #184e77;
    --text-dark: #2d3436;
    --white: #ffffff;
    
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--beige);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--green-primary) !important;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-link {
    color: var(--text-dark) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--green-primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 96, 145, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 96, 145, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero h1 span {
    color: var(--brown-dark);
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-natural {
    background: var(--green-primary);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(30, 96, 145, 0.2);
}

.btn-natural:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 96, 145, 0.3);
}

/* Services Section */
.services-natural {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '❦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green-light);
    font-size: 1.5rem;
}

.section-header h2::before {
    left: -40px;
}

.section-header h2::after {
    right: -40px;
}

.service-natural {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid var(--green-pale);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-natural::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 228, 199, 0.3), transparent);
    transition: left 0.5s;
}

.service-natural:hover::before {
    left: 100%;
}

.service-natural:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 96, 145, 0.15);
    border-color: var(--green-light);
}

.service-icon-natural {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--green-primary);
    transition: transform 0.3s;
}

.service-natural:hover .service-icon-natural {
    transform: rotate(360deg);
}

.service-natural h3 {
    color: var(--green-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Insurance Section */
.insurance-natural {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 100%);
}

.plan-natural {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.plan-natural.featured {
    border-color: var(--green-primary);
    transform: scale(1.05);
}

.plan-natural:hover {
    box-shadow: 0 20px 40px rgba(30, 96, 145, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--green-primary);
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-dark);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--green-pale);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--green-light);
    margin-right: 10px;
}

/* Features Section */
.features-natural {
    padding: 80px 0;
    background: var(--white);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--green-pale);
    transform: translateX(10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    font-size: 35px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--green-primary);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-natural {
    padding: 80px 0;
    background: var(--green-pale);
}

.testimonial-natural {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-natural::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--green-light);
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--green-primary);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green-pale);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 96, 145, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-overlay.active {
    display: flex;
}

.popup-natural {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: popupBounce 0.5s ease;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header-natural {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green-pale);
}

.popup-header-natural h2 {
    color: var(--green-primary);
    margin: 0;
}

.close-popup-natural {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green-pale);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--green-primary);
    transition: all 0.3s;
}

.close-popup-natural:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: rotate(90deg);
}

.form-group-natural {
    margin-bottom: 20px;
}

.form-group-natural label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-primary);
    font-weight: 600;
}

.form-control-natural {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--green-pale);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control-natural:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(183, 228, 199, 0.3);
}

.checkbox-natural {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-natural input {
    margin-right: 10px;
    margin-top: 3px;
}

.btn-submit-natural {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    padding: 12px 30px;
    border: none;
    width: 100%;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-natural:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 96, 145, 0.3);
}

.success-notification-natural {
    background: linear-gradient(135deg, #76c7f2, #d0ebff);
    color: #1e6091;
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
    display: none;
    border-left: 4px solid var(--green-primary);
}

.success-notification-natural.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-content-natural,
.terms-content-natural {
    color: var(--text-dark);
    line-height: 1.8;
}

.policy-content-natural h4,
.terms-content-natural h4 {
    color: var(--green-primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
    text-align: left;
    padding: 0;
}

.footer-link-btn:hover {
    color: var(--green-pale);
}

/* Leaf decoration */
.leaf-decoration {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.leaf-decoration.top-right {
    top: 20px;
    right: 20px;
    font-size: 100px;
    transform: rotate(45deg);
}

.leaf-decoration.bottom-left {
    bottom: 20px;
    left: 20px;
    font-size: 80px;
    transform: rotate(-45deg);
}

.contact-section {
    padding: 50px 0;
    background-color: var(--green-pale);
}

.contact-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    
}

.contact-details,
.appointment-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

h3 {
    margin-top: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.btn {
    padding: 12px 20px;
    background: #1e6091;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #0056b3;
}