/* Premium Design Enhancements - Green Theme */
:root {
    --primary-color: #0d5c3e;
    /* Aura Green */
    --primary-dark: #094a32;
    /* Darker Green */
    --primary-light: #157a53;
    /* Light/WhatsApp Green */
    --accent-color: #ffffff;
    /* White for contrast */
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 135, 81, 0.2);
}

body {
    font-family: 'Figtree', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 135, 81, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 135, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 135, 81, 0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a, #000);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 135, 81, 0.2);
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:not(.btn):hover {
    color: var(--primary-color);
}

nav ul li a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:not(.btn):hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 1002;
    transition: color 0.3s;
}

.mobile-menu:hover {
    color: var(--primary-color);
}

.mobile-menu.active i:before {
    content: '\f00d';
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 135, 81, 0.4);
    color: #fff;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 135, 81, 0.3);
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 35px;
    border-radius: 24px;
    color: white;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-premium:hover::before {
    transform: scaleX(1);
}

.testimonial-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    opacity: 0.8;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.95;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 8px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #157a53;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128C7E;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Footer Banner */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.privacy-banner .banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 20px;
}

.privacy-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.privacy-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
    max-width: 700px;
}

.banner-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.btn-outline-secondary {
    border-color: #ccc;
    color: #333;
    background: transparent;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background: #eee;
    color: #000;
    border-color: #bbb;
}

.link-primary {
    color: var(--primary-color) !important;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-bottom: 2px;
}

.link-primary:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}

.link-primary:hover:after {
    width: 100%;
}

/* Modal Styles */
.data-protection-modal .modal-content {
    border-radius: 20px;
    border: none;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.data-protection-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.data-protection-modal .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.data-protection-modal .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.data-protection-modal .btn-close-white:hover {
    opacity: 1;
}

.data-protection-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.policy-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.data-protection-modal .modal-footer {
    border-top: 1px solid #eee;
    background: #fdfdfd;
    padding: 1.5rem;
}

/* Footer Section */
footer {
    background: #111827;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        backdrop-filter: blur(10px);
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 0 0 25px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    nav ul.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    nav ul.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    nav ul.active li:nth-child(4) {
        transition-delay: 0.5s;
    }

    nav ul.active li:nth-child(5) {
        transition-delay: 0.6s;
    }

    nav ul li a {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 5px 0;
        display: block;
        width: 100%;
        color: #333;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }

    .banner-actions {
        margin-top: 20px;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .link-primary {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Authentication Styles */
.auth-body {
    background: linear-gradient(135deg, #f8fdfb 0%, #f0f7f4 100%);
    min-height: 100vh;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 135, 81, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 135, 81, 0.08);
    transition: transform 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-badge {
    padding: 12px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card .btn-primary {
    background: linear-gradient(135deg, #0d5c3e 0%, #007043 100%);
    border: none;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 135, 81, 0.2);
}

.auth-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 135, 81, 0.3);
    background: linear-gradient(135deg, #007043 0%, #005c36 100%);
}

.auth-card .form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #fbfcfd;
    transition: all 0.2s ease;
}

.auth-card .form-control:focus {
    border-color: #0d5c3e;
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
    background-color: #fff;
}

.auth-card .input-group-text {
    border-radius: 0 10px 10px 0;
    background-color: #fbfcfd;
    border-color: #e2e8f0;
    color: #64748b;
}

.spinner-border-sm {
    display: none;
    margin-right: 8px;
}

.btn-processing .spinner-border-sm {
    display: inline-block;
}

.tiny-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
}
