/*
Theme Name: JC Moura Doncsecz Foryan - Advocacia & Sustentabilidade
Theme URI: https://www.jcforyan.com.br
Author: Jurídico Visual
Description: Tema moderno para o escritório de advocacia JC Moura Doncsecz Foryan, com foco em profissionalismo, sustentabilidade e credibilidade.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jcforyan
*/

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00362c;
    --secondary-color: #cca21a;
    --accent-color: #c0aa66;
    --white-color: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #3b3b3b;
    --dark-gray: #2c3e50;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white-color);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

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

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: transparent;
    color: #e9c656 !important;
    "";
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 36, 33, 0.3);
}

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

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

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(20, 36, 33, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.site-logo img {
    height: 50px;
    margin-right: 0.5rem;
}

.site-logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation a {
    position: relative;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1b5a1ee3 0%, rgb(34 62 40 / 78%) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
    font-weight: 500;
}

.hero-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: #e9c656 !important;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 36, 33, 0.1);
    animation: floatAnimation 8s infinite alternate;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(45deg);
    }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(20, 36, 33, 0.15);
    height: 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* Section Heading */
.section-heading {
    margin-bottom: 3rem;
}

.section-heading.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
    font-weight: 500;
}

.section-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-heading.center .section-subtitle {
    padding-left: 0;
    padding-bottom: 15px;
}

.section-heading.center .section-subtitle:before {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.expertise-section:before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(20, 36, 33, 0.1);
    z-index: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 36, 33, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background-image: url(image1.png);
    background-size: contain;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(20, 36, 33, 0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

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

.service-card {
    background-color: #ffffffc7;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 36, 33, 0.2);
}

.service-icon {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-divider {
    width: 100px;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.service-list {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 16px;
}

.service-subsection {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.service-subsection h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.service-subsection h4 i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.service-subsection:last-child {
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 7rem 0;
    background-color: var(--white-color);
    position: relative;
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.process-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
}

.process-item {
    position: relative;
    display: flex;
    margin-bottom: 4rem;
}

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

.process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(20, 36, 33, 0.3);
    z-index: 2;
}

.process-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(20, 36, 33, 0.1);
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 36, 33, 0.2);
    background-color: var(--white-color);
}

.process-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-content p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

/* Values Section */
.values-section {
    background-color: var(--secondary-color);
    padding: 7rem 0;
}

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

.value-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 36, 33, 0.2);
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 7rem 0;
    background-color: var(--white-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-card {
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

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

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
    padding: 4rem 0;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    font-size: 0.9rem;
}

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

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

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #22c15e;
    transform: scale(1.1);
    color: white;
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Google Reviews */
.google-reviews-section {
    background-color: var(--light-gray);
    padding: 7rem 0;
    position: relative;
}

.google-reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.google-review-slide {
    padding: 15px;
    box-sizing: border-box;
}

.google-review-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(20, 36, 33, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.google-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 36, 33, 0.2);
}

.review-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Slick Slider Navigation */
.slick-prev, 
.slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color) !important;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before, 
.slick-next:before {
    color: white !important;
    font-size: 20px !important;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

/* Blog styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8rem 0 3rem;
    text-align: center;
}

.page-title {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.post-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-meta i {
    margin-right: 0.3rem;
}

.page-content {
    padding: 5rem 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* Utility classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

[data-animation="fadeIn"] {
    opacity: 0;
    transition: opacity 1s ease;
}

[data-animation="fadeIn"].visible {
    opacity: 1;
}

[data-animation="fadeInUp"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

[data-animation="fadeInUp"].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="fadeInLeft"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease;
}

[data-animation="fadeInLeft"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animation="fadeInRight"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease;
}

[data-animation="fadeInRight"].visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slick-prev, 
    .slick-next {
        display: block !important;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-line {
        left: 30px;
    }
    
    .process-item,
    .process-item:nth-child(odd) {
        flex-direction: row;
        margin-left: 60px;
    }
    
    .process-number {
        left: -31px;
        transform: translateX(-50%);
    }
    
    .process-content {
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(20, 36, 33, 0.2);
        transform: translateY(-150%);
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateY(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .slick-prev, 
    .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 8rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        padding-left: 0;
        font-size: 1rem;
    }
    
    .hero-subtitle:before {
        display: none;
    }
    
    .section-heading h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
}