/* CSS Variables & Theme */
:root {
    --color-primary: #0a192f; /* Deep Navy */
    --color-secondary: #112240; /* Navy */
    --color-accent: #64ffda; /* Cyan/Teal Accent - for highlights */
    --color-text-light: #e6f1ff;
    --color-text-dim: #8892b0;
    --color-white: #ffffff;
    --color-blue-bg: #e6f7ff; /* Very Light Blue for contrast sections */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

/* Header & Nav */
.header {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.nav-link:hover {
    color: var(--color-accent);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
    min-height: 700px; /* Increased height for content */
    background-color: #e3f2fd; /* Light Blue Theme */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-primary);
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
}

.hero-container {
    max-width: 1000px; /* Wider for contact info */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-primary);
}

.highlight-text {
    color: var(--color-secondary);
    display: inline-block;
    position: relative;
    z-index: 1;
}



.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.8;
}

.hero-info {
    margin-bottom: 30px;
    padding: 10px;
    background-color: transparent; /* Transparent background */
    border-radius: 0;
    display: inline-block;
}

.hero-info p {
    font-size: 1.2rem;
    margin: 5px 0;
    color: var(--color-primary);
}

.hero-info strong {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 800;
}

.price-tag {
    margin-top: 5px;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hero Contact Styles */
.hero-contact-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.6); /* Slight white bg for readability */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.hero-contact-item i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.hero-contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-contact-item .contact-large {
    margin-top: 0; /* Override default marginTop */
    font-size: 2rem !important; /* Slightly smaller than full standalone */
    margin-top: 0; /* Override default marginTop */
    font-size: 2rem !important; /* Slightly smaller than full standalone */
    line-height: 1.2;
}

.contact-hours {
    align-items: center; /* Center on PC */
}

.contact-hours i {
    margin-top: 0; /* Remove top margin */
}

/* Line Button Style */
/* Line Button Style */
.line-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #06C755 0%, #05a546 100%); /* Gradient Green */
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4); /* Green Shadow */
    border: 1px solid rgba(255,255,255,0.2);
}

.line-contact-btn:hover {
    background: linear-gradient(135deg, #05a546 0%, #048a3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5); /* Stronger Green Shadow */
}

.line-contact-btn i {
    font-size: 1.5rem;
    color: white !important;
}

@media (max-width: 768px) {
    .hero-contact-box {
        flex-direction: column;
        align-items: flex-start; /* Align items to start for consistent row look, or center if we want centered rows */
        gap: 20px;
        width: 100%; /* Ensure full width usage */
    }
    
    /* Ensure nice alignment */
    .contact-hours {
        align-items: center !important;
        justify-content: flex-start; /* Start align for row layout */
    }
    
    .hero-contact-item {
        flex-direction: row; /* Row like PC */
        text-align: left; /* Left align text */
        width: 100%; /* Full width */
        justify-content: center; /* Center the whole row content within the item */
        gap: 15px; /* formatting */
    }
    
    .hero-contact-item i {
        font-size: 2rem; /* Slightly smaller icon on mobile */
    }
}

/* Services */
.services {
    background-color: var(--color-blue-bg);
}

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

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-card .price {
    display: block;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 400px;
    background-color: #ddd; /* Placeholder */
    border-radius: 10px;
    overflow: hidden;
    background: url('assets/about_img.png') no-repeat center center/cover;
}

.img-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #666;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.shop-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.shop-info p {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-dim);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0 10px;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-left.visible, .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
}

/* --- Multi-Page Expansion Styles --- */

/* Page Header */
.page-header {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
    background-color: var(--color-primary); /* Fallback */
}

/* Default Background for Services if not inline */
.page-header {
    background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('assets/hero_bg.png');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

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

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* Attributes for different page headers can be inline or modify here */

/* Active Nav Link */
.nav-link.active {
    color: var(--color-accent);
    font-weight: 700;
    border-bottom: 2px solid var(--color-accent);
}

/* Pricing Table (Services Page) */
.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.pricing-table {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 700;
    color: var(--color-primary);
}

.service-price {
    color: var(--color-secondary);
}

/* Team Grid (About Page) */
.team-section {
    padding-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    font-size: 5rem;
    color: var(--color-text-dim);
    margin-bottom: 20px;
}

.team-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--color-accent); /* Or a darker blue */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-card .bio {
    font-size: 0.9rem;
    color: #666;
}

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

.about-content-full p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* Location Wrapper */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-placeholder {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border-radius: 5px;
    font-size: 1.5rem;
    color: #999;
}

