/* ============================================
   Day Dream Consultancy - Main Stylesheet
   Color Palette:
   - Royal Blue: #162660 (Primary)
   - Powder Blue: #D0E6FD (Secondary)
   - Warm Beige: #F1E4D1 (Accent)
   ============================================ */

/* CSS Variables */
:root {
    --royal-blue: #162660;
    --powder-blue: #D0E6FD;
    --warm-beige: #F1E4D1;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --success: #10B981;
    --warning: #F59E0B;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--royal-blue);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   Navigation Styles
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--powder-blue);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img {
    width: 77px;
    height: 60px;
}


.logo-text {
    color: var(--royal-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.logo-text span {
    color: var(--royal-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--royal-blue);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-blue);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #1a2d70;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-royal {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-royal:hover {
    background: #1a2d70;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-beige {
    background: var(--warm-beige);
    color: var(--royal-blue);
}

.btn-beige:hover {
    background: #e5d4bc;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--royal-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile/Desktop Visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--powder-blue) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--powder-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    color: var(--white);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--warm-beige);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 450px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-20px); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--royal-blue);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
    max-width: 600px;
    margin: 25px auto 0;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--warm-beige);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--royal-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--royal-blue);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--royal-blue);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--royal-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    background: var(--powder-blue);
}

.why-choose-section .section-header h2::after {
    background: var(--royal-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon,
.ci-icon {
    width: 70px;
    height: 70px;
    background: var(--royal-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.ci-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--royal-blue);
}

.feature-box p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
    background: var(--royal-blue);
    padding: 80px 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--powder-blue);
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   Client Logo Slider
   ============================================ */
.clients-slider-section {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.clients-slider {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--warm-beige);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.testimonial-author h4 {
    color: var(--royal-blue);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--royal-blue);
    background: transparent;
    color: var(--royal-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--royal-blue);
    transform: scale(1.2);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a2d70 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* ============================================
   About Page Styles
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--powder-blue) 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--royal-blue);
    border-radius: 16px;
    z-index: -1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision-section {
    background: var(--powder-blue);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--royal-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--warm-beige);
    border-radius: 16px;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail-content h3 i {
    width: 50px;
    height: 50px;
    background: var(--royal-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.service-detail-image {
    background: var(--royal-blue);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 64px;
}

/* ============================================
   Clients Page Styles
   ============================================ */
.clients-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.client-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.client-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-card i {
    font-size: 48px;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.client-card h4 {
    color: var(--royal-blue);
    font-size: 18px;
}

.video-testimonials {
    background: var(--powder-blue);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.video-testimonials h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    height: 200px;
    background: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.video-card h4 {
    padding: 20px;
    color: var(--royal-blue);
}

/* ============================================
   Career Page Styles
   ============================================ */
.career-section {
    padding: 80px 0;
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: var(--warm-beige);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--royal-blue);
}

.job-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.job-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--royal-blue);
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 14px;
}

.application-section {
    background: var(--powder-blue);
    padding: 60px;
    border-radius: 16px;
}

.application-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-group input[type="file"] {
    padding: 10px;
}

.file-hint {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 15px 50px;
    font-size: 16px;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--royal-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--powder-blue);
    color: var(--royal-blue);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--warm-beige);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    height: 400px;
    background: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   Chatbot Widget
   ============================================ */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 998;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: var(--royal-blue);
    padding: 20px;
    color: var(--white);
}

.chatbot-header h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.chatbot-header p {
    font-size: 13px;
    opacity: 0.9;
}

.chatbot-body {
    padding: 20px;
}

.chatbot-message {
    background: var(--powder-blue);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.chatbot-message p {
    font-size: 14px;
    color: var(--royal-blue);
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-option {
    padding: 12px 15px;
    background: var(--warm-beige);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--royal-blue);
    font-weight: 500;
}

.chatbot-option:hover {
    background: var(--royal-blue);
    color: var(--white);
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: var(--royal-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--powder-blue);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--powder-blue);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    color: var(--powder-blue);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--powder-blue);
    color: var(--royal-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--powder-blue);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card:nth-child(even) {
        direction: ltr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .form-submit {
        grid-column: span 1;
    }
    
    .application-section,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .chatbot-widget {
        right: 20px;
        bottom: 100px;
    }
    
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
    
    /* Mobile/Desktop Visibility */
    .mobile-only {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.hidden { display: none; }
.visible { display: block; }

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--powder-blue);
    border-top-color: var(--royal-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}
/* ============================================
   Team Page Styles
   ============================================ */
.team-intro {
    background: var(--white);
    padding-bottom: 20px;
}

.team-section-title {
    font-size: 26px;
    color: var(--royal-blue);
    margin-bottom: 40px;
    position: relative;
    padding-left: 18px;
}

.team-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 70%;
    width: 5px;
    background: var(--royal-blue);
    border-radius: 3px;
}

/* Leadership Grid */
.team-grid--leadership {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 35px;
    margin-bottom: 20px;
}

.team-card--featured {
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(22, 38, 96, 0.08);
    transition: var(--transition);
}

.team-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    flex-shrink: 0;
}

.team-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue), #2a4aaa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.team-info h4 {
    font-size: 22px;
    color: var(--royal-blue);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--royal-blue);
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-bio-sm {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.team-skills span {
    background: var(--powder-blue);
    color: var(--royal-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue);
    font-size: 13px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--royal-blue);
    color: var(--white);
}

/* Core Team Cards */
.team-grid--core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 38, 96, 0.06);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--powder-blue);
}

.team-avatar-sm {
    margin: 0 auto 18px;
}

