@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #E74C3C;
    --secondary-color: #2C3E50;
    --accent-color: #F39C12;
    --light-bg: #F8F9F9;
    --white-color: #FFFFFF;
    --dark-text: #34495E;
    --light-text: #ABB2B9;
    --font-primary: 'Poppins', sans-serif;
    --font-headings: 'Playfair Display', serif;
    --container-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white-color);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    z-index: 10;
}

.main-header.scrolled .logo {
    color: var(--secondary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin: 0 20px;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 10;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.4s ease;
}

.white-bg {
    background-color: #fff;
}

.zest-hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    color: var(--secondary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.core-offerings {
    background-color: var(--light-bg);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.offering-item {
    padding: 30px;
}

.offering-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offering-item h3 {
    margin-bottom: 10px;
}

.featured-gallery {
    position: relative;
}

.swiper.featured-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide.gallery-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-zestara {
    background-color: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.why-content ul {
    list-style: none;
    padding-left: 0;
}

.why-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-content li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.testimonials-carousel {
    background: linear-gradient(to right, var(--secondary-color), #34495e);
    color: var(--white-color);
}

.testimonials-carousel h2 {
    color: var(--white-color);
    text-align: center;
}

.testimonial-slide {
    padding: 40px;
    text-align: center;
}

.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.testimonial-author {
    font-weight: 700;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    border-left: 3px solid var(--accent-color);
    padding-bottom: 50px;
}

.timeline-item:last-child {
    border-left: 3px solid transparent;
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    left: -21px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 700;
}

.regional-expertise {
    background-color: var(--light-bg);
    text-align: center;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.city-badge {
    padding: 10px 20px;
    background-color: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.final-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    text-align: center;
    color: var(--white-color);
}

.final-cta h2 {
    color: var(--white-color);
}

.final-cta .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.final-cta .btn:hover {
    background: transparent;
    color: var(--white-color);
}

.page-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 150px 0 100px;
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-vision-grid i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-section {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--accent-color);
}

.team-member h4 {
    color: var(--primary-color);
}

.stats-counter {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/stats.png') no-repeat fixed center center/cover;
    text-align: center;
    color: var(--white-color);
}

.stats-counter h2 {
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-headings);
}

.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-block:nth-child(even) .service-image {
    order: 2;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.custom-solution-cta {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 60px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    background: var(--white-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.contact-form-wrapper {
    padding-right: 30px;
}

.zest-form .form-group {
    margin-bottom: 20px;
}

.zest-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.zest-form input,
.zest-form select,
.zest-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.contact-info-wrapper {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    margin: 0 auto;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.simple-page-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.policy-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.wave-footer {
    position: relative;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 150px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    color: var(--light-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--light-text);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light-text);
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.footer-bottom {
    border-top: 1px solid #4e5d6c;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
}

.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 1;
}

.first {
    background-image: url('../images/slide1.png')
}

.second {
    background-image: url('../images/slide2.png')
}

.third {
    background-image: url('../images/slide3.png')
}

.forth {
    background-image: url('../images/slide4.png')
}

.fifth {
    background-image: url('../images/slide5.png')
}

.light {
    background-color: var(--light-bg);
}

.spacer {
    height: 100px;
}

.contact-header {
    padding-bottom: 180px;
}

.contact-main {
    padding: 0;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: fit-content;
    margin-right: 0.5rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    margin: 0;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-btn {
    margin-top: 20px;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .why-grid,
    .service-detail-block {
        grid-template-columns: 1fr;
    }

    .service-detail-block:nth-child(even) .service-image {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 20px 0;
    }

    .main-nav.nav-active {
        transform: translateX(0);
    }

    .burger-menu {
        display: block;
    }

    .burger-menu.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.toggle .line2 {
        opacity: 0;
    }

    .burger-menu.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}