/* === ROOT VARIABLES === */
:root {
    --primary-green: #a4bd76;
    --primary-pink: #ddafc0;
    --dark-bg: #111a24;
    --text-color: #666565;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inconsolata', sans-serif;
    
    --section-padding: 120px 0;
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: italic;
}

/* === UTILITY CLASSES === */
.section-padding {
    padding: var(--section-padding);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #8fa561;
    border-color: #8fa561;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    border-radius: var(--border-radius);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* === HEADER === */
.header {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 1rem !important;
    border-radius: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

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

/* Mobile navbar styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-bg);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-green));
    opacity: 0.1;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* === ABOUT SECTION === */
.about-section {
    background-color: var(--light-gray);
    position: relative;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 400px;
}

.about-img-1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
}

.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    transition: var(--transition);
}

.about-img-2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);

    transition: var(--transition);
}

.about-img-1:hover img,
.about-img-2:hover img {
    transform: scale(1.1);
}

/* === ADVANTAGES SECTION === */
.advantages-section {
    position: relative;
}

.advantage-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.advantage-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.advantage-text {
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* === METHODOLOGY SECTION === */
.methodology-section {
    background-color: var(--light-gray);
    position: relative;
}

.methodology-steps {
    padding-right: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--primary-green);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step-content h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    line-height: 1.7;
}

.methodology-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 500px;
}

.method-img-1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
}

.method-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
    transition: var(--transition);
}

.method-img-2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
}

.method-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    transition: var(--transition);
}

.method-img-1:hover img,
.method-img-2:hover img {
    transform: scale(1.1);
}

/* === PRICING SECTION === */
.pricing-section {
    position: relative;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.basic {
    border-top: 5px solid var(--primary-green);
}

.pricing-card.standard {
    border-top: 5px solid var(--primary-pink);
    transform: scale(1.05);
}

.pricing-card.premium {
    border-top: 5px solid var(--primary-green);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pricing-card.standard:hover {
    transform: translateY(-10px) scale(1.1);
}

.pricing-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.pricing-card.standard .pricing-icon {
    color: var(--primary-pink);
}

.pricing-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-card.standard .pricing-title {
    color: var(--primary-pink);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.pricing-card.standard .pricing-price {
    color: var(--primary-pink);
}

.pricing-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background-color: var(--light-gray);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-left: 5px solid var(--primary-pink);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-icon {
    color: var(--primary-pink);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--primary-pink);
    font-size: 0.95rem;
}

/* === NEWS SECTION === */
.news-section {
    position: relative;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.news-card.card-pink {
    border-top: 5px solid var(--primary-pink);
}

.news-card.card-green {
    border-top: 5px solid var(--primary-green);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-card.card-pink .news-title {
    color: var(--primary-pink);
}

.news-text {
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* === CONTACT SECTION === */
.contact-section {
    background-color: var(--light-gray);
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-label {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(164, 189, 118, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === CONTACT INFO SECTION === */
.contact-info-section {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
}

/* === FOOTER === */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    color: var(--primary-pink);
    font-weight: 600;
}

.footer-divider {
    border-color: #495057;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    margin: 0;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* === THANK YOU PAGE === */
.thankyou-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    position: relative;
}

.thankyou-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-green);
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.thankyou-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-subtitle {
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.thankyou-text {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* === POLICY PAGES === */
.policy-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.page-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--primary-pink);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .hero-content { padding-right: 1rem; }
    .about-content { padding-right: 1rem; }
    .methodology-steps { padding-right: 1rem; }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content,
    .about-content,
    .methodology-steps {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-images,
    .methodology-images {
        height: 300px;
        margin-top: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .about-images,
    .methodology-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .about-img-1,
    .about-img-2,
    .method-img-1,
    .method-img-2 {
        height: 200px;
    }
    
    .advantage-card,
    .pricing-card,
    .testimonial-card,
    .contact-form,
    .thankyou-card,
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.standard {
        transform: none;
    }
    
    .pricing-card.standard:hover {
        transform: translateY(-10px) scale(1.05);
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    
    .navbar-brand.logo {
        font-size: 1.5rem;
    }
    
    .hero-img {
        clip-path: none;
        transform: none;
    }
    
    .hero-img:hover {
        transform: scale(1.05);
    }
    
    .about-img-1 img,
    .about-img-2 img,
    .method-img-1 img,
    .method-img-2 img,
    .news-image img {
        clip-path: none;
    }
    
    .advantage-number {
        font-size: 3rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .thankyou-icon {
        font-size: 4rem;
    }
    
    .contact-form,
    .thankyou-card,
    .policy-content {
        padding: 1.5rem 1rem;
    }
}

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

.section-title,
.section-subtitle {
    animation: fadeInUp 0.8s ease;
}

/* === LOADING STATES === */
img[loading="lazy"] {
    transition: opacity 0.3s;
}

img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* === PRINT STYLES === */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .section-padding {
        padding: 20px 0;
    }
}
