/* Areaco Recycling - Main Stylesheet */

/* Custom Color Variables */
:root {
    --eco-primary: #2d7d32;
    --eco-primary-dark: #1b5e20;
    --eco-secondary: #00695c;
    --eco-secondary-dark: #004d40;
    --eco-accent: #ff8f00;
    --eco-accent-dark: #e65100;
    --eco-success: #388e3c;
    --eco-warning: #f57c00;
    --eco-error: #d32f2f;
    --eco-light: #f1f8e9;
    --eco-dark: #263238;
    --eco-gray: #546e7a;
    --eco-gray-light: #90a4ae;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 76px;
}

/* Navigation Styles */
.eco-nav {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
}

.recycle-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
    animation: rotate 3s linear infinite;
}

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

.brand-text {
    color: white;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--eco-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
    background-image: url('/photo_repo/hero-95e7d6a503d8c3452e2386b31c8074c8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 125, 50, 0.85) 0%, rgba(0, 105, 92, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
    padding: 6rem 0 4rem;
    color: white;
    margin-top: -76px;
    padding-top: 8rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Button Styles */
.btn-eco-primary {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-primary-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-eco-primary:hover {
    background: linear-gradient(135deg, var(--eco-primary-dark) 0%, var(--eco-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 125, 50, 0.3);
    color: white;
}

.btn-eco-secondary {
    background: linear-gradient(135deg, var(--eco-secondary) 0%, var(--eco-secondary-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-eco-secondary:hover {
    background: linear-gradient(135deg, var(--eco-secondary-dark) 0%, var(--eco-secondary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 92, 0.3);
    color: white;
}

.btn-eco-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-eco-outline:hover {
    background: white;
    color: var(--eco-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eco-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--eco-gray);
    margin-bottom: 2rem;
}

.bg-light-eco {
    background-color: var(--eco-light) !important;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

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

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-price {
    color: var(--eco-accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-pricing {
    background: linear-gradient(135deg, var(--eco-accent) 0%, var(--eco-accent-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--eco-success);
    font-weight: bold;
}

/* Company Info */
.company-content {
    padding: 2rem 0;
}

.company-stats {
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eco-primary);
}

.stat-label {
    color: var(--eco-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Advantage Cards */
.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--eco-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info strong {
    color: var(--eco-primary);
    display: block;
}

.author-info span {
    color: var(--eco-gray);
    font-size: 0.9rem;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-item {
    text-align: center;
    padding: 1rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text strong {
    color: var(--eco-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: var(--eco-secondary);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--eco-primary);
}

/* Contact Method Cards */
.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--eco-primary);
}

.contact-method-card h3 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--eco-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-link:hover {
    color: var(--eco-primary);
}

.contact-hours {
    color: var(--eco-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Forms */
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--eco-primary);
    box-shadow: 0 0 0 0.2rem rgba(45, 125, 50, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--eco-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--eco-primary);
    box-shadow: 0 0 0 0.2rem rgba(45, 125, 50, 0.25);
}

/* Map */
.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-responsive {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.map-info-item {
    padding: 1rem;
    background: var(--eco-light);
    border-radius: 10px;
    height: 100%;
}

.map-info-item strong {
    color: var(--eco-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--eco-light);
}

.team-info h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--eco-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--eco-gray);
    font-size: 0.9rem;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Achievement Items */
.achievement-item {
    padding: 1rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--eco-primary);
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--eco-gray);
    font-weight: 500;
}

.recognition-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--eco-primary);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem 0;
}

.step-content {
    padding: 2rem;
}

.step-number {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-features ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.step-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--eco-accent);
    font-weight: bold;
}

.step-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Technology Cards */
.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-card h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Standards Content */
.standards-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.standard-item h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.standard-item ul {
    list-style: none;
    padding: 0;
}

.standard-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.standard-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--eco-success);
    font-weight: bold;
}

/* FAQ Styles */
.faq-category-title {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--eco-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--eco-primary);
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--eco-light);
    color: var(--eco-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--eco-gray);
    line-height: 1.7;
}

/* Blog Styles */
.blog-article {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-article:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--eco-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 1rem;
}

.blog-date,
.blog-author {
    color: var(--eco-gray);
    font-size: 0.9rem;
    margin-right: 1rem;
}

.blog-title {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-excerpt {
    color: var(--eco-gray);
    margin-bottom: 1.5rem;
}

.blog-read-more {
    transition: all 0.3s ease;
}

.blog-full-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--eco-light);
}

.full-content-wrapper h3,
.full-content-wrapper h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.full-content-wrapper p {
    color: var(--eco-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Newsletter */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Resource Cards */
.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--eco-primary);
}

.resource-card h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--eco-success);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.next-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.next-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--eco-primary);
}

.next-step h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.company-highlight h2 {
    color: var(--eco-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--eco-gray);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--eco-success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Legal Document Styles */
.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.legal-document h2 {
    color: var(--eco-primary);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--eco-light);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: var(--eco-secondary);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document p {
    color: var(--eco-gray);
    margin-bottom: 1.5rem;
}

.legal-document ul {
    color: var(--eco-gray);
    margin-bottom: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--eco-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--eco-secondary);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--eco-primary);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-category h4 {
    color: var(--eco-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--eco-light);
}

.pricing-category ul {
    list-style: none;
    padding: 0;
}

.pricing-category li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--eco-gray);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-category li::before {
    content: '$';
    position: absolute;
    left: 0;
    color: var(--eco-accent);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
    color: white;
    padding: 4rem 0;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--eco-dark) !important;
    color: white;
}

.footer-brand .navbar-brand {
    margin-bottom: 1rem;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

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

.footer-contact a:hover {
    color: white;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--eco-dark) 0%, var(--eco-primary) 100%);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--eco-primary);
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--eco-gray);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--eco-primary);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    margin-bottom: 1rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--eco-primary);
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    margin-right: 1rem;
    transition: background 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider {
    background: var(--eco-primary);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-slider::before {
    transform: translateX(26px);
}

.cookie-slider.essential {
    background: var(--eco-primary);
    opacity: 0.7;
}

.cookie-slider.essential::before {
    transform: translateX(26px);
}

.cookie-category p {
    color: var(--eco-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-footer {
        justify-content: center;
    }
    
    .cookie-modal-footer .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-card,
    .legal-document,
    .standards-content {
        padding: 2rem;
    }
    
    .cookie-modal-content {
        width: 95%;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.rounded-lg {
    border-radius: 15px !important;
}

.text-eco-primary {
    color: var(--eco-primary) !important;
}

.text-eco-secondary {
    color: var(--eco-secondary) !important;
}

.bg-eco-primary {
    background-color: var(--eco-primary) !important;
}

.bg-eco-secondary {
    background-color: var(--eco-secondary) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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