/* Brand Colors */
:root {
    --yellow: #FFD700;        /* Bright golden yellow */
    --yellow-dark: #FFC107;   /* Slightly darker yellow */
    --red: #DC143C;           /* Crimson red */
    --red-dark: #B22222;      /* Darker red */
    --white: #FFFFFF;
    --black: #000000;
    --gray: #333333;
    --gray-light: #F5F5F5;
    --blue: #1E3A8A;          /* Deep blue for accents */
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.careers-link {
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--black) !important;
    font-weight: 700;
}

.careers-link::after {
    display: none;
}

.careers-link:hover {
    background: var(--yellow-dark);
    color: var(--black) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/cover.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220,20,60,0.3), rgba(255,215,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    margin-top: 150px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    color: var(--yellow);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220,20,60,0.4);
}

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

.btn-secondary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* Special Offers */
.offers {
    background: var(--yellow);
    padding: 40px 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

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

.offer-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid var(--red);
}

.offer-card h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--yellow);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 50px;
}

/* Featured Services Grid (Main Page) */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.featured-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.featured-service-item:hover {
    transform: translateY(-5px);
}

.featured-service-item.view-more {
    cursor: pointer;
}

.view-more-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.featured-service-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.featured-service-item:hover .featured-service-icon {
    background: var(--yellow);
    transform: scale(1.05);
}

.featured-service-icon svg {
    width: 60px;
    height: 60px;
    color: var(--red);
    stroke-width: 2;
}

.featured-service-item.view-more .featured-service-icon {
    background: var(--red);
}

.featured-service-item.view-more .featured-service-icon svg {
    color: var(--white);
}

.featured-service-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.featured-service-item.view-more .featured-service-label {
    color: var(--red);
    font-weight: 700;
}

/* Detailed Service Cards (Services Page) */
.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--yellow);
}

.service-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 8px;
    margin: 0 auto 20px;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--black);
    stroke-width: 2;
}

.service-card h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.service-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
}

.service-price {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-price.free {
    color: var(--red);
    font-weight: 700;
}

.service-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.service-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.4);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

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

.before-after {
    background: var(--white);
    padding: 20px;
}

.before-after h3 {
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.before, .after {
    text-align: center;
}

.before p, .after p {
    font-weight: 700;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.before p {
    background: var(--red);
    color: var(--white);
}

.after p {
    background: var(--yellow);
    color: var(--black);
}

.before img, .after img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--gray-light);
}

.rating-summary {
    text-align: center;
    margin-bottom: 50px;
}

.rating-stars {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 10px;
}

