/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f97316;
    --text-color: #1f2937;
    --light-color: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-call-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-call-header:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== Sections Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: #6b7280;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 80px 0;
    background: var(--light-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.portfolio-placeholder {
    width: 100%;
    height: 180px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 15px;
}

.portfolio-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.portfolio-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 80px 0;
    background: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-text {
    color: #6b7280;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    border-right: 4px solid var(--secondary-color);
    animation: fadeInUp 0.6s ease-out;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== Areas Section ===== */
.areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.area-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-right: 4px solid var(--secondary-color);
    animation: fadeInUp 0.6s ease-out;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.area-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.area-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: inherit;
    text-align: right;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #6b7280;
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.float-call {
    background: var(--secondary-color);
}

.float-whatsapp {
    background: #25d366;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* ===== فرم ثبت نظر مشتریان ===== */
.review-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.review-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.review-form label i {
    color: var(--secondary-color);
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* ===== سیستم امتیازدهی ستاره‌ای پیشرفته ===== */
.star-rating {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    direction: ltr;
    flex-wrap: nowrap;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.star-rating label i {
    display: inline-block;
    transition: all 0.2s ease;
}

/* Hover و انتخاب */
.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type="radio"]:checked~label {
    color: #fbbf24;
    transform: scale(1.1);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.star-rating input[type="radio"]:checked+label {
    color: #f59e0b;
    transform: scale(1.15);
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1.15);
    }
}

.rating-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    min-height: 25px;
    transition: all 0.3s ease;
}

.rating-text.active {
    color: var(--primary-color);
    font-weight: 600;
}

.rating-excellent {
    color: #10b981 !important;
}

.rating-good {
    color: #3b82f6 !important;
}

.rating-average {
    color: #f59e0b !important;
}

.rating-poor {
    color: #ef4444 !important;
}

.rating-very-poor {
    color: #dc2626 !important;
}

/* پیام موفقیت */
.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-right: 4px solid #10b981;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #10b981;
    display: block;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* پیام خطا */
.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-right: 4px solid #dc3545;
}

.error-message i {
    font-size: 2rem;
    margin-left: 10px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        padding: 30px 20px;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f3f4f6;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .btn-call-header {
        display: none;
    }

    .btn-request-header {
        display: none;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* بهینه‌سازی فرم ثبت نظر برای موبایل */
    .review-form-wrapper {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .review-form .form-group label {
        font-size: 0.95rem;
    }

    .review-form input[type="text"],
    .review-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .review-form .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* بهینه‌سازی ستاره‌ها برای موبایل */
    .star-rating {
        gap: 5px;
        padding: 10px 5px;
    }

    .star-rating label {
        width: 40px;
        height: 40px;
        font-size: 1.9rem;
    }

    .rating-text {
        font-size: 0.85rem;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .review-form-wrapper {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .star-rating {
        gap: 3px;
    }

    .star-rating label {
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }

    /* منو در موبایل خیلی کوچک‌تر */
    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        padding: 40px 20px;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .btn-call-header {
        display: none;
    }

    /* ===== دکمه ثبت درخواست در هدر ===== */
    .btn-request-header {
        background: #10b981;
        color: var(--white);
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        transition: var(--transition);
        margin-left: 10px;
    }

    .btn-request-header:hover {
        background: #059669;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    /* در موبایل دکمه ثبت درخواست هم مخفی شود */
    @media (max-width: 768px) {
        .btn-request-header {
            display: none;
        }
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* بهینه‌سازی فرم ثبت نظر برای موبایل */
    .review-form-wrapper {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .review-form .form-group label {
        font-size: 0.95rem;
    }

    .review-form input[type="text"],
    .review-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .review-form .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* بهینه‌سازی ستاره‌ها برای موبایل */
    .star-rating {
        gap: 5px;
        padding: 10px 5px;
    }

    .star-rating label {
        width: 40px;
        height: 40px;
        font-size: 1.9rem;
    }

    .rating-text {
        font-size: 0.85rem;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .review-form-wrapper {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .star-rating {
        gap: 3px;
    }

    .star-rating label {
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }
}