/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: rgb(65 165 221);
    --secondary: #8ee6f4;
    --accent: rgb(233 53 116);
    --background: #F8F8F8;
    --text: #000000;
    --gray: #ededed;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: #fff;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #0052CC;
}

.btn-store {
    background: #000;
    color: #fff;
    gap: 12px;
    padding: 12px 24px;
}

.btn-store:hover {
    background: #333;
}

.btn-store img {
    width: 24px;
    height: 24px;
}

/* Header */
.header {
    padding: 24px 0;
    background: #fff;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.nav-link.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo.quote {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.logo img {
    height: 50px;
    width: auto;
}

.btn-main {
    background: var(--accent);
    color: #000000;
    padding: 20px 30px;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 6px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
    transition: all 0.2s ease;
    width: auto;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-main:hover {
    background: #000;
    color: #fff;
    box-shadow: none;
    transform: translate(4px, 4px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-content.center {
    text-align: center;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text);
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.hero-illustration {
    position: relative;
}

.hero-illustration img {
    width: 120%;
    max-width: none;
    transform: translateX(-10%);
}

/* Features Section */
.features {
    padding: 40px 0;
    /* background: var(--background); */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background-color: var(--gray);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #000;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: var(--primary);
}

.feature-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
}

.feature-card p {
    margin-bottom: 24px;
    color: #000;
    margin-bottom: 0;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0052CC;
}

.feature-card i {
    color: var(--text);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 40px 0;
    background: var(--background);
}

.services-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 64px;
}

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

.service-card {
    background-color: var(--gray);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #000;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--primary);
}

.service-card i {
    color: var(--text);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
}

.service-card p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

/* Why Monster Section */
.why-monster {
    padding: 1rem 0;
}

.why-content-wrapper {
    min-width: 80%;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000;
    display: flex;
    padding: 2rem 4rem;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--primary);

    .why-image-wrapper {
        max-width: 50%;

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

.why-list {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #000;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #000;
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.testimonial-card {
    background: var(--background);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.user-avatar {
    width: 96px;
    height: 96px;
    margin-bottom: 32px;
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text);
}

.user-name {
    font-weight: 400;
    color: var(--primary);
    font-size: 18px;
}

/* Award Section */
.award {
    padding: 4rem 0;
    text-align: center;
    background: var(--secondary);
}

.award h2 {
    color: #000;
    margin-bottom: 32px;
}

.award-illustration {
    width: 400px;
    margin-bottom: 48px;
}

.award .btn-primary {
    background: #000;
    padding: 20px 40px;
    font-size: 18px;
}

.award .btn-primary:hover {
    background: #333;
}

/* Features Grid Section */
.features-grid {
    padding: 120px 0;
    background: var(--background);
}

.features-grid .sub-intro {
    text-align: center;
    margin-bottom: 64px;
}

.features-grid h2 {
    text-align: center;
    margin-bottom: 64px;
}

.features-grid .h2-features {
    margin-bottom: 20px;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature-item {
    background: var(--gray);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #000;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item i {
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-item p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    margin-top: 48px;
}

.join-cta .btn-primary {
    margin-bottom: 32px;
    padding: 16px 48px;
    font-size: 18px;
}

.join-cta .cta-text {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
}

.join-cta .app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.cta-illustration {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 64px;
}

.cta h2 {
    margin-bottom: 24px;
}

.cta p {
    max-width: 580px;
    margin: 0 auto 40px;
    font-size: 20px;
}

.cta .app-buttons {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
}

.footer.quote {
    padding: 10px;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 80px;
}

.footer-grid.quote {
    display: none;
    grid-template-columns: none;
    gap: none;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 24px;
    font-size: 16px;
}

.footer-logo {
    width: 200px;
    filter: brightness(0) invert(1);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 700;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    .hero-illustration img {
        width: 110%;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .app-buttons {
        justify-content: center;
    }

    .hero-illustration img {
        width: 100%;
        transform: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 67px;
    }

    .hero {
        padding: 30px 0 5px 0;
    }

    .quote {
        padding-top: 0;
    }

    .container {
        max-width: 540px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 5px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .logo {
        position: static;
        transform: none;
    }

    .navbar {
        padding: 0 20px;
    }

    .btn-download {
        display: none;
    }

    .feature-grid,
    .testimonial-grid,
    .features-cards,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-list li {
        font-size: 20px;
    }

    .award-illustration {
        width: 280px;
    }

    .footer {
        padding: 64px 0;
    }

    .footer-grid {
        gap: 48px;
        text-align: center;
    }

    .why-content-wrapper {
        min-width: 90%;
        padding: 1.5rem;
        flex-direction: column;
        gap: 2rem;

        .why-image-wrapper {
            max-width: 100%;
        }
    }

    .why-list {
        max-width: 100%;
    }

    .why-list li {
        font-size: 18px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .why-list li:last-child {
        margin-bottom: 0;
    }

    .check-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--background);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gray);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #000;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text);
}

.price-subtitle {
    font-size: 18px;
    color: var(--text);
    margin-top: 16px;
}

.pricing-features {
    margin-bottom: 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 18px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 20px;
}

.stores-cta {
    margin-top: 32px;
}

.cta-text {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
}

.stores-cta .app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stores-cta .btn-store {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stores-cta .btn-store:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.stores-cta .btn-store i {
    font-size: 24px;
}

.stores-cta .btn-store span {
    text-align: left;
    line-height: 1.2;
}

.stores-cta .btn-store strong {
    font-size: 16px;
}

/* Requirements Section */

/* Quote Form Section */
.quote-form {
    padding: 80px 0;
    background: var(--background);
}

.form-card {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 48px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--background);
    text-align: center;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 32px;
}

.stores-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.stores-cta .btn-primary {
    padding: 16px 32px;
    font-size: 18px;
}

.stores-cta .btn-primary i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-card {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .stores-cta .app-buttons {
        flex-direction: column;
    }
}

/* Main Quote Section */
.main-quote {
    padding: 30px 0;
}

.main-quote h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.main-quote .sub-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.form-card h2 {
    margin-bottom: 16px;
    text-align: left;
}

.form-intro {
    margin-bottom: 32px;
    color: var(--text);
}

.call-actions {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.call-actions h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.call-actions p {
    margin-bottom: 32px;
    color: var(--text);
}

.call-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.call-buttons .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    display: flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.phone-btn {
    background-color: var(--accent);
    color: #fff;
}

.call-buttons .btn i {
    font-size: 20px;
}

.app-download {
    margin-top: 32px;
}

.app-download p {
    margin-bottom: 24px;
    color: var(--text);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

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

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

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 48px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .quote-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-card,
    .call-actions {
        padding: 32px;
    }
}

@media (max-width: 768px) {

    .form-card,
    .call-actions {
        padding: 24px;
    }

    .call-buttons .btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .main-quote {
        padding: 0;
        margin-top: -40px;
    }
}

/* Contact Page Styles */
.main-contact {
    padding: 80px 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-intro {
    margin-bottom: 32px;
    color: var(--text);
}

.contact-methods {
    display: grid;
    gap: 24px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--background);
    border-radius: 16px;
}

.contact-method i {
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-method h3 {
    margin-bottom: 12px;
}

.contact-method p {
    margin-bottom: 8px;
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.main-about {
    background: var(--background);
}

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

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

.story-content h2 {
    margin-bottom: 32px;
}

.story-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}

.about-values {
    padding: 80px 0;
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-item i {
    color: var(--primary);
    margin-bottom: 16px;
}

.value-item h3 {
    margin-bottom: 12px;
}

.about-team {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.about-cta {
    padding: 80px 0;
    background: var(--background);
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 16px;
}

.about-cta p {
    margin-bottom: 32px;
    font-size: 18px;
}

/* Policy Page Styles */
.main-policy {
    padding: 80px 0;
    background: var(--background);
}

.policy-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 48px;
}

.policy-nav {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-nav h2 {
    margin-bottom: 24px;
}

.policy-nav ul {
    list-style: none;
}

.policy-nav li {
    margin-bottom: 16px;
}

.policy-nav a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-nav a:hover {
    color: var(--primary);
}

.policy-sections {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    margin-bottom: 24px;
}

.policy-section h3 {
    margin: 32px 0 16px;
}

.policy-section p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.policy-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {

    .contact-content,
    .policy-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-nav {
        position: static;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {

    .main-contact,
    .main-about,
    .main-policy {
        padding: 30px 0 48px 0;
    }

    .contact-info,
    .contact-form,
    .policy-sections {
        padding: 24px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 80px 0 48px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.02);
    display: none;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

/* Active FAQ Item */
.faq-item.active .faq-question {
    background-color: var(--primary);
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-question i {
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 48px 0;
    }

    .faq-question {
        padding: 16px;
    }

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

    .faq-answer {
        padding: 16px;
    }
}

/* Pricing Information Section */
.pricing-info {
    padding: 80px 0;
    background: #fff;
}

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

.pricing-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-intro h2 {
    margin-bottom: 16px;
}

.pricing-intro p {
    font-size: 18px;
    color: var(--text);
}

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-factor {
    background: var(--background);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-factor i {
    color: var(--primary);
    font-size: 24px;
}

.pricing-factor h3 {
    margin: 0;
    font-size: 18px;
}

.pricing-benefits {
    background: var(--background);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 48px;
}

.pricing-benefits h3 {
    text-align: center;
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-item i {
    color: var(--primary);
    font-size: 20px;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 24px;
}

/* Google Reviews Carousel */
.google-reviews {
    margin: 32px 0 48px;
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.google-reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-reviews-summary .avg-rating {
    font-weight: 700;
}

.gr-stars i {
    color: #f5a623;
}

.reviews-carousel-viewport {
    overflow: hidden;
    padding: 5px 0;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.google-review-card {
    background: var(--background);
    border: 1px solid #000;
    border-radius: 16px;
    padding: 20px;
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.google-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.google-review-author strong {
    font-size: 14px;
}

.google-review-time {
    font-size: 12px;
    color: #555;
}

.google-review-rating {
    margin-bottom: 8px;
}

.google-review-text p {
    font-size: 14px;
    color: #333;
}

.review-gallery-button {
    margin-top: 15px;
    text-align: center;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--primary, #007cba);
    color: #fff;
    transform: translateY(-1px);
}

.view-details-btn i {
    font-size: 12px;
}

.reviews-carousel-controls {
    display: flex;
    gap: 8px;
}

.reviews-carousel-controls .rc-btn {
    background: #000;
    color: #fff;
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reviews-carousel-controls .rc-btn:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        gap: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-info {
        padding: 48px 0;
    }

    .pricing-factors {
        gap: 10px;
        font-size: 16px;

        .pricing-factor {
            padding: 14px;
            gap: 14px;

            h3 {
                font-size: 14px;
            }
        }
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-benefits {
        padding: 24px;
    }

    .reviews-carousel-controls {
        flex-direction: column;
    }

    .reviews-carousel-controls-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
}

/* Rating Card Shortcode */
.taktow-rating-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin: 15px auto;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    max-width: 300px;

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

    .taktow-logo {
        height: 24px;
        width: auto;
    }

    .taktow-reviews-count {
        font-size: 18px;
        color: #333333;
        font-weight: 500;
    }

    .taktow-stars {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .taktow-stars .gr-stars {
        font-size: 24px;
        color: #00b67a;
        /* Cor verde do taktow */
    }
}

/* Estilos para mensagens do formulário de contato */
.form-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

/* Estilo para botão desabilitado */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Additional styles for reviews page */
.reviews-page-container .gr-stars {
    color: #f5a623;
}

.reviews-page-container .gr-stars i {
    margin-right: 2px;
}

.reviews-page-container .gr-stars.fas {
    color: #f5a623;
}

.reviews-page-container .gr-stars.far {
    color: #ddd;
}

/* Ensure compatibility with existing theme styles */
.reviews-page-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hide cards based on filters */
.review-card.hidden {
    display: none;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    margin: 0;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Loading state for pagination */
.reviews-pagination .page-numbers.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover effects for review cards */
.review-archive-card .read-more-btn.hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Related reviews styles */
.related-reviews {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-reviews h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.related-review-card {
    transition: transform 0.3s ease;
}

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

/* Single Review Page Styles */
.main-single-review {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.single-review-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-back {
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.back-link:hover {
    background-color: #f5f5f5;
    color: #000;
    transform: translateX(-2px);
}

.review-article {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-meta {
    flex: 1;
}

.review-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.review-date {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.review-body {
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

.review-body p {
    font-size: 17px;
    margin-bottom: 20px;
}

.review-gallery {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #000;
}

.review-gallery h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item a {
    text-decoration: none;
    display: block;
}

/* Related Reviews */
.related-reviews {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #000;
}

.related-reviews h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

.related-review-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.related-review-content {
    padding: 20px;
}

.related-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #f8f9fa;
}

.related-review-meta h4 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.related-review-rating {
    margin-bottom: 12px;
}

.related-review-meta p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.related-review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.related-review-link:hover {
    color: var(--primary, #007cba);
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-single-review {
        padding: 100px 0 60px 0;
    }

    .single-review-content {
        padding: 0 15px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .review-title {
        font-size: 28px;
    }

    .review-article {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .related-reviews-grid {
        grid-template-columns: 1fr;
    }

    .related-review-content {
        padding: 15px;
    }
}

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

    .review-article {
        padding: 20px 15px;
    }

    .review-avatar {
        width: 80px;
        height: 80px;
    }

    .gallery-item img {
        height: 180px;
    }
}

/* Pagination Styles */
.reviews-pagination {
    margin: 50px 0;
    text-align: center;
}

.reviews-pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 4px;
    background: #fff;
    color: #495057;
    text-decoration: none;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.reviews-pagination ul.page-numbers {
    height: auto;
    width: auto;
}

.reviews-pagination .page-numbers a:hover,
.reviews-pagination .page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-pagination .page-numbers.prev,
.reviews-pagination .page-numbers.next {
    font-weight: 600;
    padding: 12px 20px;
}

.reviews-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.reviews-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #6c757d;
    transform: none;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .reviews-pagination {
        margin: 40px 0;
    }

    .reviews-pagination .page-numbers {
        padding: 10px 12px;
        margin: 0 2px;
        min-width: 40px;
        font-size: 14px;
    }

    .reviews-pagination .page-numbers.prev,
    .reviews-pagination .page-numbers.next {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .reviews-pagination .page-numbers {
        padding: 8px 10px;
        margin: 0 1px;
        min-width: 35px;
        font-size: 13px;
    }

    .reviews-pagination .page-numbers.prev,
    .reviews-pagination .page-numbers.next {
        padding: 8px 12px;
    }
}

.main-archive-review {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.archive-review-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.archive-review-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.archive-review-intro {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.review-archive-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

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

.review-archive-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.review-archive-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-archive-author {
    flex: 1;
}

.review-archive-author h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.review-archive-date {
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
}

.gallery-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid #90caf9;
}

.gallery-indicator i {
    font-size: 12px;
}

.review-archive-rating {
    margin-bottom: 18px;
}

.review-archive-text p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-archive-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.read-more-btn,
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-height: 48px;
}

.read-more-btn {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 2px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* No Reviews State */
.no-reviews {
    text-align: center;
    padding: 100px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.no-reviews-icon {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 25px;
    opacity: 0.7;
}

.no-reviews h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-reviews p {
    color: #6c757d;
    font-size: 18px;
    max-width: 400px;
    margin: 0 auto;
}

/* Archive Review Responsive */
@media (max-width: 768px) {
    .main-archive-review {
        padding: 100px 0 60px 0;
    }

    .archive-review-content {
        padding: 0 15px;
    }

    .archive-review-header h1 {
        font-size: 32px;
    }

    .archive-review-intro {
        font-size: 16px;
    }

    .review-archive-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .review-archive-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .review-archive-author h3 {
        font-size: 20px;
    }

    .review-archive-actions {
        flex-direction: column;
    }

    .read-more-btn,
    .gallery-btn {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .archive-review-header h1 {
        font-size: 28px;
    }

    .review-archive-card {
        padding: 20px 15px;
    }

    .review-archive-author h3 {
        font-size: 18px;
    }

    .review-archive-avatar {
        width: 60px;
        height: 60px;
    }

    .no-reviews {
        padding: 60px 20px;
    }

    .no-reviews h3 {
        font-size: 24px;
    }

    .no-reviews p {
        font-size: 16px;
    }
}

/* Reviews Page Styles */
.reviews-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.reviews-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.reviews-page-intro {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FF5722;
    border-color: #FF5722;
    color: #fff;
}

.reviews-search {
    position: relative;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.review-card-inner {
    padding: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.review-date-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}


.review-date,
.review-location {
    color: #6c757d;
    font-size: 14px;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.gallery-badge i {
    font-size: 10px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-number {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.review-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.read-more-btn,
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.read-more-btn {
    background: #FF5722;
    color: #fff;
}

.read-more-btn:hover {
    background: #f84813;
    transform: translateY(-1px);
}

.gallery-btn {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.gallery-btn:hover {
    background: #FF5722;
    color: #fff;
    border-color: #f84813;
    transform: translateY(-1px);
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover .review-overlay {
    opacity: 1;
    pointer-events: auto;
}

.overlay-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.overlay-text {
    font-size: 16px;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-reviews-icon {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-reviews h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-reviews p {
    color: #6c757d;
    font-size: 16px;
}

.load-more-container {
    text-align: center;
    margin-bottom: 60px;
}

.load-more-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.loading-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.reviews-stats {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-pagination {
    margin-bottom: 40px;
}

.reviews-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-pagination li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.reviews-pagination li::marker {
    display: none;
}

.reviews-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reviews-pagination .page-numbers a:hover,
.reviews-pagination .page-numbers.current {
    background: #FF5722;
    border-color: #FF5722;
    color: #fff;
}

.reviews-pagination .page-numbers.prev,
.reviews-pagination .page-numbers.next {
    padding: 0 15px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-page-header h1 {
        font-size: 32px;
    }

    .reviews-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-search {
        min-width: 100%;
    }

    .filter-buttons {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        margin: 0 10px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-actions {
        flex-direction: column;
    }

    .read-more-btn,
    .gallery-btn {
        width: 100%;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-page-container {
        padding-top: 100px;
    }

    .reviews-page-header h1 {
        font-size: 28px;
    }

    .reviews-page-intro {
        font-size: 16px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

.review-card.hidden {
    display: none;
}

/* Review Form Styles */
.main-review-form {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 0 60px 0;
}

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

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

.review-form-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.review-form-intro {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.review-form-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF5722;
}

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

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

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

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Rating Section */
.rating-section {
    text-align: center;
}

.rating-stars {
    margin: 20px 0;
}

.stars-container {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 10px;
}

.star-rating {
    font-size: 32px;
    color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating:hover,
.star-rating.fas {
    color: #FF5722;
}

.star-rating.far:hover~.star-rating,
.stars-container.error .star-rating {
    color: #dee2e6;
}

.rating-text {
    display: block;
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.char-counter .warning {
    color: #fd7e14;
    font-weight: 600;
}

/* Photo Upload */
.photo-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.photo-upload-area:hover,
.photo-upload-area.dragover {
    border-color: #FF5722;
    background: rgba(255, 87, 34, 0.02);
}

.upload-placeholder i {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
}

.upload-placeholder p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 500;
}

.upload-placeholder span {
    font-size: 12px;
    color: #6c757d;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.photo-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.photo-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: background 0.3s ease;
}

.remove-photo:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-submit {
    background: #FF5722;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #f84813;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

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

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

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Required Field Indicator */
.required {
    color: #dc3545;
    font-weight: bold;
}

/* Optional Field Indicator */
.optional {
    color: #6c757d;
    font-weight: normal;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-review-form {
        padding: 100px 0 40px 0;
    }

    .review-form-header h1 {
        font-size: 32px;
    }

    .review-form-intro {
        font-size: 16px;
    }

    .review-form-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

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

    .stars-container {
        gap: 8px;
    }

    .star-rating {
        font-size: 28px;
    }

    .photo-preview {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .photo-preview-item img {
        height: 100px;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .review-form-header h1 {
        font-size: 28px;
    }

    .review-form-intro {
        font-size: 15px;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .photo-upload-area {
        padding: 30px 15px;
    }

    .upload-placeholder i {
        font-size: 36px;
    }

    .upload-placeholder p {
        font-size: 14px;
    }

    .photo-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}