/* 
* TechCompany Kft. Website Styles
* Modern, minimalistic design for elevator company
*/

/* Base & Reset */
:root {
    --primary-color: #6da63f;
    --secondary-color: #568631;
    --accent-color: #ff9900;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
    --gradient-start: #6da63f;
    --gradient-middle: #8fc269;
    --gradient-end: #ffa347;
}

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

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

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

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

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

/* Header/Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

.logo img {
    height: 75px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-menu a.active, 
.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.05), rgba(255, 163, 71, 0.05));
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Company Intro Section */
.company-intro {
    background-color: white;
}

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

.feature-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Services Preview */
.services-preview {
    background-color: var(--bg-light);
}

.services-slider {
    overflow: hidden;
}

.service-slide {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image {
    flex: 1;
    max-width: 50%;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 25px;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    position: relative;
    margin-bottom: 25px;
    text-align: center;
}

.testimonial-text i {
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 24px;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #2a3b30;
    color: white;
    padding: 80px 0 20px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

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

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

.footer-links a:hover,
.footer-social a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
}

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

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

.social-icons a:hover {
    background-color: var(--primary-color);
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container,
    .service-slide {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .service-image,
    .service-content {
        flex: 1;
        max-width: 100%;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 80%;
        height: calc(100vh - 80px);
        padding: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 50px;
    }
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(109, 166, 63, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-check input {
    width: 18px;
    height: 18px;
}

.form-check label {
    margin-bottom: 0;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

/* Page-specific styles */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.1), rgba(255, 163, 71, 0.1));
    margin-bottom: 60px;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Company Story */
.company-story {
    padding: 0 0 60px 0;
}

.story-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.story-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-intro {
    flex: 2;
    min-width: 300px;
}

.story-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.story-intro h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.story-intro p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .story-header {
        flex-direction: column;
    }
    
    .story-image {
        max-width: 100%;
    }
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    top: 0;
    bottom: 0;
    left: 120px;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    padding-left: 145px;
    margin-bottom: 10px;
    min-height: 50px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid white;
    top: 15px;
    left: 120px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.timeline-date {
    position: absolute;
    width: 80px;
    text-align: right;
    left: 0;
    top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.timeline-content h3 {
    margin: 0 0 3px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-item::after {
        left: 30px;
    }
    
    .timeline-date {
        width: auto;
        position: relative;
        left: auto;
        top: auto;
        text-align: left;
        margin-bottom: 5px;
        background-color: var(--primary-color);
        color: white;
        display: inline-block;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.8rem;
    }
    
    .timeline-content::before {
        display: none;
    }
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    margin-bottom: 15px;
}

.service-card-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* References Page */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.reference-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.reference-image {
    height: 200px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.reference-content {
    padding: 25px;
}

.reference-content h3 {
    margin-bottom: 10px;
}

.reference-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.reference-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.reference-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-card a {
    display: block;
    margin-top: 10px;
}

.map-container {
    height: 400px;
    margin-top: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    padding: 80px 0;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

/* Package Featured */
.package-card.featured {
    position: relative;
    transform: translateY(-10px) scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 3px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

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

/* Department Cards */
.department-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px 25px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.department-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.department-card p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.department-card p i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 5px;
}

.department-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.department-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px !important;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(109, 166, 63, 0.2);
}

@media (max-width: 992px) {
    .departments-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .departments-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .department-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Services */
.service-features li i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* FAQ Section */
.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* Statistics */
.references-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.05), rgba(255, 163, 71, 0.05));
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .references-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Form validation */
.form-control.error {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.1);
}

.error-message {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Form input loading state */
.form-control.loading {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjNmRhNjNmIiBkPSJNMTIgMHYyYTEwIDEwIDAgMSAxIDAgMjAgMTAgMTAgMCAwIDEtMTAtMTBoMmE4IDggMCAxIDAgMTYgMCA4IDggMCAwIDAtOC04eiI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgMTIgMTIiIHRvPSIzNjAgMTIgMTIiIGR1cj0iMC44cyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3N2Zz4=');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

/* Form success state */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-success-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.form-success h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.05), rgba(255, 163, 71, 0.05));
    padding: 80px 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.05), rgba(255, 163, 71, 0.05));
    padding: 80px 0;
}

/* References Section */
.featured-projects {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(109, 166, 63, 0.1));
    padding: 80px 0;
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.decorative-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

.decorative-square {
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

/* Quote Request */
.quote-request {
    position: relative;
    overflow: hidden;
}

.quote-request::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.05;
    z-index: -1;
}

.quote-request::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.05;
    z-index: -1;
}

/* Departments Section */
.departments-section {
    background: linear-gradient(135deg, rgba(109, 166, 63, 0.05), rgba(255, 163, 71, 0.05));
    padding: 80px 0;
}

.departments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.department-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px 25px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.department-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.department-card p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.department-card p i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 5px;
}

.department-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 992px) {
    .departments-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .departments-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .department-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Contact Info Cards */
.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(109, 166, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Department Icon */
.department-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Year Badge */
.year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 10px;
    vertical-align: middle;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(109, 166, 63, 0.1));
    padding: 70px 0;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    border-radius: 4px 0 0 4px;
}

.about-cols {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.about-text {
    flex: 3;
    padding-left: 20px;
}

.about-image {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.about-quote {
    margin: 30px 0 0;
    padding: 20px;
    background-color: rgba(109, 166, 63, 0.05);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.about-quote p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.about-quote p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px 20px;
    }
    
    .about-cols {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-text {
        padding-left: 10px;
    }
    
    .about-quote {
        padding: 15px;
    }
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-logo {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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