/* CSS Variables */
:root {
    --primary-green: #0a5c36;
    --secondary-green: #1a7a4c;
    --accent-yellow: #ffd166;
    --light-green: rgba(10, 92, 54, 0.05);
    --white: #FFFFFF;
    --text-black: #191919;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-black);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 90px;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-green);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-weight: 600;
}

.btn-primary:hover {
    background: #ffc145;
    color: var(--primary-green);
}

/* =====================
   FIXED HEADER & NAVIGATION
   ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-text span {
    color: var(--secondary-green);
}

/* Navigation Menu */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.language-selector select {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    color: var(--text-black);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* =====================
   HERO SECTION WITH GOLDEN DESIGN
   ===================== */
.hero {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

/* Full-width banner background with golden gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-green) 0%, 
        var(--secondary-green) 50%, 
        #0a5c36 100%);
    z-index: -2;
}

/* Golden geometric pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Golden circles/dots pattern */
        radial-gradient(circle at 10% 20%, rgba(255, 209, 102, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 30% 40%, rgba(255, 209, 102, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(255, 209, 102, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 209, 102, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 50% 30%, rgba(255, 209, 102, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.15) 2px, transparent 2px),
        
        /* Subtle white patterns */
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.03) 3px, transparent 3px);
    
    background-size: 
        80px 80px,
        120px 120px,
        100px 100px,
        90px 90px,
        150px 150px,
        110px 110px,
        70px 70px,
        130px 130px;
    
    z-index: -1;
    animation: float 25s infinite linear alternate;
    opacity: 0.8;
}

/* Golden decorative elements at corners */
.hero .container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero .container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Golden accent lines */
.hero .hero-container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0.4;
}

.hero .hero-container::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    transform: rotate(-30deg);
    z-index: 0;
    opacity: 0.3;
}

@keyframes float {
    0% { 
        background-position: 
            0px 0px,
            0px 0px,
            0px 0px,
            0px 0px,
            0px 0px,
            0px 0px,
            0px 0px,
            0px 0px;
    }
    100% { 
        background-position: 
            -80px -80px,
            -120px -120px,
            -100px -100px,
            -90px -90px,
            -150px -150px,
            -110px -110px,
            -70px -70px,
            -130px -130px;
    }
}

/* Add golden shine effect to hero card */
.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 209, 102, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 0;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Hero container */
.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Left content */
.hero-content {
    flex: 1;
    color: white;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-content .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 209, 102, 0.3);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 209, 102, 0.4), 
        transparent);
    z-index: -1;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-content .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.hero-btns .btn {
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.hero-btns .btn-outline:hover {
    background: white;
    color: var(--primary-green);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right side - Illustration */
.hero-visual {
    flex: 1;
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
}

.hero-card-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 0;
    z-index: 1;
    position: relative;
}

.hero-card-subtitle {
    color: var(--secondary-green);
    font-size: 1rem;
    opacity: 0.8;
    z-index: 1;
    position: relative;
}

.services-list {
    margin-bottom: 25px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(10, 92, 54, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.service-item:hover {
    background: rgba(10, 92, 54, 0.1);
    transform: translateX(5px);
}

.service-item .check-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-item .service-text {
    color: #333;
    font-size: 0.95rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(10, 92, 54, 0.1), rgba(26, 122, 76, 0.1));
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.contact-person {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-green);
    font-weight: 500;
}

.phone-number i {
    color: var(--primary-green);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--light-green);
    padding: 15px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-green);
    flex: 1;
    min-width: 200px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-illustration {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 92, 54, 0.1) 0%, rgba(26, 122, 76, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-about {
    font-size: 8rem;
    color: var(--primary-green);
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: translateY(0);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 92, 54, 0.15);
}

.service-card:hover .service-icon {
    background: white;
    color: var(--primary-green);
    transform: scale(1.1);
}

.service-card:hover .service-title {
    color: white;
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li i {
    color: white;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.service-features li i {
    color: var(--primary-green);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

/* Education Section */
.education-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background-color: rgba(10, 92, 54, 0.1);
    border: none;
    border-radius: var(--radius);
    color: var(--primary-green);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.tab-btn:hover {
    background-color: rgba(10, 92, 54, 0.2);
}

.tab-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
}

.tab-content {
    display: none;
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.tab-content.active {
    display: block;
}

.timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    width: 2px;
    height: calc(100% + 5px);
    background-color: var(--light-gray);
    z-index: 0;
}

.timeline-date {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    margin-right: 20px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background-color: rgba(10, 92, 54, 0.05);
    padding: 20px;
    border-radius: var(--radius);
}

.table-container {
    overflow-x: auto;
    margin-top: 30px;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

th {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 500;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}

tr:nth-child(even) {
    background-color: rgba(10, 92, 54, 0.05);
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: rgba(10, 92, 54, 0.05);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
    transition: var(--transition);
    min-height: 44px;
}

.faq-question:hover {
    background-color: rgba(10, 92, 54, 0.1);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-answer.open {
    padding: 20px;
    max-height: 500px;
}

/* Google Reviews Section */
.google-reviews {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    color: var(--gray);
    margin: 5px 0 0 0;
    font-size: 0.95rem;
}

/* Elfsight Widget */
.elfsight-widget-container {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 400px;
}

/* =====================
   CASE STUDIES
   ===================== */
.case-studies {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-studies .section-title {
    color: white;
}

.case-studies .section-title::after {
    background: var(--accent-yellow);
}

.case-studies .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.case-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-yellow));
    z-index: 2;
}

.case-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, rgba(10, 92, 54, 0.1), rgba(26, 122, 76, 0.05));
}

.case-type {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.case-type.success {
    background: rgba(34, 197, 94, 0.15);
    color: #166534;
}

.case-type.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #92400e;
}

.case-type.info {
    background: rgba(59, 130, 246, 0.15);
    color: #1e40af;
}

.case-title {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-content {
    padding: 0 30px 30px;
    color: #444;
}

.case-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-results {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.case-results li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.case-results li i {
    color: var(--primary-green);
    font-size: 1rem;
}

.case-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.case-location, .case-size {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 92, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form {
    flex: 1;
    background-color: rgba(10, 92, 54, 0.05);
    padding: 40px;
    border-radius: var(--radius);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-green);
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
}

.map-placeholder {
    margin-top: 30px;
    background-color: rgba(10, 92, 54, 0.05);
    height: 200px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-direction: column;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.social-icon:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}