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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Color Scheme Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 24px;
    color: var(--secondary-color);
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal-content {
    background: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.cookie-category input {
    margin-right: 10px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

.nav-phone {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--background-light);
}

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

.why-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.why-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--background-white);
}

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

.step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--background-light);
}

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

.review-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.review-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

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

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.form-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.btn-newsletter {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.newsletter-consent {
    text-align: left;
}

.newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
    cursor: pointer;
}

.newsletter-consent input {
    margin-top: 3px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 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-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Success Message */
.success-message {
    background: var(--gradient-accent);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Error Message */
.error-message {
    background: #fee2e2;
    color: var(--danger-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Page Specific Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.page-content {
    padding: 80px 0;
    background: var(--background-white);
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.content-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--background-light);
    padding: 15px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--text-light);
}

.breadcrumb-list li:last-child {
    color: var(--text-light);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 60px 0;
    background: var(--background-light);
}

.thank-you-content {
    background: var(--background-white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thank-you-message h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thank-you-details {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.what-happens-next {
    margin: 50px 0;
}

.what-happens-next h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.next-steps {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
    text-align: left;
}

.step-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-alternatives {
    margin: 40px 0;
    padding: 30px;
    background: var(--background-light);
    border-radius: 10px;
}

.contact-alternatives h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--background-white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.contact-option-text {
    display: flex;
    flex-direction: column;
}

.contact-option-text strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-option-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-proof {
    margin: 40px 0;
}

.social-proof h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
    text-align: left;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.emergency-contact {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #fee2e2, #fed7d7);
    border-radius: 10px;
    border-left: 4px solid var(--danger-color);
}

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

.emergency-header i {
    color: var(--danger-color);
    font-size: 1.2rem;
}

.emergency-header h4 {
    color: var(--text-dark);
    margin: 0;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--danger-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.emergency-phone:hover {
    text-decoration: underline;
}

/* Service Detail Styles */
.service-detail {
    background: var(--background-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.service-detail-icon {
    background: var(--gradient-primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-detail-text h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-detail-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-info {
    margin-top: 30px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
}

.pricing-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.price-item .size {
    color: var(--text-dark);
    font-weight: 500;
}

.price-item .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-types {
    margin-top: 30px;
}

.service-types h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.package-item {
    padding: 25px;
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.package-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.package-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Story and About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.story-text {
    background: var(--background-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.story-text h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-section {
    background: var(--background-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Missing CSS classes for about, blog, and contact pages */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    background: var(--gradient-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

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

.team-member {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-icon {
    background: var(--gradient-primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.team-member h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Blog page specific styles */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: var(--background-white);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.featured-article {
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    overflow: hidden;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.featured-text .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-text .article-category {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-text .article-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.featured-text h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.featured-image {
    text-align: center;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-card-image {
    position: relative;
    background: var(--background-light);
    padding: 40px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.7;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date,
.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-tags {
    display: flex;
    gap: 8px;
}

.tag {
    background: var(--background-light);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Contact page specific styles */
.contact-info-section {
    background: var(--background-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-info-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.contact-method-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-method-info p {
    margin-bottom: 5px;
}

.contact-method-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-method-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkbox-group {
    margin: 20px 0;
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group span {
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-submit,
.btn-reset {
    flex: 1;
    min-width: 200px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-reset {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-reset:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-note span {
    color: var(--text-light);
    line-height: 1.5;
}

/* Additional missing styles for about, blog, and contact pages */
.choose-us-content {
    background: var(--background-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
}

.advantage-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-text h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.advantage-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.certificate-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.certificate-icon {
    background: var(--gradient-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.certificate-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.cta-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

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

/* Blog newsletter and topics */
.blog-newsletter {
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin: 50px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-icon {
    background: var(--gradient-primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.newsletter-text {
    flex: 1;
    min-width: 250px;
}

.newsletter-text h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.topic-item {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.topic-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}

.topic-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.topic-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.archive-grid {
    background: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.archive-month h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.archive-month ul {
    list-style: none;
    padding: 0;
}

.archive-month ul li {
    margin-bottom: 8px;
}

.archive-month ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-month ul li a:hover {
    color: var(--primary-color);
}

/* Contact page additional styles */
.quick-contact {
    margin: 30px 0;
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
}

.quick-contact h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fee2e2, #fed7d7);
    border-radius: 10px;
    border-left: 4px solid var(--danger-color);
}

.emergency-icon {
    color: var(--danger-color);
    font-size: 1.5rem;
}

.emergency-info h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.emergency-phone {
    color: var(--danger-color);
    font-weight: 600;
    text-decoration: none;
}

.emergency-phone:hover {
    text-decoration: underline;
}

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

.area-group {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.area-group h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.area-group ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.area-note {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.area-note i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

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

.faq-item {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

/* Additional missing styles for forms and other components */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form {
    margin-bottom: 30px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Blog and Article Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.blog-header h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-header p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.article-card {
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-header {
    padding: 25px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-category,
.article-date,
.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-category i {
    color: var(--secondary-color);
}

.article-date i,
.read-time i {
    color: var(--primary-color);
}

.article-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-content {
    padding: 25px;
}

.article-excerpt {
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Article Layout for individual articles */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-content {
    background: var(--background-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

/* Article Sidebar Styles */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.table-of-contents {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.table-of-contents li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--background-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.related-article i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.related-article:hover i {
    color: white;
}

.related-article span {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.related-article:hover span {
    color: white;
}

.contact-widget {
    text-align: center;
}

.contact-widget p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-widget .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Responsive design for articles */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit,
    .btn-reset {
        min-width: auto;
    }
}

.article-intro {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.intro-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.article-share span {
    color: var(--text-light);
    font-weight: 500;
}

.share-btn,
.print-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover,
.print-btn:hover {
    transform: translateY(-2px);
}

/* Special content styles for articles */
.benefits-grid,
.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card,
.importance-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-icon,
.importance-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.benefit-card h3,
.importance-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-card p,
.importance-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Cleaner and Recipe Styles */
.natural-cleaners,
.office-zones,
.stain-guides {
    margin: 40px 0;
}

.cleaner-item,
.zone-category,
.stain-guide {
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
    overflow: hidden;
}

.cleaner-header,
.stain-header {
    background: var(--background-light);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cleaner-icon,
.stain-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cleaner-header h3,
.stain-header h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cleaner-type,
.difficulty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cleaner-content,
.stain-content {
    padding: 25px;
}

.zone-list {
    padding: 20px;
}

.zone-item {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.zone-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.zone-item ul {
    margin-top: 10px;
}

.zone-item ul li {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Priority styling */
.high-priority {
    border-left: 4px solid var(--danger-color);
}

.medium-priority {
    border-left: 4px solid var(--warning-color);
}

.low-priority {
    border-left: 4px solid var(--success-color);
}

/* Recipe styles */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.recipe-card {
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.recipe-header {
    background: var(--background-light);
    padding: 20px;
}

.recipe-header h3 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-ingredients,
.recipe-method {
    padding: 20px;
}

.recipe-ingredients h4,
.recipe-method h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.recipe-ingredients ul,
.recipe-method ol {
    color: var(--text-light);
}

/* Schedule and method styles */
.schedule-tabs,
.schedule-content {
    margin: 30px 0;
}

.daily-schedule,
.weekly-schedule {
    background: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.time-slot,
.day-schedule {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.time-slot .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.day-schedule h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tasks ul {
    color: var(--text-light);
}

/* Treatment methods and immediate actions */
.immediate-action,
.treatment-methods {
    margin: 20px 0;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.immediate-action h4,
.treatment-methods h4 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.method {
    margin: 15px 0;
    padding: 15px;
    background: var(--background-white);
    border-radius: 6px;
}

.method h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.method ul {
    color: var(--text-light);
}

/* Golden rules and stain categories */
.golden-rules,
.stain-categories {
    margin: 40px 0;
}

.rule-item,
.category-item {
    background: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.rule-icon,
.category-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-type {
    background: var(--background-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.category-content h4 {
    color: var(--text-dark);
    margin: 15px 0 10px;
}

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

/* Responsive design fixes */
@media (max-width: 768px) {
    .story-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .features-grid,
    .pricing-grid,
    .package-grid,
    .benefits-grid,
    .importance-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-options,
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--background-light);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.testimonial-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}
