/* ===== CSS VARIABLES ===== */
:root {
    --accent-color: #96bb2b;
    --bg-primary: #fff;
    --bg-light-green: #e0ecc2;
    --text-deep: #162E3C;
    --text-muted: #6c757d;
    --border-light: #dee2e6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-deep);
    background-color: var(--bg-primary);
}

/* ===== UTILITY CLASSES ===== */
.text-accent {
    color: var(--accent-color) !important;
}

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

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

.bg-light-green {
    background-color: var(--bg-light-green) !important;
}

.bg-deep {
    background-color: var(--text-deep) !important;
}

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

/* ===== BUTTON STYLES ===== */
.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #7ea024;
    border-color: #7ea024;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== HEADER STYLES ===== */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background-color: var(--accent-color);
    color: white !important;
    transform: translateY(-1px);
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 46, 60, 0.8) 0%, rgba(150, 187, 43, 0.6) 100%);
    z-index: -1;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== CARD STYLES ===== */
.method-card,
.domain-card,
.testimonial-card,
.pricing-card,
.blog-card {
    transition: var(--transition);
    border: none;
    border-radius: var(--border-radius);
}

.method-card:hover,
.domain-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ===== TESTIMONIAL STYLES ===== */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* ===== PRICING STYLES ===== */
.price {
    line-height: 1.2;
}

.pricing-card .badge {
    border-radius: 50px;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* ===== ACCORDION STYLES ===== */
.accordion-button {
    border: none;
    border-radius: var(--border-radius) !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light-green);
    color: var(--text-deep);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(150, 187, 43, 0.25);
}

.accordion-item {
    border: none;
}

/* ===== FORM STYLES ===== */
.form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(150, 187, 43, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== COOKIE POPUP STYLES ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-deep);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===== FOOTER STYLES ===== */
.footer {
    border-top: 3px solid var(--bg-light-green);
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

/* ===== MATERIAL ICONS ADJUSTMENTS ===== */
.material-icons,
.material-icons-outlined {
    vertical-align: middle;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    .method-card,
    .domain-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .btn-accent,
    .btn-outline-accent {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-card .display-4 {
        font-size: 2rem !important;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light-green);
}

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

::-webkit-scrollbar-thumb:hover {
    background: #7ea024;
}
