/* 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: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #e67e22;
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
}

.btn-outline:hover {
    background-color: #e67e22;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-form {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e67e22;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e67e22;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
}

.breadcrumb .current {
    color: #f39c12;
}

.separator {
    font-size: 0.7rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #d35400;
    transform: scale(1.1);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: #e67e22;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Statistics Section */
.stats {
    background-color: #2c3e50;
    color: white;
}

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

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

.stat-icon {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Reviews Section */
.reviews {
    background-color: #f8f9fa;
}

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

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.review-info h4 {
    margin-bottom: 0.25rem;
}

.review-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.review-rating {
    margin-left: auto;
    color: #f39c12;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background-color: #3498db;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #e67e22;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-links a:hover {
    color: #e67e22;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #e67e22;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255,255,255,0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

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

.cookie-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
}

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

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

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #e67e22;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card small {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.contact-form-section {
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-additional-info .info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.info-card h4 {
    text-align: center;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.info-card p {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.emergency-contact {
    background: #e74c3c;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact h4 {
    color: white;
    margin-bottom: 0.75rem;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.75rem 0;
}

.emergency-contact small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    background-color: #f8f9fa;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}

.map-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-directions {
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

.map-directions h4 {
    color: white;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.map-directions ul {
    list-style: none;
    padding: 0;
}

.map-directions li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.map-directions i {
    color: #f39c12;
    font-size: 1rem;
    width: 16px;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #e67e22;
    color: white;
}

.faq-question i {
    font-size: 1.2rem;
}

.faq-question h4 {
    margin: 0;
    color: white;
}

.faq-answer {
    padding: 1.5rem;
}

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

/* Thank You Page */
.thank-you {
    padding: 150px 0 80px;
    background-color: #f8f9fa;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.thank-you-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thank-you-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #e67e22;
    width: 20px;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.additional-info {
    padding: 60px 0;
}

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

.contact-reminder {
    background-color: #e67e22;
    color: white;
    padding: 60px 0;
}

.reminder-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.reminder-text h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding: 1rem 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.contact-phone:hover {
    background-color: rgba(255,255,255,0.2);
}

.contact-hours {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Page */
.services-overview {
    background-color: #f8f9fa;
}

.services-detailed-grid {
    display: grid;
    gap: 3rem;
}

.service-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem;
    align-items: start;
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detailed-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-detailed-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.service-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e67e22;
}

.additional-services {
    background-color: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-service {
    text-align: center;
    padding: 2rem;
    border: 2px solid #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.additional-service:hover {
    border-color: #e67e22;
    background-color: #fdf9f5;
}

.additional-service-icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.additional-service h4 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.additional-service p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* Fleet Section */
.fleet {
    background-color: #f8f9fa;
}

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

.fleet-vehicle {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-vehicle:hover {
    transform: translateY(-5px);
}

.vehicle-icon {
    width: 70px;
    height: 70px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.fleet-vehicle h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.fleet-vehicle p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-specs span {
    background-color: #f8f9fa;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vehicle-specs i {
    color: #e67e22;
}

/* Service Areas */
.service-areas {
    background-color: white;
}

.areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.area-column h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.area-column i {
    color: #e67e22;
}

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

.area-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    color: #7f8c8d;
}

.delivery-info {
    margin-top: 2rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.delivery-item i {
    color: #e67e22;
    font-size: 1.5rem;
}

.delivery-item h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.delivery-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.areas-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

/* Pricing Section */
.pricing {
    background-color: #f8f9fa;
}

.pricing-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-header,
.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
}

.pricing-header {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
}

.pricing-row {
    border-bottom: 1px solid #f8f9fa;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-col strong {
    color: #e67e22;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.pricing-note i {
    color: #f39c12;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: white;
    color: #e67e22;
}

.cta .btn-primary:hover {
    background-color: #f8f9fa;
    color: #d35400;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: #e67e22;
}

/* Blog Styles */
.blog-posts {
    background-color: #f8f9fa;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
}

.blog-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e67e22;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.8rem;
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder {
    color: white;
    font-size: 3rem;
    opacity: 0.7;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-title a {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #e67e22;
}

.blog-excerpt {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.blog-author,
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    color: #e67e22;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* Blog Categories */
.blog-categories {
    background-color: white;
}

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

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    background: white;
    border-color: #e67e22;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.category-card h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.category-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 150px 0 60px;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-category,
.article-date,
.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-excerpt {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.article-body {
    max-width: none;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0;
}

.article-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.article-text h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-text h2 i {
    color: #e67e22;
    font-size: 1.5rem;
}

.article-text h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.article-text h4 {
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
    color: #2c3e50;
}

.article-text .lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-text ul,
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Article Special Boxes */
.highlight-box,
.tip-box,
.warning-box,
.conclusion-box {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.highlight-box {
    background-color: #e8f5e8;
    border-left-color: #27ae60;
}

.highlight-box h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.tip-box {
    background-color: #fff3cd;
    border-left-color: #f39c12;
}

.tip-box h3 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.warning-box {
    background-color: #f8d7da;
    border-left-color: #e74c3c;
}

.warning-box h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.conclusion-box {
    background-color: #d1ecf1;
    border-left-color: #3498db;
}

.conclusion-box h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Article Grids and Lists */
.applications-grid,
.transport-types,
.temperature-effects,
.smart-materials,
.ai-applications,
.robots-grid,
.eco-materials,
.kpi-grid,
.future-trends,
.economic-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.application-item,
.transport-type,
.effect-item,
.material-item,
.ai-app,
.robot-type,
.eco-material,
.kpi-item,
.trend-item,
.benefit-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.application-item h4,
.transport-type h4,
.effect-item h4,
.material-item h4,
.ai-app h4,
.robot-type h4,
.eco-material h4,
.kpi-item h4,
.trend-item h4,
.benefit-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.application-item i,
.transport-type i,
.effect-item i,
.material-item i,
.ai-app i,
.robot-type i,
.eco-material i,
.kpi-item i,
.trend-item i,
.benefit-item i {
    color: #e67e22;
}

/* Article Tables */
.strength-table table,
.cookies-table table,
.cookie-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.strength-table th,
.strength-table td,
.cookies-table th,
.cookies-table td,
.cookie-details-table th,
.cookie-details-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f8f9fa;
}

.strength-table th,
.cookies-table th,
.cookie-details-table th {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
}

.strength-table tr:hover,
.cookies-table tr:hover,
.cookie-details-table tr:hover {
    background-color: #f8f9fa;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.sidebar-widget h3 i {
    color: #e67e22;
}

.author-bio {
    text-align: center;
}

.author-avatar-large {
    width: 70px;
    height: 70px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.author-bio h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.author-bio .author-title {
    color: #e67e22;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-bio p {
    font-size: 0.9rem;
}

/* Modern Contact Form Styles */
.modern-contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(230, 126, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22 0%, #d35400 100%);
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.card-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.ultra-compact-form .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.floating-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-input input {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.floating-input input:focus,
.floating-input input:not(:placeholder-shown) {
    border-color: #e67e22;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
}

.floating-input label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #95a5a6;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    padding: 0 0.5rem;
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: #e67e22;
    background: white;
    font-weight: 600;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e67e22 0%, #d35400 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.floating-input input:focus ~ .input-highlight {
    width: 100%;
}

.select-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.select-wrapper select {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    box-sizing: border-box;
}

.select-wrapper select:focus {
    border-color: #e67e22;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper select:focus + i {
    color: #e67e22;
    transform: translateY(-50%) rotate(180deg);
}

.floating-textarea {
    position: relative;
    margin-bottom: 2rem;
}

.floating-textarea textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    box-sizing: border-box;
}

.floating-textarea textarea:focus,
.floating-textarea textarea:not(:placeholder-shown) {
    border-color: #e67e22;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
}

.floating-textarea label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #95a5a6;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    padding: 0 0.5rem;
}

.floating-textarea textarea:focus + label,
.floating-textarea textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: #e67e22;
    background: white;
    font-weight: 600;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6c757d;
}

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

.checkbox-modern {
    width: 22px;
    height: 22px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.modern-checkbox input[type="checkbox"]:checked + .checkbox-modern {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-color: #e67e22;
    transform: scale(1.1);
}

.modern-checkbox input[type="checkbox"]:checked + .checkbox-modern::after {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 4px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
}

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

.submit-btn {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 8px 25px rgba(230, 126, 34, 0.3),
        0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(230, 126, 34, 0.4),
        0 5px 15px rgba(0,0,0,0.15);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.instant-contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem;
    border-radius: 20px;
    color: white;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.email-icon {
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
}

.location-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
}

.method-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #e67e22;
}

.method-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.method-info a:hover {
    color: #e67e22;
}

.method-info small,
.method-info span {
    color: #bdc3c7;
    font-size: 0.85rem;
    line-height: 1.3;
}

.service-highlights {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-highlights h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* FAQ Expanded Styles */
.faq-item.expanded .faq-answer {
    display: block;
    opacity: 1;
    max-height: none;
    padding-top: 1rem;
}

.faq-item.expanded .faq-question {
    border-bottom: 2px solid #e67e22;
    padding-bottom: 1rem;
}

.faq-item.expanded .faq-question h4 {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .ultra-compact-form .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .modern-checkbox {
        order: 1;
        justify-content: center;
    }
    
    .submit-btn {
        order: 2;
        justify-content: center;
        width: 100%;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Google Maps Integration Styles */
.google-map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 250px;
    backdrop-filter: blur(10px);
}

.map-overlay .map-info h4 {
    color: #e67e22;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-overlay .map-info p {
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    color: white;
}

.map-directions-btn i {
    font-size: 0.8rem;
}

/* Responsive Google Maps */
@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        max-width: none;
        margin-top: 1rem;
        background: white;
    }
    
    .google-map-container iframe {
        height: 300px;
    }
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #f8f9fa;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background-color: #e67e22;
    color: white;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.related-article:hover {
    background-color: #e67e22;
    color: white;
}

.related-article i {
    color: #e67e22;
    transition: color 0.3s ease;
}

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

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.legal-intro p:first-child {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    border-left: 4px solid #f39c12;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f8f9fa;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-section h2 i {
    color: #e67e22;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list > li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-list > li::before {
    content: '•';
    color: #e67e22;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.legal-numbered-list {
    counter-reset: legal-counter;
    padding-left: 0;
}

.legal-numbered-list > li {
    counter-increment: legal-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-numbered-list > li::before {
    content: counter(legal-counter) '.';
    color: #e67e22;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.company-details,
.contact-details,
.authority-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #e67e22;
}

.definitions-list dt {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.definitions-list dt i {
    color: #e67e22;
}

.definitions-list dd {
    margin-left: 0;
    margin-bottom: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.purpose-grid,
.rights-grid,
.costs-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item,
.right-item,
.cost-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.purpose-item h4,
.right-item h4,
.cost-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.purpose-item i,
.right-item i,
.cost-item i {
    color: #e67e22;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    margin-top: 0.5rem;
}

.external-link:hover {
    color: #2980b9;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
    text-align: center;
    color: #7f8c8d;
}

.company-signature {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

/* Cookie Policy Specific */
.cookie-benefits {
    margin: 2rem 0;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.benefits-list i {
    color: #27ae60;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cookie-type i {
    color: #e67e22;
}

.cookie-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.cookie-management {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.management-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.management-option h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.management-option i {
    color: #e67e22;
}

.browser-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.browser-list li {
    background: white;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #e67e22;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.consequence-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.consequence-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.consequence-item i {
    color: #e67e22;
}

.security-list,
.update-methods {
    list-style: none;
    padding: 0;
}

.security-list li,
.update-methods li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.security-list i,
.update-methods i {
    color: #e67e22;
    width: 20px;
}

.third-party-cookies {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.third-party-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.third-party-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.third-party-item i {
    color: #e67e22;
}

/* About Page Specific */
.company-story {
    background-color: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 3rem;
    top: 3rem;
    bottom: -2rem;
    width: 2px;
    background-color: #e67e22;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background-color: #e67e22;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.mission-values {
    background-color: white;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.team {
    background-color: #f8f9fa;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-avatar {
    width: 80px;
    height: 80px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.member-info h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.member-position {
    color: #e67e22;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.member-contact i {
    color: #e67e22;
}

.certificates {
    background-color: white;
}

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

.certificate-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background-color: white;
    border-color: #e67e22;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.certificate-icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.certificate-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.certificate-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .story-content,
    .contact-content,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content,
    .reminder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-nav li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pricing-col {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .review-card,
    .blog-card {
        margin: 0 0.5rem;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .cta,
    .footer {
        display: none;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        border: 1px solid #000;
        background: none;
        color: #000;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .review-card,
    .blog-card {
        border: 2px solid #000;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 3px;
    }
}

/* Focus indicators */
button:focus,
.btn:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #e67e22;
    outline-offset: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 3px;
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}
