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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8a2e;
    --accent-color: #7fb347;
    --dark-bg: #0f1419;
    --dark-bg-2: #1a2329;
    --dark-bg-3: #252e35;
    --text-dark: #e8e8e8;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: rgba(26, 35, 41, 0.8);
    --card-bg-hover: rgba(37, 46, 53, 0.95);
    --gradient-1: linear-gradient(135deg, #2d5016 0%, #5a8a2e 100%);
    --gradient-2: linear-gradient(135deg, #5a8a2e 0%, #7fb347 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2329 50%, #0f1419 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 60px rgba(45, 80, 22, 0.4);
    --glow: 0 0 20px rgba(127, 179, 71, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.95);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.logo-text:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: brightness(1.5);
    text-shadow: 0 0 20px rgba(127, 179, 71, 0.5);
}

@keyframes glow-text {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
    box-shadow: var(--glow);
}

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

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    text-shadow: 0 0 10px rgba(127, 179, 71, 0.5);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.85) 0%, rgba(45, 80, 22, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.08) rotate(1deg);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-8px) scale(1.08) rotate(-1deg);
    border-color: var(--text-light);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 10px; }
    50% { opacity: 0.3; top: 30px; }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    }
}

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

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

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

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.left-align {
    text-align: left;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    color: var(--text-light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    transition: left 0.4s ease;
    z-index: -1;
}

.section-label:hover::before {
    left: 0;
}

.section-label:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 179, 71, 0.4);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: expandWidth 1s ease-out;
    box-shadow: var(--glow);
    transition: all 0.4s ease;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-light);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-header:hover .title-underline {
    width: 120px;
    height: 5px;
    box-shadow: 0 0 20px rgba(127, 179, 71, 0.6);
}

.section-header:hover .title-underline::after {
    width: 100%;
}

.title-underline.left {
    margin: 0 0 1rem 0;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Split Layout */
.about {
    background: var(--dark-bg-2);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.about-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(127, 179, 71, 0.2);
}

.floating-icon {
    cursor: pointer;
}

.floating-icon:hover {
    transform: scale(1.3) rotate(360deg) !important;
    box-shadow: 0 0 40px rgba(127, 179, 71, 0.6);
    border-color: var(--accent-color);
    background: var(--card-bg-hover);
    z-index: 10;
}

.floating-icon:hover i {
    animation: pulse 0.5s ease-in-out 2;
    color: var(--text-light);
}

.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

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

.about-text {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.mission-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-box, .approach-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(127, 179, 71, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-box::before, .approach-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 179, 71, 0.1), transparent);
    transition: left 0.5s;
}

.mission-box:hover::before, .approach-box:hover::before {
    left: 100%;
}

.mission-box:hover, .approach-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.mission-box:hover .mission-icon,
.approach-box:hover .approach-item i {
    animation: pulse 0.5s ease-in-out 3;
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.animated-icon {
    animation: pulse 2s ease-in-out infinite;
}

.mission-box h3, .approach-box h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.approach-item {
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.approach-item:hover {
    color: var(--text-light);
    transform: translateX(15px) scale(1.05);
    background: rgba(127, 179, 71, 0.1);
    padding-left: 1.2rem;
}

.approach-item:hover i {
    transform: scale(1.3) rotate(360deg);
}

.approach-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 80, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(90, 138, 46, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

/* Services Section - Timeline Style */
.services {
    background: var(--dark-bg);
    position: relative;
}

.services-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    z-index: 0;
}

.service-item {
    position: relative;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out both;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-item:hover {
    z-index: 10;
}

.service-item-left {
    text-align: right;
    padding-right: 55%;
}

.service-item-right {
    text-align: left;
    padding-left: 55%;
}

.service-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    z-index: 3;
    box-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    pointer-events: none;
}

.service-item:hover .service-number {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 25px rgba(127, 179, 71, 0.6);
    background: var(--gradient-2);
}

.service-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(127, 179, 71, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 2;
}


.service-item:hover .service-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(127, 179, 71, 0.3);
    border-color: var(--accent-color);
}

.service-item:hover .service-content h3 {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.service-item:hover .service-content p {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-item:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(127, 179, 71, 0.5);
    background: var(--gradient-2);
}

.service-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}


.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(127, 179, 71, 0.1);
    border: 1px solid rgba(127, 179, 71, 0.3);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: inline-block;
}