.team-avatar-placeholder.sm {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue), #2a4aaa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.team-card h4 {
    font-size: 18px;
    color: var(--royal-blue);
    margin-bottom: 6px;
}

.team-card .team-social {
    justify-content: center;
    margin-top: 4px;
}

/* Values Banner */
.team-values-banner {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a2d70 100%);
    padding: 50px 0;
}

.values-banner-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.value-pill {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.value-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.value-pill i {
    color: var(--powder-blue);
}

/* Team Page Responsive */
@media (max-width: 768px) {
    .team-grid--leadership {
        grid-template-columns: 1fr;
    }
    .team-card--featured {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    .team-skills {
        justify-content: center;
    }
    .team-social {
        justify-content: center;
    }
    .team-grid--core {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid--core {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Legal Pages (Terms & Privacy) Styles
   ============================================ */
.legal-section {
    background: var(--light-gray);
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* TOC Sidebar */
.legal-toc {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 38, 96, 0.08);
}

.toc-card h4 {
    font-size: 16px;
    color: var(--royal-blue);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-card h4 i {
    color: var(--royal-blue);
}

.toc-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-card ul li a {
    font-size: 13px;
    color: var(--gray);
    padding: 5px 10px;
    border-radius: 6px;
    display: block;
    transition: var(--transition);
    font-weight: 500;
}

.toc-card ul li a:hover {
    background: var(--powder-blue);
    color: var(--royal-blue);
    padding-left: 14px;
}

.toc-highlight {
    background: var(--powder-blue);
    border-color: var(--royal-blue);
}

.toc-highlight p {
    font-size: 14px;
    color: var(--royal-blue);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}

/* Legal Content Area */
.legal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 38, 96, 0.06);
}

.legal-intro-box {
    background: var(--powder-blue);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 50px;
    border-left: 5px solid var(--royal-blue);
}

.legal-intro-box i {
    font-size: 32px;
    color: var(--royal-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.legal-intro-box p {
    font-size: 16px;
    color: var(--royal-blue);
    line-height: 1.7;
    font-weight: 500;
}

.legal-section-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section-block h2 {
    font-size: 22px;
    color: var(--royal-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-section-block p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-section-block p:last-child {
    margin-bottom: 0;
}

.legal-section-block a {
    color: var(--royal-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section-block a:hover {
    opacity: 0.8;
}

.legal-sub {
    font-size: 17px;
    color: var(--royal-blue);
    margin: 24px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--powder-blue);
}

.legal-list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.legal-list li i {
    color: var(--royal-blue);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list li i.fa-times-circle {
    color: #e53935;
}

.legal-notice-box {
    background: #FFF8E1;
    border-left: 4px solid #F59E0B;
    border-radius: 10px;
    padding: 20px 20px 20px 25px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
}

.legal-notice-box i {
    color: #F59E0B;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-notice-box p {
    font-size: 14px;
    color: #7C5E00;
    margin: 0;
    line-height: 1.6;
}

/* Legal Contact Grid */
.legal-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    background: var(--light-gray);
    border-radius: 14px;
    padding: 30px;
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.legal-contact-item i {
    width: 42px;
    height: 42px;
    background: var(--royal-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.legal-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-contact-item strong {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-contact-item a,
.legal-contact-item span {
    font-size: 15px;
    color: var(--royal-blue);
    font-weight: 500;
    line-height: 1.5;
}

/* Rights Grid (Privacy Page) */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.rights-card {
    background: var(--light-gray);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.rights-card:hover {
    border-color: var(--powder-blue);
    background: var(--powder-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.rights-card i {
    font-size: 26px;
    color: var(--royal-blue);
    margin-bottom: 12px;
    display: block;
}

.rights-card h4 {
    font-size: 15px;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.rights-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Cookies Table */
.cookies-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(22,38,96,0.1);
    margin: 20px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1.5fr;
    gap: 0;
}

.cookie-row.header {
    background: var(--royal-blue);
    color: var(--white);
}

.cookie-row.header span {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-row:not(.header) {
    border-bottom: 1px solid rgba(22,38,96,0.07);
    transition: var(--transition);
}

.cookie-row:not(.header):last-child {
    border-bottom: none;
}

.cookie-row:not(.header):hover {
    background: var(--light-gray);
}

.cookie-row:not(.header) span {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--gray);
    border-right: 1px solid rgba(22,38,96,0.06);
}

.cookie-row:not(.header) span:last-child {
    border-right: none;
}

/* Legal Responsive */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    .legal-content {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-toc {
        position: static;
    }
    .legal-content {
        padding: 30px 20px;
    }
    .cookie-row {
        grid-template-columns: 1fr;
    }
    .cookie-row span {
        border-right: none !important;
        border-bottom: 1px solid rgba(22,38,96,0.06);
    }
    .cookie-row.header {
        display: none;
    }
    .cookie-row:not(.header) span:first-child {
        background: var(--powder-blue);
        font-weight: 700;
        color: var(--royal-blue);
    }
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .legal-section-block h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.career-section{
    text-align: center;
}

.career-headline{
    font-size: 32px;   /* increase or decrease size here */
    font-weight: bold;
}

.career-section a{
    font-size: 20px;
    color: #2a6df4;
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   Real-Time Validation Styles
   ============================================ */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
    animation: shake 0.4s 1;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #10B981;
    background-color: #F0FDF4;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.error-message {
    font-size: 13px;
    color: #EF4444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: fadeIn 0.3s ease;
}

.error-message::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free', 'Arial', sans-serif;
    font-weight: 900;
}