:root {
    --primary-color: #1F334E;
    --secondary-color: #F2B100;
    --text-color: #1F334E;
    --text-light: rgba(0, 0, 0, 0.7);
    --white: #FFFFFF;
    --light-bg: #F5F5F5;
    --card-bg: #D9D9D9;
    --input-bg: #F0F0F0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Zain', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 20px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    will-change: padding, box-shadow;
}

.header.scrolled {
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header.scrolled .logo img {
    width: 250px;
    height: 102px;
}

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

.logo img {
    width: 357px;
    height: 146px;
    object-fit: contain;
    transition: width 0.3s ease, height 0.3s ease;
}

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

.nav-link {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    will-change: width;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    contain: layout style;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    width: 661px;
    max-width: 661px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.hero-text h1 .highlight {
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    max-width: 633px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    will-change: transform, box-shadow;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(242, 177, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e0a400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 177, 0, 0.4);
}

.btn svg {
    transition: transform 0.3s ease;
    will-change: transform;
}

.btn:hover svg {
    transform: translateX(-5px);
}

/* Section Titles */
.section-title {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.section-title.light {
    color: var(--secondary-color);
}

.section-title .highlight {
    color: var(--secondary-color);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background-color: var(--white);
    contain: layout style;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.vision-card,
.mission-card {
    text-align: center;
}

.card-icon {
    width: 104px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vision-card p,
.mission-card p {
    font-size: 31px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 567px;
    margin: 0 auto;
}

.divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/pattern.jpeg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.08;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

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

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Journey Section */
.journey {
    padding: 100px 0;
    background-color: var(--white);
    contain: layout style;
}

.journey-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.journey-step {
    text-align: center;
    max-width: 200px;
}

.step-circle {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--shadow);
}

.step-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.journey-step h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

.journey-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.journey-arrow svg {
    transform: scaleX(-1);
}

/* Works Section */
.works {
    padding: 100px 0;
    background-color: var(--white);
    contain: layout style;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.work-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.work-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info {
    padding: 20px;
}

.work-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.work-link:hover {
    color: #e0a400;
}

.work-link svg {
    transition: transform 0.3s ease;
    will-change: transform;
}

.work-link:hover svg {
    transform: translateX(-5px);
}

.github-link {
    text-align: center;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.github-btn svg:last-child {
    transition: transform 0.3s ease;
    will-change: transform;
}

.github-btn:hover svg:last-child {
    transform: translateX(-5px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
    contain: layout style;
}

.cta h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--white);
    contain: layout style;
}

.reviews .section-title {
    font-size: 48px;
    margin-bottom: 40px;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

.review-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.review-avatar svg {
    width: 30px;
    height: 30px;
    color: #999;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

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

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color);
    stroke: var(--secondary-color);
}

.review-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
}

/* Review Form Container */
.review-form-container {
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    margin-bottom: 25px;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 25px;
}

.star {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star:hover {
    transform: scale(1.15);
}

.star svg {
    width: 32px;
    height: 32px;
    fill: transparent;
    stroke: #ccc;
    stroke-width: 1.5;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.star.active svg,
.star.hover svg {
    fill: var(--secondary-color);
    stroke: var(--secondary-color);
}

/* Review Form */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-input {
    width: 100%;
    height: 69px;
    padding: 20px 25px;
    background-color: var(--input-bg);
    border: none;
    border-radius: 15px;
    font-family: 'Zain', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    outline: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.review-input:focus {
    background-color: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(242, 177, 0, 0.2);
}

.review-input::placeholder {
    color: #999;
}

.review-textarea {
    width: 100%;
    min-height: 218px;
    padding: 20px 25px;
    background-color: var(--input-bg);
    border: none;
    border-radius: 15px;
    font-family: 'Zain', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    outline: none;
    resize: vertical;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.review-textarea:focus {
    background-color: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(242, 177, 0, 0.2);
}

.review-textarea::placeholder {
    color: #999;
}

.review-submit-btn {
    width: 282px;
    height: 50px;
    margin: 10px auto 0;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-family: 'Zain', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.review-submit-btn:hover {
    background-color: #2a4266;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(31, 51, 78, 0.3);
}

.review-submit-btn:active {
    transform: translateY(0);
}

.review-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Empty Reviews State */
.reviews-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 18px;
}

/* Review Success Animation */
@keyframes reviewAdded {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item.new {
    animation: reviewAdded 0.5s ease forwards;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/pattern.jpeg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.08;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-box {
    width: 372px;
    height: 100px;
    background-color: #D9D9D9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 307px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.footer-about p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding: 10px 25px;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    display: inline-block;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .logo img {
        width: 280px;
        height: 115px;
    }
    
    .header.scrolled .logo img {
        width: 200px;
        height: 82px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 45px;
    }
    
    .cta h2 {
        font-size: 45px;
    }
    
    .footer-logo-box {
        width: 320px;
        height: 86px;
    }
    
    .footer-logo {
        width: 264px;
        height: 72px;
    }
    
    .review-form-container {
        max-width: 100%;
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .logo img {
        width: 220px;
        height: 90px;
    }
    
    .header.scrolled .logo img {
        width: 180px;
        height: 74px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        will-change: right;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text .btn {
        margin: 0 auto;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .journey-arrow svg {
        transform: scaleX(-1) rotate(0deg);
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-logo-box {
        width: 280px;
        height: 75px;
        margin: 0 auto 20px;
    }
    
    .footer-logo {
        width: 231px;
        height: 63px;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .reviews .section-title {
        font-size: 40px;
    }
    
    .review-form-container {
        padding: 30px;
    }
    
    .review-submit-btn {
        width: 100%;
        max-width: 282px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo img {
        width: 180px;
        height: 74px;
    }
    
    .header.scrolled .logo img {
        width: 150px;
        height: 61px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .footer-about p {
        font-size: 18px;
    }
    
    .footer-logo-box {
        width: 240px;
        height: 65px;
    }
    
    .footer-logo {
        width: 198px;
        height: 54px;
    }
    
    .footer-contact li {
        flex-wrap: wrap;
    }
    
    .footer-contact a {
        font-size: 14px;
        word-break: break-all;
    }
    
    /* Reviews Responsive */
    .reviews {
        padding: 60px 0;
    }
    
    .reviews .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .reviews-list {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-form-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .review-form-title {
        font-size: 20px;
        text-align: center;
    }
    
    .star-rating {
        justify-content: center;
    }
    
    .star svg {
        width: 28px;
        height: 28px;
    }
    
    .review-input {
        height: 55px;
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .review-textarea {
        min-height: 150px;
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .review-submit-btn {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .review-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .review-avatar svg {
        width: 24px;
        height: 24px;
    }
    
    .review-name {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-stars svg {
        width: 14px;
        height: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Print Styles */
@media print {
    .header, .footer, .nav-toggle, .reviews {
        display: none;
    }
    
    .hero {
        padding-top: 20px;
    }
}