.service-item:hover .feature-tag {
    background: rgba(127, 179, 71, 0.2);
    transform: translateY(-3px);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.feature-tag:hover {
    background: rgba(127, 179, 71, 0.4);
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 12px 30px rgba(127, 179, 71, 0.6);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 80, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(90, 138, 46, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: pulse 10s ease-in-out infinite;
}

/* Clients Section - Carousel */
.clients {
    background: var(--gradient-dark);
    position: relative;
    padding: 5rem 0;
}

.clients .section-title {
    color: var(--text-light);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    gap: 2rem;
    animation: scroll-clients 30s linear infinite;
    will-change: transform;
}

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

.client-item {
    background: var(--card-bg);
    padding: 2rem 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 179, 71, 0.2);
    transition: all 0.4s ease;
    white-space: nowrap;
    min-width: 300px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out both;
}

.client-item {
    position: relative;
    overflow: hidden;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.2;
    transition: left 0.5s ease;
    z-index: 0;
}

.client-item:hover::before {
    left: 0;
}

.client-item:hover {
    background: var(--card-bg-hover);
    transform: translateY(-15px) scale(1.08) rotate(1deg);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
    color: var(--text-light);
}

.client-item:hover::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-color);
    animation: slideInRight 0.3s ease-out;
}

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

.clients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, var(--gradient-dark) 0%, transparent 10%, transparent 90%, var(--gradient-dark) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Pricing Section - Horizontal Cards */
.pricing {
    background: var(--dark-bg-2);
    position: relative;
}

.pricing-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(127, 179, 71, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    animation: slideInLeft 0.8s ease-out both;
    cursor: pointer;
    z-index: 1;
}

.pricing-item:hover {
    z-index: 10;
}

.pricing-item:hover::after {
    width: 600px;
    height: 600px;
}

.pricing-item:nth-child(even) {
    animation: slideInRight 0.8s ease-out both;
    flex-direction: row-reverse;
}


.pricing-item:hover {
    transform: translateX(10px) translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(127, 179, 71, 0.3);
}

.pricing-item:nth-child(even):hover {
    transform: translateX(-10px) translateY(-5px);
}

