:root {
    --primary-color: #1e73be;
    --secondary-color: #ffd700;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #aaa;
    --bg-color: #FFFAFA;
    --bg-light: #f9f9f9;
    --bg-dark: #222;
    --border-color: #ffd700;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

@keyframes fade-in {
    from { scale: .8; opacity: 0; }
    to { scale: 1; opacity: 1; }
}

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

html {
    scroll-behavior: smooth;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    contain: content;
}

.container:not(.avoid) {
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry;
}

.humburger {
    display: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    will-change: transform;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:first-of-type {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(30, 115, 190, 0.3);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-5px);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FAF9F6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header.sticky {
    padding: 0;
}

.main-header {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 2px 6px 20px -5px rgba(0, 0, 0, 0.3);
}

#header.sticky .main-header {
    padding: 10px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
    color: #1e73be;
    transition: all 0.3s ease;
}

#header.sticky .logo h1 {
    font-size: 24px;
}

.logo span {
    color: #ffd700;
}

.main-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #1e73be;
}

.menu-slide {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    display: none;
}

.menu-hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd700;
    transition: all 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.cta-button .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.hero-section {
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
    border-radius: 0 0 25px 25px;
    max-width: 1200px;
    display: flex;
    align-self: center;
    justify-self: center;
    width: 100%;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://longisland-officecleaning.com/wp-content/uploads/2023/11/Eco-Friendly-Office-Cleaning-Methods.png");
    background-repeat: no-repeat;
    filter: blur(2px) brightness(0.5);
    z-index: -1;
}

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

.hero-content .subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

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

.service-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 60px;
    color: #1e73be;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.zone-section {
    background-color: #e7f0f7;
}

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

.zone-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}

.map-placeholder i {
    font-size: 60px;
    color: #1e73be;
    margin-bottom: 20px;
}

.zone-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e73be;
}

.zone-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.zone-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.zone-list li i {
    color: #1e73be;
    margin-right: 10px;
    margin-top: 5px;
}

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

.engagement-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #1e73be;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}

.engagement-card:hover::before {
    height: 10px;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(30, 115, 190, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.engagement-card:hover .engagement-icon {
    background-color: #1e73be;
}

.engagement-icon i {
    font-size: 36px;
    color: #1e73be;
    transition: all 0.3s ease;
}

.engagement-card:hover .engagement-icon i {
    color: #fff;
}

.engagement-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.engagement-card p {
    color: #666;
    margin-bottom: 0;
}

.testimonials-section {
    background-color: #e7f0f7;
    position: relative;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 20px 10px;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 24px;
    color: rgba(30, 115, 190, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-author-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.testimonial-rating i {
    color: #ffd700;
    margin-left: 2px;
}

.testimonial-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 97%;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: #1e73be;
    color: #fff;
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #1e73be;
}

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

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    margin: 2rem;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: #1e73be;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: #ffd700;
    color: #333;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-card.featured .pricing-header h3 {
    color: #333;
}

.price {
    font-size: 18px;
    font-weight: 500;
}

.price span {
    font-size: 36px;
    font-weight: 700;
}

.pricing-features {
    background-color: #fff;
    padding: 30px;
}

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

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    margin-right: 10px;
    color: #1e73be;
}

.pricing-features ul li.not-included {
    color: #aaa;
}

.pricing-features ul li.not-included i {
    color: #ddd;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.faq-section {
    background-color: #e7f0f7;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: #333;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 115, 190, 0.1);
    border-radius: 50%;
    color: #1e73be;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: #1e73be;
    color: #fff;
}

.faq-answer {
    background-color: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: #1e73be;
    color: #fff;
    transform: translateY(-10px);
}

.info-item i {
    font-size: 36px;
    color: #1e73be;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    color: #fff;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.info-item:hover h3 {
    color: #fff;
}

.info-item p {
    color: #666;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.info-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group.required label:after {
    content: '*';
    color: #e74c3c;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1e73be;
    box-shadow: 0 0 10px rgba(30, 115, 190, 0.1);
    outline: none;
}

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

.form-group button {
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#footer {
    background-color: #222;
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
    width: 100%;
    height: 100%;
    background: url('../images/footer-pattern.png');
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-widget h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.footer-widget ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-list li i {
    color: #1e73be;
    margin-right: 10px;
    margin-top: 5px;
}

.footer-widget .social-links {
    display: flex;
    margin-top: 20px;
}

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

.footer-widget .social-links a:hover {
    background-color: #1e73be;
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.copyright {
    color: #aaa;
    font-size: 14px;
}

.footer-links a {
    color: #aaa;
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .testimonial-nav {
        position: static;
        top: auto;
        width: 100%;
        transform: none;
    }

    .humburger {
        display: block;
        border: none;
        outline: none;
        cursor: pointer;
        background: none;
    }

    .humburger .bar {
        display: block;
        border-radius: 8px;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--primary-color);
    }

    .humburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .humburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .humburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section::before {
        background-position: 65% 0;
    }

    .cta-button {
        margin-right: 50px;
    }

    .cta-button-mobile {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }

    .cta-button .btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    #header > div.main-header > div > div.cta-button {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-slide {
        position: absolute;
        width: 100%;
        height: 30svh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }

    .menu-slide > a {
        text-decoration: none;
        flex: 1;
        font-weight: 500;
        color: #333;
        font-size: 1.17rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-slide > a:active {
        background-color: #f5f5f5;
    }

    .hero-section::before {
        background-position: 55% 0;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid #f5f5f5;
    }

    .main-nav a:after {
        display: none;
    }

    .cta-button {
        margin-right: 50px;
    }

    .cta-button .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero-section::before {
        background-position: 65% 0;
    }

    .section-header p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 25px;
    }

    .main-nav li {
        margin: 0 10px;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .zone-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .contact-section {
        content-visibility: auto;
        contain-intrinsic-size: 500px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 10px;
    }

    body {
        padding-top: 60px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .main-header {
        padding: 10px 0;
    }

    .logo {
        font-size: 22px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid #f5f5f5;
    }

    .main-nav a:after {
        display: none;
    }

    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-grid,
    .engagements-grid,
    .pricing-grid,
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-icon {
        height: 180px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 8px;
    }

    .hero-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .contact-section {
        content-visibility: auto;
        contain-intrinsic-size: 400px;
    }

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

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-section::before {
        background-position: 65% 0;
    }

    .service-card h3,
    .engagement-card h3,
    .pricing-card h3 {
        font-size: 18px;
    }

    .service-card p,
    .engagement-card p {
        font-size: 14px;
    }

    .testimonial-content p {
        font-size: 15px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    .info-item {
        padding: 20px 15px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .contact-info span {
        display: block;
        margin-bottom: 5px;
    }

    .testimonial-rating {
        font-size: 10px;
    }
}

@media print {
    .back-to-top,
    .cta-button,
    .mobile-menu-toggle,
    .footer-widgets,
    .footer-bottom {
        display: none !important;
    }

    body {
        color: #000 !important;
    }

    a {
        text-decoration: underline !important;
        color: #000 !important;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
    }

    section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
}
