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

:root {
    --primary-color: #2d5016;
    --secondary-color: #ffd700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --green-accent: #4a7c2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-letter {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.phone a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title span {
    display: block;
}

.hero-divider {
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--white);
    margin: 20px auto;
}

.hero-divider-inline {
    display: inline-block;
    width: 2px;
    height: 40px;
    background-color: var(--white);
    margin: 0 15px;
    vertical-align: middle;
}

/* Hero Projects Page */
.hero-projects {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/engineer-workspace-desk-background-top-view-with-copy-space.jpg') center/cover;
}

.hero-contact {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover;
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 10px;
}

.section-title.green {
    color: var(--green-accent);
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 20px 15px;
    color: var(--text-dark);
}

.service-description {
    padding: 0 20px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Projects Preview Section */
.projects-preview {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.projects-preview p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 30px;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 30px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: var(--green-accent);
    transform: translateY(-2px);
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.clients-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo {
    padding: 20px 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: 120px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Projects Page */
.expertise {
    padding: 80px 0;
    background-color: var(--white);
}

.expertise-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.recent-projects {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.project-item.reverse {
    direction: rtl;
}

.project-item.reverse > * {
    direction: ltr;
}

.project-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.project-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.residential-projects {
    padding: 80px 0;
    background-color: var(--white);
}

.residential-projects p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.contact-info {
    padding-right: 40px;
}

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

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-value {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.contact-value.email {
    color: var(--green-accent);
}

.social-icons-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon-contact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon-contact:hover {
    background-color: var(--green-accent);
    transform: scale(1.1);
}

.contact-form-wrapper {
    padding-left: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-accent);
}

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

.btn-submit {
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #ffc700;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 20px;
}

.footer-column p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column strong {
    color: var(--text-dark);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1877f2;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s;
}

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

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content,
    .contact-grid,
    .project-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-item.reverse {
        direction: ltr;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-wrapper {
        padding-left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero {
        min-height: 400px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Landing Page Styles */
.landing-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('images/engineer-workspace-desk-background-top-view-with-copy-space.jpg') center/cover;
}

.landing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.landing-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.landing-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.landing-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.landing-benefits li {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
    padding-left: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
}

.btn-cta-primary:hover {
    background-color: #ffc700;
    transform: translateY(-2px);
}

.btn-cta-primary.large {
    padding: 20px 50px;
    font-size: 20px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
}

.btn-cta-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-cta-secondary.large {
    padding: 20px 50px;
    font-size: 20px;
}

.trust-indicator {
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
}

.landing-form-container {
    position: relative;
}

.form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.landing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s;
}

.landing-form select:focus {
    outline: none;
    border-color: var(--green-accent);
}

.btn-submit-landing {
    padding: 18px 40px;
    background-color: var(--green-accent);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
}

.btn-submit-landing:hover {
    background-color: #3a6a22;
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--green-accent);
    margin-bottom: 10px;
}

.proof-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Landing Services */
.landing-services {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card-landing {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-landing:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Landing Clients */
.landing-clients {
    padding: 80px 0;
    background-color: var(--white);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-center {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-info-cta {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info-cta p {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Responsive Landing */
@media (max-width: 968px) {
    .landing-hero-content {
        grid-template-columns: 1fr;
    }

    .landing-title {
        font-size: 36px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 28px;
    }

    .landing-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons-center {
        flex-direction: column;
    }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--green-accent);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.floating-call-btn svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.floating-call-btn span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(74, 124, 42, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(74, 124, 42, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(74, 124, 42, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-call-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-call-btn svg {
        width: 20px;
        height: 20px;
    }

    .floating-call-btn span {
        font-size: 9px;
    }
}

/* Services Page Styles */
.hero-services {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/engineer-workspace-desk-background-top-view-with-copy-space.jpg') center/cover;
    animation: heroFadeIn 1s ease-in;
}

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

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-top: 20px;
    font-weight: 400;
    animation: fadeInUp 1s ease-in 0.3s both;
}

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

/* Quick Navigation */
.services-quick-nav {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
    margin-top: -1px;
}

.quick-nav-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text-light);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.quick-nav-item:hover {
    background-color: var(--bg-light);
    color: var(--green-accent);
    transform: translateY(-2px);
}

.quick-nav-item.active {
    background-color: var(--green-accent);
    color: var(--white);
}

.quick-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--green-accent);
    border-radius: 50%;
}

.nav-number {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.6;
}

.quick-nav-item.active .nav-number {
    opacity: 1;
}

.nav-label {
    font-size: 16px;
}

.services-intro {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail {
    padding: 100px 0;
}

.service-detail.alt {
    background-color: var(--bg-light);
}

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

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-detail-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 42, 0.1) 0%, rgba(45, 80, 22, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-detail-image:hover .image-overlay {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(74, 124, 42, 0.4);
    animation: badgePulse 2s infinite;
}

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

.service-header {
    margin-bottom: 30px;
}

.service-category {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(74, 124, 42, 0.1);
    color: var(--green-accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 20px;
    margin-top: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(74, 124, 42, 0.05);
    border-left-color: var(--green-accent);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(74, 124, 42, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 42, 0.4);
}

.btn-service::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-service:hover::after {
    transform: translateX(5px);
}

.why-services {
    padding: 80px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 42, 0.1), transparent);
    transition: left 0.5s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: var(--green-accent);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.services-cta .cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.services-cta .cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Animation for service detail content */
.service-detail-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-detail-content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Services Page */
@media (max-width: 968px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .service-detail-image {
        height: 400px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-nav-content {
        gap: 20px;
    }
    
    .quick-nav-item {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-services {
        min-height: 300px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-detail-title {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-cta .cta-title {
        font-size: 32px;
    }
    
    .services-quick-nav {
        top: 0;
        padding: 15px 0;
    }
    
    .quick-nav-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-nav-item {
        width: 100%;
        justify-content: center;
    }
    
    .service-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

