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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F6F8F6;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #3E8E41;
}

.btn-info {
    color: #4CAF50;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #4CAF50;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: #4CAF50;
    color: white;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.logo p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-desktop a:hover {
    color: #4CAF50;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    padding: 20px;
}

.nav-mobile li {
    margin-bottom: 15px;
}

.nav-mobile a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: #4CAF50;
}

/* Main Content */
.main-content {
    padding-top: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4CAF50 0%, #3E8E41 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Services Grid Section */
.services-grid {
    margin-bottom: 80px;
}

.services-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Instagram-style Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.grid-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.grid-item:hover .grid-image img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(62, 142, 65, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.grid-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.grid-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    background: white;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.cta-button {
    background: #3E8E41;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(62, 142, 65, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 142, 65, 0.5);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

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

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
    
    .hamburger {
        display: none;
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .services-grid h2 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .services-grid h2 {
        font-size: 2rem;
    }
    
    .why-choose-us {
        padding: 40px 0;
        margin: 0 15px 40px 15px;
    }
    
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .legal-links {
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fixed-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid {
        gap: 15px;
    }
    
    .grid-content h3 {
        font-size: 1.1rem;
    }
    
    .grid-content p {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #3E8E41 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section.alt {
    background: white;
}

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

.service-section.alt .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.service-text li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-text strong {
    color: #333;
    font-weight: 600;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.service-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Active Navigation Link */
.nav-desktop a.active {
    color: #4CAF50;
    font-weight: 600;
}

/* Responsive for Service Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-section {
        padding: 60px 0;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-section.alt .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .service-stats {
        justify-content: center;
    }
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Company Stats */
.company-stats {
    background: white;
    padding: 80px 0;
}

.company-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-card .stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.stat-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mission Section */
.our-mission {
    padding: 80px 0;
}

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

.mission-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.mission-item {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Team Section */
.our-team {
    background: white;
    padding: 80px 0;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.member-role {
    display: block;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.cert-item {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.cert-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cert-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .company-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* References Page Styles */
.satisfaction-stats {
    background: white;
    padding: 80px 0;
}

.satisfaction-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.satisfaction-item {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.satisfaction-item:hover {
    transform: translateY(-5px);
}

.satisfaction-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.satisfaction-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.satisfaction-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.author-role {
    display: block;
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 5px;
}

.company-name {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-rating .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Client Logos */
.client-logos {
    background: white;
    padding: 80px 0;
}

.client-logos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.logo-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.logo-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Success Metrics */
.success-metrics {
    padding: 80px 0;
}

.success-metrics h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.metric-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.metric-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.metric-stat {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 15px;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.metric-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for References Page */
@media (max-width: 768px) {
    .satisfaction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 80px 0;
}

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

.form-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.form-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Styles */
.form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Departments */
.departments {
    padding: 80px 0;
}

.departments h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.department-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.department-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.department-card p {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 10px;
}

.department-card span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* FAQ Section */
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #4CAF50;
    color: white;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form {
        padding: 30px 25px;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .departments {
        padding: 60px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 30px 20px;
    }
    
    .form {
        padding: 25px 20px;
    }
    
    .department-card {
        padding: 25px 20px;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #3E8E41 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.legal-text h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.legal-text p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
    color: #555;
}

.legal-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 10px;
}

.legal-footer a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
}

.legal-footer a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #4CAF50;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Cookie Controls */
.cookie-controls {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.manage-cookies-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.manage-cookies-btn:hover {
    background: #3E8E41;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-text {
        padding: 0 20px;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}