.pricing-item:hover .pricing-info h3 {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.pricing-item:hover .price-range {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.pricing-item:hover .pricing-info p {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.featured-pricing {
    border: 2px solid var(--accent-color);
    background: var(--card-bg-hover);
    box-shadow: var(--glow);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.featured-pricing:hover .popular-badge {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(127, 179, 71, 0.6);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pricing-item:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(127, 179, 71, 0.5);
    background: var(--gradient-2);
}

.pricing-info {
    flex: 1;
}

.pricing-info h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.price-range {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.pricing-info p {
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(45, 80, 22, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 12s ease-in-out infinite;
}

/* Why Choose Section - Showcase Style */
.why-choose {
    background: var(--dark-bg);
    position: relative;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-showcase-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(127, 179, 71, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.feature-showcase-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 179, 71, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-showcase-item:hover::after {
    opacity: 1;
}

.feature-showcase-item:hover {
    transform: translateY(-20px) scale(1.08) rotate(2deg);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.feature-showcase-item:hover .feature-content h3 {
    color: var(--accent-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.feature-showcase-item:hover .feature-content p {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.feature-showcase-item:hover .feature-icon-large {
    transform: rotate(360deg) scale(1.3);
    box-shadow: 0 0 40px rgba(127, 179, 71, 0.7);
    background: var(--gradient-2);
}

.feature-showcase-item:hover .feature-icon-large i {
    animation: pulse 0.5s ease-in-out 2;
}

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

.feature-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--dark-bg-2);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(127, 179, 71, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(127, 179, 71, 0.3);
    border-color: var(--accent-color);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-large {
    transform: scale(1.1);
    background: var(--gradient-2);
    box-shadow: 0 0 25px rgba(127, 179, 71, 0.5);
}

/* Special styling for X icon in contact card */
.x-icon-wrapper {
    background: var(--gradient-2) !important;
    border: 3px solid var(--accent-color) !important;
    box-shadow: 0 0 20px rgba(127, 179, 71, 0.4) !important;
    position: relative;
}

.x-icon-text {
    color: var(--text-light) !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1 !important;
    letter-spacing: -2px;
}

.social-card:hover .x-icon-wrapper {
    background: var(--gradient-1) !important;
    box-shadow: 0 0 35px rgba(127, 179, 71, 0.9) !important;
    border-color: var(--accent-color) !important;
    transform: scale(1.15) !important;
}

.social-card:hover .x-icon-text {
    transform: scale(1.2) !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9) !important;
}

.x-icon-text-small {
    color: var(--accent-color) !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    line-height: 1;
}

.social-link-x:hover .x-icon-text-small {
    color: var(--text-light) !important;
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.contact-link:hover {
    color: var(--text-light);
    transform: scale(1.05);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-link-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
    background: var(--card-bg);
    border: 2px solid rgba(127, 179, 71, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.social-link-x i.fab.fa-x-twitter {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.social-link-x span {
    font-size: 1rem;
}

.social-link-x:hover {
    background: var(--gradient-2);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 179, 71, 0.4);
}

.social-link-x:hover i.fab.fa-x-twitter {
    color: var(--text-light);
}

/* About Photo */
.about-photo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(127, 179, 71, 0.3);
}

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

.about-photo:hover .about-image {
    transform: scale(1.1);
}

.photo-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.3) 0%, rgba(90, 138, 46, 0.2) 100%);
    pointer-events: none;
}

/* Services Photo */
.services-photo-section {
    margin: 3rem 0;
}

.services-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    transition: all 0.3s ease;
}

.services-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(127, 179, 71, 0.3);
}

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

.services-photo:hover .services-image {
    transform: scale(1.1);
}

.services-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
}

.services-photo-text {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-photo-text i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Clients Photo */
.clients-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.clients-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    transition: all 0.3s ease;
}

.clients-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(127, 179, 71, 0.3);
}

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

.clients-photo:hover .clients-image {
    transform: scale(1.1);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 80, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(90, 138, 46, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: pulse 10s ease-in-out infinite;
    pointer-events: none;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(127, 179, 71, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    margin-bottom: 0.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px) scale(1.05);
    text-shadow: 0 0 10px rgba(127, 179, 71, 0.5);
}

.tagline {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(127, 179, 71, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */

/* Large Tablets */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-wrapper {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        height: 400px;
        order: -1;
    }
    
    .about-photo {
        height: 100%;
    }
    
    .service-item-left, .service-item-right {
        padding-left: 50%;
        padding-right: 0;
        text-align: left;
    }
    
    .services-timeline::before {
        left: 25px;
    }
    
    .service-number {
        left: 25px;
    }
    
    .services-photo {
        height: 350px;
    }
    
    .clients-content {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .pricing-horizontal {
        gap: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 900px) {
    .about-wrapper {
        gap: 2rem;
    }
    
    .services-photo {
        height: 300px;
    }
    
    .clients-content {
        grid-template-columns: 1fr;
    }
    
    .clients-photo {
        order: -1;
        height: 280px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .why-choose-photo {
        order: -1;
        height: 300px;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-line {
        display: block;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 0.9rem 2rem;
    }

    /* Sections */
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        height: 300px;
        order: -1;
    }
    
    .about-text-content {
        padding: 0;
    }
    
    .mission-approach {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Services Section */
    .services-photo {
        height: 250px;
        margin: 2rem 0;
    }
    
    .service-item {
        margin-bottom: 3rem;
    }
    
    .service-item-left, .service-item-right {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .services-timeline::before {
        display: none;
    }
    
    .service-number {
        display: none;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Clients Section */
    .clients-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clients-photo {
        height: 250px;
        order: -1;
    }
    
    .clients-carousel {
        padding: 1.5rem 0;
    }
    
    .client-item {
        min-width: 250px;
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
    
    /* Pricing Section */
    .pricing-horizontal {
        gap: 1.5rem;
    }
    
    .pricing-item {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .pricing-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .pricing-item:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
    
    .pricing-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .price-range {
        font-size: 1.5rem;
    }
    
    /* Why Choose Section */
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-photo {
        height: 300px;
        order: -1;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-showcase-item {
        padding: 2rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .social-link-x {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }

    /* About Section */
    .about-visual {
        height: 250px;
    }
    
    .about-text-content {
        padding: 0;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .mission-box, .approach-box {
        padding: 1.5rem;
    }
    
    .mission-icon {
        font-size: 2.5rem;
    }

    /* Services Section */
    .services-photo {
        height: 200px;
    }
    
    .services-photo-text {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-features-inline {
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Clients Section */
    .clients-photo {
        height: 200px;
    }
    
    .client-item {
        min-width: 200px;
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Pricing Section */
    .pricing-item {
        padding: 1.5rem;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .pricing-info h3 {
        font-size: 1.2rem;
    }
    
    .price-range {
        font-size: 1.3rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        right: 15px;
    }

    /* Why Choose Section */
    .why-choose-photo {
        height: 250px;
    }
    
    .feature-showcase-item {
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .social-link-x {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .social-link-x i.fab.fa-x-twitter {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .pricing-item {
        padding: 1.2rem;
    }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

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

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glow effects */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(127, 179, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(127, 179, 71, 0.6);
    }
}

/* Shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Scale animation */
@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-item,
    .pricing-item,
    .feature-showcase-item,
    .contact-item {
        opacity: 0;
    }
}

/* Additional smooth hover transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth transitions for all interactive elements */
.card-hover,
.service-content,
.pricing-item,
.feature-showcase-item,
.contact-info-item,
.client-item,
.mission-box,
.approach-box {
    will-change: transform;
}

/* Glow effect on hover for various elements */
.service-content:hover,
.pricing-item:hover,
.feature-showcase-item:hover,
.contact-main-card:hover {
    filter: brightness(1.05);
}

/* Smooth text transitions */
h1, h2, h3, h4, h5, h6,
p, span, a, li {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    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::after {
    width: 400px;
    height: 400px;
}
