:root {
    --forest-green: #0B3B2F;
    --light-green: #4CAF50;
    --light-green-bg: #E8F5E9;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--forest-green);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
}

.logo span {
    color: var(--light-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-green);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--light-green);
    margin: 10px auto 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-green-bg) 0%, var(--white) 100%);
    margin-top: 60px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    background: var(--light-green);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1.5rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--forest-green);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-green);
}

/* Forms */
.evaluation, .training, .contact {
    background: var(--gray-light);
}

.evaluation-grid, .training-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.evaluation-form form, .training-form form, .contact-form form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background: var(--forest-green);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--light-green);
}

/* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.country-card {
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.country-flag img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.btn-country-requirements {
    background: var(--forest-green);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-country-requirements:hover {
    background: var(--light-green);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.course-card:hover {
    background: var(--light-green);
    color: white;
    transform: scale(1.05);
}

.course-card:hover h3 {
    color: white;
}

.course-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    cursor: pointer;
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--forest-green);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container,
    .about-grid,
    .evaluation-grid,
    .training-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Flag Styles - CSS-based placeholders */
.country-flag {
    width: 60px;
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green), var(--light-green));
    position: relative;
}

.flag-emoji {
    font-size: 32px;
    line-height: 1;
}

/* CSS-only flag placeholders with country colors */
.flag-lt {
    background: linear-gradient(135deg, #006a44 0%, #006a44 50%, #c1272d 50%, #c1272d 100%);
}

.flag-ca {
    background: linear-gradient(180deg, #ff0000 0%, #ff0000 25%, #ffffff 25%, #ffffff 75%, #ff0000 75%, #ff0000 100%);
    position: relative;
}

.flag-ca::before {
    content: '🍁';
    position: absolute;
    font-size: 24px;
    color: #ff0000;
}

.flag-us-tx {
    background: linear-gradient(180deg, #002868 0%, #002868 33%, #ffffff 33%, #ffffff 66%, #bf0a30 66%, #bf0a30 100%);
    position: relative;
}

.flag-us-tx::before {
    content: '⭐';
    position: absolute;
    font-size: 20px;
    color: white;
}

.flag-pl {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #dc143c 50%, #dc143c 100%);
}

.flag-sk {
    background: linear-gradient(180deg, #ee1c25 0%, #ee1c25 33%, #ffffff 33%, #ffffff 66%, #0b4ea2 66%, #0b4ea2 100%);
}

.flag-lv {
    background: linear-gradient(180deg, #9e3039 0%, #9e3039 40%, #ffffff 40%, #ffffff 60%, #9e3039 60%, #9e3039 100%);
}

.flag-nl {
    background: linear-gradient(180deg, #ae1c28 0%, #ae1c28 33%, #ffffff 33%, #ffffff 66%, #21468b 66%, #21468b 100%);
}

.flag-be {
    background: linear-gradient(90deg, #000000 0%, #000000 33%, #fae042 33%, #fae042 66%, #ef3340 66%, #ef3340 100%);
}

.flag-it {
    background: linear-gradient(90deg, #009246 0%, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%, #ce2b37 100%);
}

.flag-dk {
    background: #c60c30;
    position: relative;
}

.flag-dk::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 100%;
    background: white;
    left: 40%;
}

.flag-dk::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background: white;
    top: 45%;
}

.flag-de {
    background: linear-gradient(180deg, #000000 0%, #000000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%, #ffce00 100%);
}

.flag-se {
    background: linear-gradient(180deg, #006aa7 0%, #006aa7 50%, #fecc00 50%, #fecc00 100%);
    position: relative;
}

.flag-se::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: #fecc00;
    top: 35%;
}

.flag-fr {
    background: linear-gradient(90deg, #0055a4 0%, #0055a4 33%, #ffffff 33%, #ffffff 66%, #ef4135 66%, #ef4135 100%);
}

.flag-fi {
    background: #ffffff;
    position: relative;
}

.flag-fi::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: #003580;
    left: 35%;
}

.flag-fi::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: #003580;
    top: 40%;
}

.flag-ie {
    background: linear-gradient(90deg, #169b62 0%, #169b62 33%, #ffffff 33%, #ffffff 66%, #ff883e 66%, #ff883e 100%);
}

.flag-hu {
    background: linear-gradient(180deg, #ce2939 0%, #ce2939 33%, #ffffff 33%, #ffffff 66%, #477050 66%, #477050 100%);
}

.flag-at {
    background: linear-gradient(180deg, #ed2939 0%, #ed2939 33%, #ffffff 33%, #ffffff 66%, #ed2939 66%, #ed2939 100%);
}

.flag-pt {
    background: linear-gradient(90deg, #006600 0%, #006600 40%, #ff0000 40%, #ff0000 100%);
    position: relative;
}

.flag-pt::before {
    content: '⚪';
    position: absolute;
    font-size: 20px;
    color: #ffcc00;
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
}

.flag-es {
    background: linear-gradient(180deg, #aa151b 0%, #aa151b 25%, #f1bf00 25%, #f1bf00 75%, #aa151b 75%, #aa151b 100%);
}

/* Alternative: Real image flags (uncomment when you have actual flag images) */
/*
.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

/* Country card hover effects */
.country-card {
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: var(--forest-green);
}

.country-card h3 {
    color: var(--forest-green);
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Training Form Styles */
.training-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.training-form h3 {
    background: var(--forest-green);
    color: white;
    padding: 20px;
    margin: 0;
    text-align: center;
}

.training-form form {
    padding: 30px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--forest-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

.form-group small {
    display: block;
    margin-top: 0px;
    color: #666;
    font-size: 12px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.training-benefits {
    margin-top: 30px;
    background: var(--light-green-bg);
    padding: 20px;
    border-radius: 10px;
}

.training-benefits h3 {
    color: var(--forest-green);
    margin-top: 0;
    margin-bottom: 15px;
}

.training-benefits ul {
    list-style: none;
    padding: 0;
}

.training-benefits li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

@media (max-width: 768px) {
    .training-form form {
        padding: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   RESPONSIVE IMAGES WITH BEAUTIFUL STYLES
   ============================================ */

/* Base responsive image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section Image */
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    aspect-ratio: 600 / 400;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* About Section Image */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
    aspect-ratio: 500 / 350;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 59, 47, 0.2), rgba(76, 175, 80, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

/* Evaluation Section Image */
.evaluation-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.evaluation-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    aspect-ratio: 500 / 450;
    object-fit: cover;
}

.evaluation-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

/* Training Section Image */
.training-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.6s ease, filter 0.3s ease;
    aspect-ratio: 550 / 400;
    object-fit: cover;
}

.training-image:hover img {
    transform: scale(1.08);
    filter: brightness(0.95);
}

/* Overlay effect on training image */
.training-image::after {
    content: '🚛 Start Your Journey';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--forest-green), var(--light-green));
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    transition: bottom 0.3s ease;
    font-size: 1.1rem;
}

.training-image:hover::after {
    bottom: 0;
}

/* Contact Section Image */
.contact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease;
    aspect-ratio: 450 / 300;
    object-fit: cover;
}

.contact-image:hover img {
    transform: scale(1.04);
}

/* Flag Images Styling */
.country-flag {
    width: 70px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.country-card:hover .country-flag img {
    transform: scale(1.1);
}

/* Course Icon Images */
.course-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-green-bg), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.course-card:hover .course-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--light-green), var(--forest-green));
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.course-card:hover .course-icon img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

/* Responsive image gallery for multiple images */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 59, 47, 0.9), transparent);
    color: white;
    padding: 20px;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Background pattern for image placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Responsive image adjustments for mobile */
@media (max-width: 768px) {
    .hero-image img,
    .about-image img,
    .evaluation-image img,
    .training-image img,
    .contact-image img {
        aspect-ratio: 16 / 9;
    }
    
    .course-icon {
        width: 80px;
        height: 80px;
    }
    
    .country-flag {
        width: 60px;
        height: 40px;
    }
    
    .training-image::after {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Lazy loading blur effect */
img[loading="lazy"] {
    filter: blur(0px);
    transition: filter 0.3s ease;
}

img[loading="lazy"].loaded {
    filter: blur(0);
}

/* Parallax effect for hero image */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image::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.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Image caption styling */
.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Floating animation for some images */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.evaluation-image {
    animation: float 3s ease-in-out infinite;
}

/* Glassmorphism effect for image containers */
.glass-image-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-image-container img {
    border-radius: 15px;
}

/* Hover border effect for all images */
.hover-border-effect {
    position: relative;
    border-radius: 20px;
}

.hover-border-effect::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--forest-green), var(--light-green));
    border-radius: 23px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hover-border-effect:hover::before {
    opacity: 1;
}

/* Zoom effect on click (optional JavaScript) */
.image-zoom {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-zoom:active {
    transform: scale(0.98);
}

/* Dark mode support for images */
@media (prefers-color-scheme: dark) {
    .image-placeholder {
        background: linear-gradient(135deg, #2d3748, #1a202c);
    }
    
    .image-caption {
        color: #a0aec0;
    }
}

/* Experience Group Styles */
.experience-group {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--light-green);
    transition: all 0.3s ease;
}

.experience-group label {
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.experience-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.experience-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.experience-group small {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}

/* Radio button styling */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--light-green);
    background: var(--light-green-bg);
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.radio-label:has(input:checked) {
    border-color: var(--light-green);
    background: var(--light-green-bg);
    color: var(--forest-green);
    font-weight: 600;
}

/* Character counter styling */
.char-counter {
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
    transition: color 0.3s ease;
}

/* Animation for experience group */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .radio-label {
        width: 100%;
    }
    
    .experience-group {
        padding: 15px;
    }
}

/* Tooltip hint for experience field */
.experience-group label::after {
    content: ' ℹ️';
    font-size: 14px;
    cursor: help;
}

.experience-group label:hover::after {
    opacity: 0.8;
}

/* Success state for valid input */
.experience-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--light-green);
    background: #f0fff4;
}

/* Error state for invalid input */
.experience-group textarea:invalid:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

/* ============================================
   MODERN HERO SECTION - PROFESSIONAL DESIGN
   ============================================ */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3B2F 0%, #1a5d4a 50%, #0B3B2F 100%);
    padding: 100px 0 80px;
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.15), transparent 70%);
}

/* Particle Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content-modern {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.8s ease-out;
}

.badge-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #4CAF50, #81C784, #A5D6A7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
    max-width: 90%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

/* Trust Badge */
.hero-trust-badge {
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.trust-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-icons span {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Visual Section */
.hero-visual-modern {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-5px);
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.2), transparent);
    pointer-events: none;
}

/* Hero Cards Stack */
.hero-card-stack {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 3;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    transform: translate(-20px, 20px);
    animation-delay: 0s;
}

.card-2 {
    transform: translate(-80px, 100px);
    animation-delay: 0.5s;
}

.card-3 {
    transform: translate(-130px, 180px);
    animation-delay: 1s;
}

.hero-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.card-icon {
    font-size: 32px;
}

.card-content h4 {
    margin: 0;
    font-size: 14px;
    color: #0B3B2F;
}

.card-content p {
    margin: 0;
    font-size: 11px;
    color: #666;
}

.card-salary {
    font-weight: bold;
    color: #4CAF50;
    font-size: 12px;
}

.card-badge {
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-fill {
    fill: #FFFFFF;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-icons {
        justify-content: center;
    }
    
    .hero-visual-modern {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-card-stack {
        transform: scale(0.8);
        right: -50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-card-stack {
        display: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hero-card {
        background: rgba(30, 30, 30, 0.95);
    }
    
    .card-content h4 {
        color: #4CAF50;
    }
}

/* Animated gradient border for hero image */
.hero-main-image {
    position: relative;
    background: linear-gradient(135deg, #4CAF50, #0B3B2F, #4CAF50);
    background-size: 200% 200%;
    animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-main-image img {
    margin: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
}

/* Glowing effect on hover */
.hero-main-image {
    position: relative;
}

.hero-main-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4CAF50, #0B3B2F, #4CAF50);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-main-image:hover::after {
    opacity: 1;
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.btn-primary-modern {
    animation: pulse 2s infinite;
}

.btn-primary-modern:hover {
    animation: none;
}

/* Force proper spacing - Most reliable fix */
.hero-modern {
    margin-bottom: 0 !important;
    padding-bottom: 120px !important;
}

.about {
    margin-top: -2px !important;
    padding-top: 80px !important;
    background: white;
    position: relative;
    z-index: 10;
}

/* Ensure no overlap */
.hero-wave {
    bottom: -1px;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    margin-bottom: -1px;
}

/* Global reset for sections */
section {
    position: relative;
    scroll-margin-top: 80px; /* For smooth scroll offset */
}

/* Ensure proper spacing between sections */
.hero-modern + section {
    margin-top: 0;
    padding-top: 80px;
}

/* About section specific fixes */
.about {
    position: relative;
    z-index: 4;
    background: #FFFFFF;
    margin-top: -1px; /* Prevent gap from wave */
    padding: 80px 0;
}

/* Ensure wave doesn't create white space */
.hero-wave + .about {
    margin-top: -2px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-modern {
        padding: 80px 0 100px;
    }
    
    .hero-wave svg {
        height: 50px;
    }
    
    .about {
        padding: 60px 0;
    }
}

/* Debug - Remove any negative margins that might cause overlap */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Ensure wave fills completely */
.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 50px;
}

/* ============================================
   MODERN EVALUATION FORM WITH ANIMATIONS
   ============================================ */

.evaluation-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.evaluation-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #0B3B2F, #4CAF50);
}

/* Section Header */
.evaluation-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.section-title-modern {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* Evaluation Wrapper */
.evaluation-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Info Cards */
.evaluation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--forest-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
}

/* Form Container */
.evaluation-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideInRight 0.6s ease;
}

.form-header {
    background: linear-gradient(135deg, var(--forest-green), #1a5d4a);
    color: white;
    padding: 25px 30px;
}

.form-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

form {
    padding: 30px;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-upload {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Groups with Animation */
.form-group {
    margin-bottom: 2px;
    position: relative;
}

.animated-group {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.animated-group:nth-child(1) { animation-delay: 0.1s; }
.animated-group:nth-child(2) { animation-delay: 0.2s; }
.animated-group:nth-child(3) { animation-delay: 0.3s; }
.animated-group:nth-child(4) { animation-delay: 0.4s; }
.animated-group:nth-child(5) { animation-delay: 0.5s; }
.animated-group:nth-child(6) { animation-delay: 0.6s; }

.form-group label, .upload-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--forest-green);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Input Focus Effect */
.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-group input:focus ~ .input-focus-effect,
.form-group select:focus ~ .input-focus-effect {
    width: 100%;
}

/* Upload Area Styles */
.upload-group {
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: #4CAF50;
    background: #f0f9f0;
    transform: translateY(-2px);
}

.upload-area.drag-over {
    border-color: #4CAF50;
    background: #e8f5e9;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 40px;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.upload-area p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.upload-area span {
    font-size: 11px;
    color: #999;
}

.file-name {
    margin-top: 10px;
    font-size: 12px;
    color: #4CAF50;
    word-break: break-all;
}

/* Checkbox Styles */
.form-checkbox {
    margin: 25px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #4CAF50;
    animation: checkBounce 0.3s ease;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes checkBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .evaluation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .evaluation-info {
        flex-direction: row;
    }
    
    .form-row,
    .form-row-upload {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .evaluation-modern {
        padding: 50px 0;
    }
    
    .evaluation-info {
        flex-direction: column;
    }
    
    form {
        padding: 20px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
}

/* Loading State for Submit Button */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.section-badge-about {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.section-badge-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.section-badge-about:hover::before {
    left: 100%;
}

.about-title {
    font-size: 2.8rem;
    color: var(--forest-green);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-title .gradient-text {
    background: linear-gradient(135deg, #4CAF50, #0B3B2F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.about-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
/* Responsive Design */
@media (max-width: 968px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .btn-about, .btn-about-outline {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-professional {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .experience-badge {
        padding: 10px 15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.feature-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content h4 {
    color: var(--forest-green);
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* About CTA Buttons */
.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    gap: 15px;
}

.btn-about-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--forest-green);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4CAF50;
    transition: all 0.3s ease;
}

.btn-about-outline:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

/* Content Section */
.about-content {
    animation: slideInRight 0.6s ease;
}

.about-text {
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--forest-green);
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #4CAF50;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================
   PROFESSIONAL CONTACT SECTION
   ============================================ */

.contact-professional {
    position: relative;
    padding: 80px 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-title .gradient-text {
    background: linear-gradient(135deg, #4CAF50, #0B3B2F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInLeft 0.6s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-icon-main {
    font-size: 50px;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.info-header h3 {
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.info-header p {
    color: #666;
    font-size: 0.9rem;
}

/* Office Locations */
.office-locations {
    margin-bottom: 30px;
}

.office-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.office-card:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.office-icon {
    font-size: 28px;
}

.office-details h4 {
    color: var(--forest-green);
    margin-bottom: 5px;
    font-size: 1rem;
}

.office-details p {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Details */
.contact-details-modern {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #f8f9fa;
    padding-left: 20px;
}

.detail-icon {
    font-size: 24px;
}

.detail-content h4 {
    color: var(--forest-green);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.detail-content p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

.detail-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: #4CAF50;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: var(--forest-green);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Modern */
.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.6s ease;
}

.form-header-modern {
    text-align: center;
    margin-bottom: 30px;
}

.form-header-modern h3 {
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-header-modern p {
    color: #666;
    font-size: 0.9rem;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group-modern {
    position: relative;
    margin-bottom: 25px;
}

.input-group-modern input,
.input-group-modern textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group-modern textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group-modern label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group-modern input:focus ~ label,
.input-group-modern input:valid ~ label,
.input-group-modern textarea:focus ~ label,
.input-group-modern textarea:valid ~ label {
    top: -15px;
    font-size: 12px;
    color: #4CAF50;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    transition: width 0.3s ease;
}

.input-group-modern input:focus ~ .input-border,
.input-group-modern textarea:focus ~ .input-border {
    width: 100%;
}

.input-group-modern.full-width {
    grid-column: span 2;
}

/* Contact Submit Button */
.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    gap: 15px;
}

.contact-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.form-footer p {
    color: #999;
    font-size: 0.75rem;
    margin: 0;
}

/* Contact Map */
.contact-map {
    margin-top: 60px;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.3s ease;
}

.contact-map iframe:hover {
    filter: grayscale(0) brightness(1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .input-group-modern.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contact-professional {
        padding: 60px 0 0;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card,
    .contact-form-modern {
        padding: 20px;
    }
    
    .office-card {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .office-card:hover {
        transform: translateY(-3px);
    }
}

/* Loading State */
.contact-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message Animation */
.contact-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-left: 4px solid #4CAF50;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

.contact-success p {
    margin: 0;
    color: #333;
}

/* ============================================
   PROFESSIONAL FOOTER SECTION
   ============================================ */

.footer-professional {
    background: linear-gradient(135deg, #0B3B2F 0%, #0a3529 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #81C784, #4CAF50);
}

.footer-professional::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-column {
    animation: fadeInUp 0.6s ease backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-badge-footer {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .logo-badge-footer {
    transform: rotate(10deg) scale(1.05);
}

.footer-logo-text h3 {
    font-size: 18px;
    margin: 0;
    color: white;
}

.footer-logo-text h3 span {
    color: #4CAF50;
}

.footer-logo-text p {
    font-size: 10px;
    margin: 5px 0 0;
    opacity: 0.7;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 13px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 13px;
}

.footer-links a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-group input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    transition: all 0.3s ease;
}

.newsletter-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #4CAF50;
}

.newsletter-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-group button {
    position: absolute;
    right: 5px;
    background: #4CAF50;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.newsletter-group button:hover {
    background: #45a049;
    transform: scale(1.05);
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-small {
    font-size: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-small strong {
    color: #4CAF50;
}

.contact-small a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-small a:hover {
    color: #4CAF50;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #4CAF50;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-payment {
    display: flex;
    gap: 15px;
}

.footer-payment span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.scroll-to-top svg {
    color: white;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Newsletter Success Message */
.newsletter-success {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    color: #333;
    font-size: 13px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    border-left: 3px solid #4CAF50;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FLOATING WHATSAPP CHAT WIDGET - LEFT ALIGNED
   ============================================ */

.whatsapp-chat-widget {
    position: fixed;
    bottom: 30px;
    left: auto;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    right: 20px;
}

/* WhatsApp Button */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Notification Badge */
.whatsapp-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s infinite;
    border: 2px solid white;
}

/* Chat Box */
.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
    display: none;
    animation: slideInLeft 0.3s ease;
}

.whatsapp-chat-box.active {
    transform: scale(1);
    display: block;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 24px;
    height: 24px;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.chat-header-text p {
    margin: 5px 0 0;
    font-size: 11px;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

/* Chat Messages Area */
.chat-messages {
    height: 180px;
    overflow-y: auto;
    padding: 20px;
    background: #E5DDD5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Message Bubbles */
.message {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.received .message-content {
    background: white;
    border-top-left-radius: 0;
}

.message.sent .message-content {
    background: #DCF8C6;
    border-top-right-radius: 0;
}

.message-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #303030;
}

.message-time {
    display: block;
    font-size: 9px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

/* Chat Options Buttons */
.chat-options {
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.option-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-2px);
}

/* Chat Input Area */
.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    outline: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.send-btn:hover {
    transform: scale(1.05);
    background: #128C7E;
}

/* Chat Footer */
.chat-footer {
    padding: 10px 15px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.chat-footer p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.chat-footer a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}

.chat-footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-chat-box {
        width: calc(100vw - 40px);
        max-width: 350px;
        bottom: 70px;
    }
    
    .chat-messages {
        height: 200px;
    }
    
    .chat-options {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .option-btn {
        white-space: nowrap;
    }

    .scroll-to-top {
        position: fixed;
        bottom: 80px;
    }
}

/* RTL Support for Left Alignment */
[dir="rtl"] .whatsapp-chat-widget {
    left: auto;
    right: 30px;
}

[dir="rtl"] .whatsapp-chat-box {
    left: auto;
    right: 0;
    transform-origin: bottom right;
}