:root {
    --primary-color: #2A9D8F;
    --primary-dark: #21867a;
    --secondary-color: #264653;
    --accent-color: #E9C46A;
    --danger-color: #E76F51;
    --warning-color: #F4A261;
    
    --bg-body: #ffffff;
    --bg-light: #f1faee;
    --bg-card: #ffffff;
    
    --text-dark: #264653;
    --text-body: #455a64;
    --text-muted: #718096;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 0.75rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1rem;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    font-weight: 500;
}

.text-accent {
    color: var(--accent-color) !important;
}

.hover-opacity:hover {
    opacity: 0.8;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-body) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(42, 157, 143, 0.05);
}

.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(42, 157, 143, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #cbd5e0;
}

.hero-section {
    background: linear-gradient(135deg, #f1faee 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-dark), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card, .product-card {
    border: none;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

.product-img-top {
    height: 240px;
    object-fit: contain;
    padding: 2rem;
    transition: var(--transition);
    background-color: #fff;
}

.product-card:hover .product-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(42, 157, 143, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(42, 157, 143, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
}

footer {
    background-color: #264653;
    color: #a8b2d1;
    font-size: 0.95rem;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer a {
    color: #a8b2d1;
    transition: var(--transition);
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.trust-badge {
    max-width: 100px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: var(--transition);
}

.trust-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#checkout-form .form-control:hover,
#checkout-form .form-select:hover,
#checkout-form .form-control:focus,
#checkout-form .form-select:focus {
    border-color: #dee2e6;
    box-shadow: none;
    transform: none;
}

#checkout-form .card:hover,
#checkout-form .card.hover-shadow:hover {
    transform: none !important;
    box-shadow: var(--box-shadow) !important;
    border-color: rgba(0,0,0,0.125) !important;
    transition: none !important;
}

#checkout-form .hover-shadow {
    transition: none !important;
}

#checkout-form .btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

.site-footer {
    background-color: #264653;
    color: #a8b2d1;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-heading {
    color: #f1faee;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-link {
    color: #a8b2d1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.newsletter-form .form-control {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-form .form-control:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    box-shadow: none;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}

.footer-bottom {
    background-color: #1d3540;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 60px 0;
    }
}

/* New Styles */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.testimonial-card {
    border: none;
    border-radius: var(--border-radius);
    background: #fff;
    transition: var(--transition);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #cbd5e0;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    opacity: 0.8;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.1);
}
