:root {
    --primary-color: #0056b3;
    --primary-dark: #004085;
    --secondary-color: #fca311;
    --dark-bg: #14213d;
    --text-main: #333333;
    --text-muted: #6c757d;
    --bg-light: #f0f4f8;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.page-top-padding {
    padding-top: 140px;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.d-block { display: block; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.2;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo i {
    color: var(--secondary-color);
}

.logo span {
    font-weight: 300;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links li a {
    color: var(--dark-bg);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links li a:hover, .navbar.scrolled .nav-links li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    color: var(--dark-bg);
}

.hamburger.active {
    color: var(--dark-bg) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero_banner.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 33, 61, 0.9) 0%, rgba(20, 33, 61, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* About Us Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px solid var(--white);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Our Story Section */
.bg-light {
    background-color: var(--light-bg);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content-box .section-header {
    text-align: left;
    margin-bottom: 20px;
}

.story-text {
    text-align: justify;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 15px;
}

.trust-message {
    font-weight: 500;
    color: var(--dark-text);
}

.story-cta {
    align-self: flex-start;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.story-cta:hover {
    background-color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: var(--white);
}

.story-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content-box {
        text-align: center;
    }
    
    .story-content-box .section-header {
        text-align: center;
    }
    
    .story-text {
        text-align: center;
    }
    
    .story-cta {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .story-image-gallery {
        grid-template-columns: 1fr;
    }
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-bg);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.filter-container {
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-title {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dark-text);
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
    text-align: left;
}

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

.btn-card {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.position-relative {
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff3b30;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background-color: #ffffff;
    z-index: 2;
}

.service-card-content {
    padding: 20px 15px;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    transition: var(--transition);
}

.service-card:hover h3, .service-card:hover p {
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-banner {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-dark));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 40px;
    box-shadow: var(--shadow-md);
}

.service-banner i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-banner h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.service-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews {
    background: url('images/reviews-bg.png') center/cover no-repeat fixed;
    position: relative;
}
.reviews::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(10, 20, 35, 0.85);
    z-index: 0;
    pointer-events: none;
}
.reviews .container {
    position: relative;
    z-index: 1;
}
.reviews .section-header h2,
.reviews .section-header p {
    color: var(--white);
}
.reviews .container {
    position: relative;
    z-index: 1;
}
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.review-form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.review-form-container h3 {
    margin-bottom: 20px;
    text-align: center;
}

.review-form-container .form-group {
    margin-bottom: 15px;
}

.review-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.review-form-container input, 
.review-form-container textarea, 
.review-form-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.review-form-container button {
    width: 100%;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.contact-info::before {
    content: '\f10b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transform: rotate(-15deg);
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-info .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--dark-bg);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a.whatsapp-btn {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
    background-color: #25D366;
    color: var(--white);
    font-weight: 600;
    gap: 8px;
}

.social-links a.whatsapp-btn:hover {
    background-color: #128C7E;
}

.direct-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direct-contact-actions h3 {
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.action-btn {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--dark-bg);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.action-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.action-btn .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--white);
}

.action-btn.whatsapp-action .icon-wrapper { background-color: #25D366; }
.action-btn.instagram-action .icon-wrapper { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.action-btn.phone-action .icon-wrapper { background-color: var(--primary-color); }
.action-btn.email-action .icon-wrapper { background-color: var(--secondary-color); color: var(--dark-bg); }

.action-btn .action-text {
    flex: 1;
}

.action-btn h4 {
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.action-btn span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.action-arrow {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.action-btn:hover .action-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-top: 20px;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-services ul li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content h2 { font-size: 1.5rem; }
    .about-container { flex-direction: column; }
    .experience-badge { right: 20px; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 30px;
        justify-content: flex-start;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links li a { 
        font-size: 1.1rem; 
        color: var(--dark-bg);
    }

    .nav-links li a:hover, .nav-links li a.active {
        color: var(--primary-color);
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section-padding { padding: 50px 0; }
    .page-top-padding { padding-top: 100px; }
    
    .hero-content h1 { font-size: 2rem; }
    .hero-content h2 { font-size: 1.2rem; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .section-header h2 { font-size: 1.6rem; }
    
    .features-list { grid-template-columns: 1fr; }
    
    .contact-info .icon { width: 40px; height: 40px; font-size: 1rem; }
    .action-btn { padding: 15px; }
    .action-btn .icon-wrapper { width: 40px; height: 40px; font-size: 1.2rem; margin-right: 15px; }
    .action-btn h4 { font-size: 1rem; }
    
    .experience-badge { padding: 10px; right: 10px; bottom: -10px; }
    .experience-badge .years { font-size: 1.5rem; }
    .experience-badge .text { font-size: 0.8rem; }
}

/* Review Summary Widget */
.review-summary-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.review-summary-left {
    text-align: center;
}
.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}
.rating-stars {
    color: #fbbc04;
    font-size: 1.5rem;
    margin: 10px 0;
}
.rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.review-summary-right {
    flex-grow: 1;
    max-width: 400px;
}
.rating-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 15px;
}
.rating-label {
    font-weight: bold;
    color: var(--white);
    width: 15px;
}
.rating-bar-bg {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: #fbbc04;
    border-radius: 5px;
}

/* Owner Response */
.owner-response {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}
.owner-response h5 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}
.owner-response p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Review Images Grid */
.review-images-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.review-images-grid img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.review-images-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .review-summary-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .review-summary-right {
        width: 100%;
        max-width: 100%;
    }
}
