:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 15px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 8px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(231,76,60,0.75));
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-service,
.btn-rent,
.btn-submit,
.btn-newsletter,
.btn-modal {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.features-section,
.services-overview,
.testimonials-section,
.team-section,
.values-section,
.stats-section,
.rental-process,
.faq-section,
.newsletter-section,
.blog-section,
.equipment-catalog,
.contact-section {
    padding: 80px 0;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.features-grid,
.services-grid,
.testimonials-grid,
.team-grid,
.values-grid,
.stats-grid,
.equipment-grid,
.blog-grid,
.faq-grid,
.rental-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card,
.service-item,
.testimonial-card,
.team-member,
.value-card,
.stat-item,
.equipment-item,
.blog-card,
.faq-item,
.info-block {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-item:hover,
.testimonial-card:hover,
.team-member:hover,
.equipment-item:hover,
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon,
.value-card i,
.stat-item i,
.info-block i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3,
.service-item h3,
.testimonial-card h4,
.team-member h3,
.value-card h3,
.stat-item h3,
.equipment-info h3,
.blog-card h3,
.faq-item h3,
.info-block h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 22px;
}

.service-item img,
.team-member img,
.equipment-item img,
.blog-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-link,
.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.service-link:hover,
.read-more:hover {
    color: var(--secondary-color);
}

.rating {
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-card span {
    color: var(--text-light);
    font-size: 14px;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 400px;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn-cta:hover {
    background-color: var(--background-light);
    transform: translateY(-3px);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--secondary-color);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.company-reg {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cookie-text a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background-color: var(--success-color);
    color: var(--white);
}

.cookie-btn.accept-all:hover {
    background-color: #229954;
}

.cookie-btn.accept-essential {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-btn.accept-essential:hover {
    background-color: #2980b9;
}

.cookie-btn.decline {
    background-color: var(--text-light);
    color: var(--white);
}

.cookie-btn.decline:hover {
    background-color: #5a6268;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
}

.page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,62,80,0.7);
    z-index: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-intro,
.equipment-intro,
.blog-intro {
    padding: 60px 0;
}

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

.intro-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 25px;
}

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

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-center h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 0;
}

.services-detailed.alt-bg {
    background-color: var(--background-light);
}

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

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 36px;
}

.service-detail-content h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--success-color);
    font-size: 18px;
}

.pricing-info {
    background-color: var(--background-light);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.btn-service {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 20px;
}

.btn-service:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}

.process-step i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.catalog-filters {
    text-align: center;
    margin-bottom: 50px;
}

.catalog-filters h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.equipment-info {
    padding: 20px;
}

.equipment-category {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.equipment-description {
    color: var(--text-light);
    margin: 15px 0;
    line-height: 1.6;
}

.equipment-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
    margin: 15px 0;
}

.btn-rent {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
    text-align: center;
}

.btn-rent:hover {
    background-color: #2980b9;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-card p {
    color: var(--text-light);
    margin: 15px 0;
    flex-grow: 1;
}

.newsletter-section {
    background-color: var(--background-light);
}

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

.newsletter-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
}

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

.btn-newsletter:hover {
    background-color: #c0392b;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-side h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-form-side h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

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

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    font-size: 18px;
}

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

.map-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    text-align: center;
}

.modal-body i {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-body h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-modal {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 20px;
}

.btn-modal:hover {
    background-color: #c0392b;
}

.post-article {
    background-color: var(--white);
}

.post-header {
    padding: 40px 0;
    background-color: var(--background-light);
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.back-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--secondary-color);
}

.post-category {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-title {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta-info {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 15px;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.post-content {
    padding: 60px 0;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 500;
}

.post-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 35px 0 20px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 17px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.post-content li {
    margin-bottom: 10px;
}

.post-footer-cta {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.post-footer-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .stats-grid,
    .equipment-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .intro-content,
    .service-detail,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .post-title {
        font-size: 32px;
    }

    .post-meta-info {
        flex-wrap: wrap;
        gap: 15px;
    }

    .section-heading {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}