.contact-details h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Redesign Styles --- */
/* Circular Service Icons */
.service-card-circle {
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.service-card-circle:hover {
    transform: translateY(-5px);
}

.service-img-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.service-card-circle:hover .service-img-circle {
    border-color: var(--color-accent);
}

/* Before/After Section */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.before-after-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ba-image-container {
    position: relative;
    width: 100%;
}

.ba-image-container img {
    width: 100%;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 3px;
}

.ba-review {
    padding: 20px;
    text-align: left;
}

.ba-review p {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.ba-author {
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    text-align: right;
}

/* Color Correction */
.form-status.error {
    color: #ff9800; /* Orange/Gold instead of Red */
}

/* Review Section (Services Page) */
.review-card {
    background: var(--color-blue-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.review-stars {
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-img-circle {
        width: 150px;
        height: 150px;
    }
}

/* Concept Banner (Sticky & Compact) */
.concept-banner {
    background-color: var(--color-secondary); /* Navy Blue */
    color: var(--color-white);
    padding: 12px 0; /* Compact strip */
    text-align: center;
    width: 100%;
    position: fixed; /* Sticky/Fixed */
    top: 80px; /* Below the Navigation Bar (80px height) */
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.concept-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem; /* Smaller font */
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: none;
}

/* Adjust top padding for pages to prevent overlap with new sticky banner */
.hero, .page-header {
    padding-top: 140px; /* 80px Header + ~50px Banner + 10px spacing */
}

@media (max-width: 768px) {
    .nav-list {
        top: 80px; /* Keep nav below header */
    }
    
    .concept-banner {
        top: 80px;
    }
    
    .concept-banner h2 {
        font-size: 1rem;
    }
}

/* --- New Single Page Styles --- */

/* Top Contact Bar */
.top-bar {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}

.top-contact {
    display: flex;
    justify-content: center; /* Center for good visibility */
    align-items: center;
    gap: 30px;
}

.top-contact a {
    color: var(--color-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.top-contact a:hover {
    color: var(--color-accent);
}

.divider {
    color: rgba(255,255,255,0.3);
}

/* Adjust Header for Top Bar */
.header {
    top: 45px; /* Push down by height of top-bar */
    height: 70px; /* Reducing header height slightly if needed */
}

.nav-container {
    height: 70px;
}

.hero {
    padding-top: 130px; /* 45 + 70 + padding */
}

/* Services List Style */
.services-list-section {
    background-color: var(--color-blue-bg);
}

.services-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.service-list-items {
    list-style: none;
    padding: 0;
}

.service-list-items li {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.service-list-items li:last-child {
    border-bottom: none;
}



.service-list-items li i {
    color: var(--color-secondary);
    margin-right: 15px;
    margin-top: 5px; /* Align with first line of text */
    font-size: 1.2rem;
}

.service-list-items li strong {
    color: var(--color-secondary);
    font-weight: 700;
    margin-right: 5px;
}

.contact-large {
    font-size: 2.5rem !important;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 10px;
}

/* Contact Box Section */
.contact-section {
    background-color: var(--color-white);
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: var(--color-blue-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    background: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.contact-item p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #555;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .top-bar {
        position: relative;
        padding: 5px 0;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    .header {
        position: sticky;
        top: 0;
        margin-top: 0;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .contact-hours {
        align-items: center !important;
    }
    
    .contact-hours i {
        margin-top: 0 !important;
    }
    
    .contact-hours > div {
        text-align: center;
        width: 100%;
    }
    
    .contact-time-row {
        justify-content: center !important;
    }

    .services-wrapper {
        padding: 20px;
    }

    .nav-list {
        top: 70px; /* Match new header height */
    }
}

/* --- Logo & Review Section Styles --- */

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px; /* Adjust based on actual logo aspect ratio */
    width: auto;
}

/* Reviews Section */
.reviews-section {
    background-color: #f9f9f9;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-pair {
    background: var(--color-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.review-img-box {
    position: relative;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-img-box img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1.25; /* Maintain consistent aspect ratio */
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
}

.badge.before {
    background-color: #666;
}

.badge.after {
    background-color: var(--color-secondary);
}

.arrow-icon {
    font-size: 1.5rem;
    color: var(--color-dim);
}

/* Mobile Reviews */
@media (max-width: 768px) {
    .review-images {
        flex-direction: row; /* Keep side-by-side on mobile but small */
        gap: 10px;
    }
    
    .arrow-icon {
        font-size: 1rem;
        min-width: 20px;
        text-align: center;
    }

    .badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* --- Product Slider Styles --- */
.products-section {
    background-color: var(--color-white);
}

.product-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch;
}

.product-slider::-webkit-scrollbar {
    height: 8px;
}

.product-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 10px;
}

.product-card {
    min-width: 250px;
    height: 350px;
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Review Gallery Styles (Overrides) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    aspect-ratio: 1 / 1.2;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

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

/* --- Team Section Styles --- */
.team-section-bottom {
    background-color: var(--color-blue-bg);
    text-align: center;
}

.team-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-img-box {
    width: 300px;
    height: 300px;
    border-radius: 20px; /* Changed from 50% circle */
    overflow: hidden;
    margin: 0 auto 25px;
    border: 8px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 20px rgba(100, 255, 218, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-img-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 30px rgba(10, 25, 47, 0.4);
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-member h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .team-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* --- Video Review Styles --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #000;
}

.video-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* --- Review Group Styles (B/A + Video) --- */
.review-group {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.review-group h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--color-primary);
    border-left: 4px solid var(--color-secondary);
    padding-left: 10px;
}

/* Horizontal Scroll Layout */
.review-group-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scroll-section {
    width: 100%;
}

.scroll-section h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--color-secondary);
    border-left: 3px solid var(--color-accent);
    padding-left: 10px;
}

.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.scroll-row::-webkit-scrollbar {
    height: 8px;
}

.scroll-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.scroll-item {
    flex: 0 0 auto;
    width: 250px; /* Requested smaller size */
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
}

.scroll-item img {
    width: 100%;
    height: 300px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
}

/* Video specific adjustment */
.video-scroll-item {
    width: 320px; /* Slightly wider for video */
}

.video-scroll-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- About & Team Merged Section --- */
.about-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Text wider | Team narrower */
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-integrated-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eee;
}

.team-integrated-card h3 {
    margin-top: 15px;
    color: var(--color-primary);
    font-size: 1.4rem;
}

.team-integrated-card p {
    color: var(--color-secondary);
    font-weight: 600;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile Review Gallery Scroll */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px; /* Space for scrollbar */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-item {
        flex: 0 0 200px; /* Fixed width for scroll items */
        scroll-snap-align: center;
        aspect-ratio: 1 / 1.2;
    }
}

/* Contact Large Text */
.contact-large {
    font-size: 2.5rem !important;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 10px;
}

/* Before/After Slider */
.ba-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 30px; /* Space for dots */
}

.ba-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ba-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s;
}

.ba-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-white);
    color: var(--color-accent);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-secondary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}
