/* Cata-Gaz Modern Landing Page Styles */

:root {
    --brand-green: #156a2f;
    --brand-green-dark: #0f4d21;
    --brand-green-light: #1a8040;
    --brand-yellow: #f0c419;
    --brand-yellow-dark: #d4a913;
    --text-gray: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body improvements */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body improvements */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

/* === TYPOGRAPHY - UPPERCASE HEADINGS === */
h1, h2, h3,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.hero-title,
.service-card .card-title {
    text-transform: uppercase;
}

/* === BUTTONS - UPPERCASE TEXT === */
.btn,
button,
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-outline-secondary,
.btn-light,
.btn-outline-light,
.btn-phone,
.btn-submit,
.navbar-brand,
.badge {
    text-transform: uppercase;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 106, 47, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(21, 106, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(21, 106, 47, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(21, 106, 47, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(21, 106, 47, 0.8), 0 0 30px rgba(21, 106, 47, 0.6);
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-bounce-in {
    animation: bounce-in 0.6s ease-out forwards;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Initial state for animated elements */
.animate-fade-in-up,
.animate-fade-in,
.animate-slide-in-left,
.animate-slide-in-right,
.animate-bounce-in {
    opacity: 0;
}

/* === INTERACTIVE ELEMENTS === */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-xl) !important;
}

.section-icon {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 0.3em;
    transition: transform 0.3s ease;
}

.interactive-card:hover .section-icon,
h1:hover .section-icon,
h2:hover .section-icon {
    transform: scale(1.2) rotate(5deg);
    animation: pulse 1s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse-ring 2s infinite;
}

.animate-on-hover {
    transition: all 0.3s ease;
}

.animate-on-hover:hover {
    background: rgba(21, 106, 47, 0.05);
    transform: translateX(8px);
    border-radius: 8px;
}

.hover-scale {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(21, 106, 47, 0.2);
}

.map-card {
    overflow: hidden;
}

.map-card:hover {
    animation: glow 1.5s ease-in-out;
}

/* Initial state for animated elements */
.animate-fade-in-up,
.animate-fade-in,
.animate-slide-in-left,
.animate-slide-in-right {
    opacity: 0;
}


/* === HEADER === */
.header-main {
    background: #ffffff;
    border-bottom: 1px solid rgba(21, 106, 47, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-main.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(21, 106, 47, 0.2);
}

/* === NAVBAR === */
.navbar {
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

/* Brand / Logo */
.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-green);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: -2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Items */
.navbar-nav {
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item-separator {
    display: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.5rem !important;
    color: var(--text-gray);
    text-transform: uppercase;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-yellow));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-green);
    background: transparent;
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--brand-green);
    font-weight: 700;
    background: transparent;
}

.nav-link.active::before {
    width: 70%;
}

/* Phone Button */
.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(21, 106, 47, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-phone::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-phone:hover::before {
    width: 300px;
    height: 300px;
}

.phone-icon {
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(21, 106, 47, 0.4);
}

.phone-text {
    font-family: monospace;
    letter-spacing: 0.5px;
}

.btn-phone-mobile {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--brand-green);
    border-radius: 10px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-toggler:hover {
    background: var(--brand-green);
    transform: scale(1.05);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.25);
}

.navbar-toggler-icon {
    transition: filter 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid rgba(21, 106, 47, 0.1);
        gap: 0.5rem;
    }

    .nav-item-separator {
        display: none;
    }

    .nav-link {
        border-radius: 10px;
        margin: 0;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }
}

/* Desktop Navbar */
@media (min-width: 992px) {
    .navbar-nav {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

/* === HERO SECTION - MODERN 2025 === */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Gradient Overlay */
.hero-modern {
    background: linear-gradient(135deg, #0f4d21, #156a2f, #1a8040, #156a2f);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(240, 196, 25, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 6s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Modern Badge with Glassmorphism */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.hero-badge-modern i {
    color: var(--brand-yellow);
    animation: rotateStar 4s linear infinite;
}

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

/* Word-by-Word Falling Animation */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    animation: wordFall 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes wordFall {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotateX(-90deg);
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: translateY(10px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-subtitle-modern {
    font-size: 1.35rem;
    font-weight: 300;
    opacity: 0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: subtitleFadeIn 1s ease-out 1s forwards;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Modern Buttons with Glow Effect */
.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonsSlideUp 1s ease-out 1.5s forwards;
}

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

.btn-modern {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

.btn-modern:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.btn-modern:hover .btn-glow {
    left: 100%;
}

.btn-modern-outline {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .hero-badge-modern {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .btn-modern, .btn-modern-outline {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* === FOCUS STATES === */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.form-check-input:focus {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 2px;
}

/* === BUTTONS === */
.btn {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(21, 106, 47, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 106, 47, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-light {
    background: white;
    color: var(--brand-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-light:hover,
.btn-light:focus {
    background: var(--bg-gray);
    color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 106, 47, 0.3);
}

.btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: white;
    border-color: white;
    color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Button icons */
.btn .btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}
/* Button icons */
.btn .btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

/* === BRAND COLORS === */
.text-brand-green {
    color: var(--brand-green) !important;
}

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

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

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

/* === SECTIONS === */
section {
    position: relative;
    padding: 5rem 0;
}

section.bg-light {
    background: var(--bg-gray);
}

/* === CARDS === */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: white;
}

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

.card-img-top {
    transition: transform 0.4s ease;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--brand-green-dark);
}

/* Service cards specific */
.service-card {
    height: 100%;
    cursor: pointer;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* === FEATURE BOXES === */
.feature-box {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* === BENEFITS SECTION - MODERN 2025 === */
.benefits-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(30deg, var(--brand-green) 12%, transparent 12.5%, transparent 87%, var(--brand-green) 87.5%, var(--brand-green)),
        linear-gradient(150deg, var(--brand-green) 12%, transparent 12.5%, transparent 87%, var(--brand-green) 87.5%, var(--brand-green)),
        linear-gradient(30deg, var(--brand-green) 12%, transparent 12.5%, transparent 87%, var(--brand-green) 87.5%, var(--brand-green)),
        linear-gradient(150deg, var(--brand-green) 12%, transparent 12.5%, transparent 87%, var(--brand-green) 87.5%, var(--brand-green));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(26, 128, 64, 0.1));
    border: 2px solid rgba(21, 106, 47, 0.2);
    border-radius: 50px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge i {
    color: var(--brand-yellow);
    animation: pulse 2s ease-in-out infinite;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 106, 47, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card-modern.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-yellow), var(--brand-green-light));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.benefit-card-modern:hover::before {
    opacity: 1;
}

.benefit-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(21, 106, 47, 0.2);
    border-color: rgba(21, 106, 47, 0.3);
}

.benefit-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(26, 128, 64, 0.1));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card-modern:hover .benefit-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
}

.benefit-icon-modern {
    font-size: 2.5rem;
    color: var(--icon-color, var(--brand-green));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card-modern:hover .benefit-icon-modern {
    color: white;
    transform: scale(1.2);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--icon-color, var(--brand-green)) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.benefit-card-modern:hover .icon-glow {
    opacity: 0.6;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.benefit-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-align: center;
    transition: color 0.3s ease;
}

.benefit-card-modern:hover .benefit-title-modern {
    color: var(--brand-green);
}

.benefit-desc-modern {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.benefit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.benefit-card-modern:hover .benefit-shine {
    left: 100%;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.75rem;
    }

    .benefit-card-modern {
        padding: 2rem 1.5rem;
    }

    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .benefit-icon-modern {
        font-size: 2rem;
    }
}

/* === TESTIMONIALS === */
.testimonial-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: scale(1.02);
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--brand-yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* === GOOGLE-STYLE REVIEWS === */
.google-rating-stars {
    color: #fbbc04;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.google-review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.google-review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-icon {
    color: var(--brand-green);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--brand-green);
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    color: white;
}

.carousel-indicators {
    margin-bottom: -2rem;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--brand-green);
    opacity: 0.3;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: -10px;
    }

    .carousel-control-next {
        right: -10px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* === CONTACT PAGE === */
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: var(--bg-gray);
    transform: translateX(5px);
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* === NAVBAR IMPROVEMENTS === */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    padding: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-toggler {
    border: 2px solid var(--brand-green);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--brand-green);
    transform: scale(1.1);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.25);
}

/* Mobile phone button */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        background: transparent;
    }

    .btn.btn-primary.btn-sm {
        padding: 0.5rem 0.75rem;
        animation: pulse 2s ease-in-out infinite;
    }

    .navbar-brand small {
        font-size: 0.65rem !important;
    }
}

/* Desktop navbar spacing */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 1rem;
        background: transparent;
    }
}
.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--brand-yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* === CTA SECTIONS === */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

/* === STICKY CALL BUTTON === */
.sticky-call-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: white;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-call-button:hover,
.sticky-call-button:focus {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    color: white;
    padding: 18px 20px;
}

.sticky-call-button .btn-icon {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .sticky-call-button {
        display: none;
    }
}

/* === WHATSAPP STICKY BUTTON === */
.whatsapp-sticky-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-sticky-button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-icon {
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-text {
    font-size: 0;
    font-weight: 700;
    margin-top: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.whatsapp-sticky-button:hover .whatsapp-text {
    font-size: 0.9rem;
    margin-top: 4px;
}

.whatsapp-sticky-button:hover .whatsapp-icon {
    font-size: 28px;
}

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

/* Adjust for mobile with sticky call button */
@media (max-width: 767px) {
    .whatsapp-sticky-button {
        bottom: 150px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        font-size: 28px;
    }
}

/* === NAVIGATION === */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}


/* === FOOTER === */
.footer-main {
    background: linear-gradient(135deg, #0a3a1a 0%, var(--brand-green-dark) 100%);
    position: relative;
    margin-bottom: 0;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-main a {
    transition: all 0.3s ease;
    text-decoration: underline !important;
}

.footer-main a:hover,
.footer-main .hover-link:hover {
    transform: translateX(5px);
    color: var(--brand-yellow) !important;
    text-decoration: underline !important;
}

.footer-main .hover-link {
    display: inline-block;
}

.footer-main .text-center a {
    display: inline;
    transform: none;
    text-decoration: underline !important;
}

.footer-main .text-center a:hover {
    transform: none;
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .footer-main {
        margin-bottom: 70px;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        margin-bottom: 70px;
    }

    body {
        padding-bottom: 70px;
    }
}

/* === CONTENT AREA === */
.content-area h2 {
    color: var(--brand-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.content-area h3 {
    color: var(--brand-green);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-area ul,
.content-area ol {
    margin-bottom: 1.5rem;
}

.content-area li {
    margin-bottom: 0.5rem;
}

.content-area p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* === FORMS === */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.15);
    transform: translateY(-1px);
}

.form-check-input {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.15);
}

/* === BREADCRUMBS === */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--brand-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--brand-green-dark);
}

/* === ACCORDION === */
.accordion-button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(21, 106, 47, 0.08);
    color: var(--brand-green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.15);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

/* === ALERTS === */
.alert {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.4s ease-out;
}

/* === UTILITIES === */
.text-muted {
    color: var(--text-light) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* === PRINT === */
@media print {
    .sticky-call-button,
    .navbar,
    .btn,
    .footer-main {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

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

img.loaded {
    opacity: 1;
}

/* === SCROLL REVEAL === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === ABOUT PAGE STYLES === */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-green);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Why Choose Cards */
.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-green);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.bg-success { background: linear-gradient(135deg, #28a745, #20c997) !important; }
.bg-primary { background: linear-gradient(135deg, #007bff, #0056b3) !important; }
.bg-warning { background: linear-gradient(135deg, #ffc107, #ff9800) !important; }
.bg-danger { background: linear-gradient(135deg, #dc3545, #c82333) !important; }
.bg-info { background: linear-gradient(135deg, #17a2b8, #138496) !important; }
.bg-secondary { background: linear-gradient(135deg, #6c757d, #545b62) !important; }

/* Certification Badges */
.certification-badge {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brand-green);
    height: 100%;
}

.certification-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #f8f9fa, white);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--brand-green), var(--brand-green-light));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 45px;
    height: 45px;
    background: white;
    border: 4px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    animation: pulse 1s ease-in-out;
}

/* Badge Icon */
.badge-icon {
    display: inline-block;
    margin-right: 0.3rem;
    animation: pulse 2s ease-in-out infinite;
}

/* CTA Features */
.cta-features {
    opacity: 0.95;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
        left: 5px;
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === SERVICES PAGE STYLES === */

/* Service Stats */
.service-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.service-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Service Card Large */
.service-card-large {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 2rem;
    align-items: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
}

.service-card-large:hover {
    border-color: var(--brand-green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-large:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-content {
    flex: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: rgba(21, 106, 47, 0.1);
    color: var(--brand-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Benefit Card */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* === SERVICE DETAIL PAGE === */

/* Service Synonyms */
.synonym-badge {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Service CTA Card */
.service-cta-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--brand-green);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 2px solid #e9ecef;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: var(--brand-green);
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: white;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.08), rgba(21, 106, 47, 0.05));
    color: var(--brand-green);
}

.faq-icon,
.answer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.answer-icon {
    background: var(--brand-yellow);
    color: var(--text-gray);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Sidebar */
.service-sidebar .sticky-sidebar-card {
    position: sticky;
    top: 100px;
}

.other-service-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.other-service-item:last-child {
    border-bottom: none;
}

.other-service-item:hover {
    padding-left: 0.5rem;
    background: rgba(21, 106, 47, 0.05);
}

.service-bullet {
    color: var(--brand-green);
    font-weight: bold;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.other-service-item:hover .service-bullet {
    transform: translateX(5px);
}

/* Service Content */
.service-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .service-card-large {
        flex-direction: column;
        padding: 1.5rem;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-sidebar .sticky-sidebar-card {
        position: static;
    }
}

/* === CONTACT PAGE STYLES === */

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.contact-form-card:hover {
    border-color: var(--brand-green);
    box-shadow: var(--shadow-xl);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    padding: 2rem;
    text-align: center;
}

.card-body-custom {
    padding: 2.5rem;
}

/* Form Group Animated */
.form-group-animated {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-group-animated .form-label {
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.label-icon {
    font-size: 1.2rem;
}

.form-group-animated .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-animated .form-control:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(21, 106, 47, 0.15);
    transform: translateY(-2px);
}

.form-group-animated .form-control:focus + .form-label {
    color: var(--brand-green);
}

/* Form Check Animated */
.form-check-animated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-check-animated:hover {
    background: #e9ecef;
}

.form-check-animated .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0;
    cursor: pointer;
}

.form-check-animated .form-check-label {
    cursor: pointer;
    margin-left: 0.5rem;
    line-height: 1.6;
}

/* Character Counter */
#charCount {
    font-weight: 700;
    color: var(--brand-green);
    transition: color 0.3s ease;
}

#charCount.valid {
    color: #28a745;
}

/* Submit Button */
.btn-submit {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 106, 47, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Alert Icons */
.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-green);
}

.info-icon-wrapper {
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.15) rotate(10deg);
}

.contact-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--brand-green-dark);
    transform: scale(1.05);
}

.schedule-info {
    font-size: 0.95rem;
}

/* Why Contact Section */
.why-contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.feature-badge {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .card-header-custom,
    .card-body-custom {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .contact-info-main-card {
        margin-top: 2rem;
    }
}

/* === CONTACT INFO MAIN CARD (RIGHT SIDE) === */
.contact-info-main-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-main-card:hover {
    border-color: var(--brand-green);
    box-shadow: var(--shadow-xl);
}

.card-header-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.75rem;
    border-bottom: 2px solid #e9ecef;
}

.card-body-info {
    padding: 1.5rem;
}

/* Info Subcards */
.info-subcard {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-subcard:hover {
    background: white;
    border-color: var(--brand-green);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.info-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-subcard:hover .info-icon-small {
    transform: scale(1.1) rotate(5deg);
}

.contact-link-small {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-green);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-link-small:hover {
    color: var(--brand-green-dark);
    transform: translateX(3px);
}

.badge-time {
    font-size: 0.9rem;
}

/* Schedule Info Detailed */
.schedule-info-detailed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #dee2e6;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: var(--text-gray);
}

.schedule-time {
    color: var(--brand-green);
    font-weight: 700;
    font-family: monospace;
    font-size: 1rem;
}

/* Quick Action CTA */
.quick-action-cta {
    animation: pulse 2s ease-in-out infinite;
}

.quick-action-cta .alert {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
}

.quick-action-cta .alert-link {
    color: var(--brand-green);
    text-decoration: none;
    border-bottom: 2px solid var(--brand-green);
}

.quick-action-cta .alert-link:hover {
    color: var(--brand-green-dark);
    border-bottom-color: var(--brand-green-dark);
}