.rating-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.rating-count {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Reviews Carousel */
.reviews-carousel-container {
    position: relative;
    margin-bottom: 40px;
    padding: 0 60px;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.review-card {
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--red-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--yellow);
}

.review-header {
    margin-bottom: 15px;
}

.review-stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-badge {
    font-size: 0.9rem;
    color: var(--gray);
}

.review-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

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

/* Careers Section */
.careers {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

.careers .section-title,
.careers .section-subtitle {
    color: var(--black);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.careers-text h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.careers-text p {
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.careers-text h4 {
    color: var(--red);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.positions-list {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.positions-list li {
    color: var(--black);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.positions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
}

.careers-note {
    font-weight: 700;
    font-size: 1.2rem;
}

.careers-contact {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.careers-contact h4 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.careers-contact p {
    color: var(--gray);
    margin-bottom: 15px;
}

.careers-info {
    margin: 30px 0;
}

.careers-info p {
    margin-bottom: 10px;
    color: var(--black);
    line-height: 1.6;
}

.careers-info p strong {
    display: inline-block;
    min-width: 80px;
}

.careers-info a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

.careers-info a:hover {
    text-decoration: underline;
}

/* Hiring Images */
.hiring-images {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--yellow);
}

.hiring-images h5 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.hiring-image-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hiring-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hiring-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
    pointer-events: none;
}

.hiring-image-wrapper:hover .hiring-image {
    transform: scale(1.1);
}

/* Clickable Images - Gallery and Projects */
.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
}

.before img.clickable-image,
.after img.clickable-image {
    border-radius: 5px;
}

.gallery-item img.clickable-image {
    border-radius: 10px;
}

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

.hiring-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 20px;
    background: var(--red);
    border-radius: 5px;
    border: 2px solid var(--yellow);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    border: 3px solid var(--yellow);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.close-modal:hover {
    color: var(--yellow);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: var(--white);
}

.appointment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

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

.appointment-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--red);
    transition: transform 0.3s, box-shadow 0.3s;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.appointment-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.appointment-card h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.appointment-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.appointment-info {
    background: var(--yellow);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.appointment-info h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.hours-list {
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    margin-bottom: 10px;
}

.hours-item .day {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--red);
    font-weight: 600;
    font-size: 1.1rem;
}

.appointment-note {
    color: var(--black);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    font-style: italic;
}

/* Shop Photos - Original size */
.shop-photos {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.shop-photos .gallery-item img {
    height: 300px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 4px solid var(--yellow);
}

.contact-item h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid var(--yellow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    background: var(--black);
    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-section h3 {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section h4 {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--yellow);
}

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

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--red);
    border-radius: 5px;
    margin-right: 10px;
    font-weight: 500;
}

.social-link:hover {
    background: var(--red-dark);
    color: var(--white) !important;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 0.75rem 0;
    }

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

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu a {
        display: block;
        padding: 18px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--black);
        transition: all 0.3s;
    }

    .nav-menu a:hover {
        background: var(--gray-light);
        color: var(--red);
        padding-left: 30px;
    }

    .nav-menu a::after {
        display: none;
    }

    .careers-link {
        background: var(--yellow);
        margin: 10px 25px;
        padding: 15px 20px;
        border-radius: 5px;
        display: block;
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .careers-link:hover {
        background: var(--yellow-dark);
        padding-left: 20px;
    }

    .nav-menu li:last-child a.careers-link {
        margin-top: 15px;
        border-top: 2px solid rgba(0,0,0,0.1);
        padding-top: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        margin-top: 70px;
        padding: 50px 20px 40px;
        min-height: calc(100vh - 70px);
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: 30% center;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.5;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-item .btn {
        width: 100%;
        margin-top: 15px;
        padding: 12px 20px;
    }

    .map-container {
        min-height: 300px;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .before-after-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery {
        padding: 50px 0;
    }

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

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

    .before-after {
        padding: 20px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .before-after h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .before img, .after img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }

    .before p, .after p {
        padding: 12px 15px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .gallery-subtitle {
        font-size: 1.8rem;
        margin: 40px 0 30px;
        line-height: 1.3;
    }

    .shop-photos .gallery-item img {
        height: 250px;
    }

    .appointment {
        padding: 60px 0;
    }

    .appointment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .appointment-card {
        padding: 30px 25px;
    }

    .appointment-info {
        padding: 30px 25px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .careers {
        padding: 50px 0;
    }

    .careers .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .careers .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .careers-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .careers-text {
        padding: 0;
    }

    .careers-text h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .careers-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .careers-text h4 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .positions-list {
        margin-left: 15px;
        margin-bottom: 15px;
    }

    .positions-list li {
        font-size: 1rem;
        margin-bottom: 8px;
        padding-left: 22px;
    }

    .careers-note {
        font-size: 1.05rem;
        margin-top: 20px;
    }

    .careers-contact {
        padding: 30px 25px;
        border-radius: 8px;
    }

    .careers-contact h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .careers-contact p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .careers-info {
        margin: 25px 0;
    }

    .careers-info p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.6;
        word-break: break-word;
    }

    .careers-info p {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .careers-info strong {
        font-size: 1rem;
        color: var(--black);
    }

    .careers-contact .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 20px;
        text-align: center;
    }

    .hiring-images {
        margin-top: 25px;
        padding-top: 25px;
    }

    .hiring-images h5 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

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

    .hiring-image-wrapper {
        border-radius: 8px;
    }

    .hiring-image {
        height: 220px;
    }

    .zoom-icon {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .offers {
        margin-top: -70px;
        padding: 20px 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-card {
        padding: 15px 15px;
        border: 2px solid var(--red);
    }

    .offer-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .offer-price {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .services {
        padding: 60px 0;
    }

    .featured-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        margin-top: 30px;
    }

    .featured-service-icon {
        width: 100px;
        height: 100px;
    }

    .featured-service-icon svg {
        width: 50px;
        height: 50px;
    }

    .featured-service-label {
        font-size: 0.85rem;
    }

    @media (max-width: 480px) {
        .featured-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px 15px;
        }

        .featured-service-icon {
            width: 90px;
            height: 90px;
        }

        .featured-service-icon svg {
            width: 45px;
            height: 45px;
        }

        .featured-service-label {
            font-size: 0.75rem;
        }
    }

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

    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-price {
        font-size: 1rem;
        padding: 8px 0;
        margin-bottom: 12px;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .service-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .reviews {
        padding: 60px 0;
    }

    .rating-summary {
        margin-bottom: 30px;
    }

    .rating-stars {
        font-size: 2.5rem;
    }

    .rating-text {
        font-size: 1.6rem;
    }

    .reviews-carousel-container {
        padding: 0 50px;
    }

    .review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }

    .review-card h3,
    .review-author {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .reviews-cta {
        margin-top: 30px;
    }

    .reviews-cta .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 0.7rem 0;
        background: var(--white) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

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

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        top: 75px;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .hero {
        margin-top: 65px;
        padding: 40px 15px 35px;
        min-height: calc(100vh - 65px);
        background-position: 30% center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 28px;
        letter-spacing: 0.5px;
    }

    .hero-buttons .btn {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 8px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 8px;
        line-height: 1.5;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 25px 18px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .review-card {
        padding: 20px 18px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.95rem;
    }

    .social-link {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .offers {
        margin-top: -65px;
        padding: 15px 0;
    }

    .offers-grid {
        gap: 10px;
    }

    .offer-card {
        padding: 12px 12px;
        border: 2px solid var(--red);
    }

    .offer-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .offer-price {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .hero {
        padding: 35px 12px 30px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .before-after {
        padding: 18px 12px;
    }

    .before-after h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .before img, .after img {
        height: 250px;
    }

    .before p, .after p {
        padding: 10px 12px;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .gallery-subtitle {
        font-size: 1.6rem;
        margin: 35px 0 25px;
    }

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

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .contact-item {
        padding: 18px 15px;
    }

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

    .before img, .after img {
        height: 250px;
    }

    .shop-photos .gallery-item img {
        height: 220px;
    }

    .careers {
        padding: 40px 0;
    }

    .careers .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        padding: 0 8px;
    }

    .careers .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .careers-content {
        gap: 25px;
        margin-top: 25px;
    }

    .careers-text h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .careers-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .careers-text h4 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }

    .positions-list {
        margin-left: 12px;
        margin-bottom: 12px;
    }

    .positions-list li {
        font-size: 0.95rem;
        margin-bottom: 6px;
        padding-left: 20px;
    }

    .careers-note {
        font-size: 1rem;
        margin-top: 18px;
    }

    .careers-contact {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .careers-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .careers-contact p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .careers-info {
        margin: 20px 0;
    }

    .careers-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .careers-info p {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .careers-info strong {
        font-size: 0.95rem;
        color: var(--black);
    }

    .careers-contact .btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 0.95rem;
        margin-top: 18px;
    }

    .hiring-images {
        margin-top: 20px;
        padding-top: 20px;
    }

    .hiring-images h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hiring-images-grid {
        gap: 12px;
    }

    .hiring-image {
        height: 200px;
    }

    .zoom-icon {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    .hiring-image-wrapper {
        touch-action: manipulation;
    }
}

