* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Onest', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #d4a853;
    --accent-hover: #e6c068;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --background-dark: #1a1a1a;
    --background-beige: #f5f1e8;
    --header-beige: #f8f5f0;
    --border-color: #e0e0e0;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-600: #666666;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-accent: linear-gradient(135deg, #d4a853 0%, #e6c068 100%);
    --gradient-beige-dark: linear-gradient(135deg, #f5f1e8 0%, #1a1a1a 100%);
}

h1, h2, h3, h4 {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    background-color: var(--header-beige);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 125px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 1;
    display: block;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 769px) {
    .hero {
        margin-top: 170px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/wallpaper1.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--text-dark);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.cta-button:hover {
    background: var(--background-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.4);
}

.review-button-container {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 168, 83, 0.15);
}

.review-button-container .cta-button {
    margin-bottom: 0;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    min-width: 120px;
}

.hero-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Onest', sans-serif;
}

.hero-stat .stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 500;
}

.services {
    width: 100%;
    max-width: 100%;
    padding: 80px 20px;
    background-color: var(--background-beige);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 168, 83, 0.25);
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 168, 83, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(360deg);
    color: var(--accent-hover);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.about {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 10rem;
    align-items: center;
    width: 100%;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 45px;
}

.about-icon {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-text-icon {
    display: none !important;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 12px 16px;
    background: var(--background-beige);
    border-radius: 25px;
    border-left: 5px solid var(--accent-color);
    white-space: nowrap;
}

.feature-item:hover {
    background: rgba(212, 168, 83, 0.2);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    background: var(--background-beige);
}

.stat-icon {
    display: block;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Onest', sans-serif;
    margin-bottom: 0.3rem;
}

.stat-text {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: flex-end;
    margin-left: 8rem;
}

.image-slider {
    width: 100%;
    max-width: 500px;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--gray-100);
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--background-light);
    border: 2px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #999;
    position: relative;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pricing {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.pricing::before {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-beige);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.price-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    transition: all 0.3s ease;
    background: transparent;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: rgba(212, 168, 83, 0.08);
    padding-left: 2.5rem;
}

.price-item h3 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.price-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    font-style: italic;
    display: block;
    margin-top: 0.2rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Onest', sans-serif;
    white-space: nowrap;
}

.reviews {
    padding: 100px 20px;
    background-color: var(--background-beige);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 0 auto;
    padding: 0 80px;
}

.reviews-slider {
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    padding: 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    margin: 0;
    margin-right: 2rem;
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
}

.review-card:last-child {
    margin-right: 0;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8eaed;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviewer span {
    color: #5f6368;
    font-size: 0.85rem;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbc04;
    font-size: 1.1rem;
}

.review-card p {
    color: #3c4043;
    font-style: normal;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
    border: 2px solid #e8eaed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviews-arrow:hover {
    background: var(--background-beige);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-arrow-left {
    left: 10px;
}

.reviews-arrow-right {
    right: 10px;
}

.contact {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.contact-info h3,
.opening-hours h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-link-tel,
.contact-link-email,
.contact-link-address {
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.contact-link-tel:hover,
.contact-link-email:hover {
    color: var(--text-dark);
}

.contact-link-address:hover {
    color: var(--text-dark);
}

.map-container {
    margin-top: 2rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.hours-list {
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed .time {
    color: #999;
    font-style: italic;
}

.hours-item.today {
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.15), transparent);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    font-weight: 700;
}

.hours-item.today .day {
    color: var(--accent-color);
}

.hours-item.today .time {
    color: var(--accent-color);
    font-weight: 700;
}

.day {
    font-weight: 500;
    color: var(--primary-color);
}

.time {
    color: #666;
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

.footer-description {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.social-link:focus {
    outline: none;
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-accent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.social-link i {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-link:hover i {
    color: var(--accent-color);
}

.social-link.facebook:hover i { color: #1877f2; }
.social-link.instagram:hover i { color: #e4405f; }
.social-link.google:hover i { color: #ea4335; }
.social-link.whatsapp:hover i { color: #25d366; }

.footer-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-section h4 i {
    font-size: 1rem;
}

.footer-nav,
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.services-list li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-nav a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.footer-nav a i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.services-list i {
    color: var(--accent-color);
    font-size: 0.8rem;
    width: 14px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-address,
.contact-hours {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--secondary-color);
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        order: 1;
        max-width: 100%;
    }

    .about-image {
        order: 2;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .image-slider {
        width: 100%;
        max-width: 600px;
        height: 450px;
        margin: 0 auto;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .about {
        padding: 80px 40px;
    }

    .about h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about p {
        font-size: 1rem;
        text-align: center;
        padding-left: 0;
    }

    .about-icon {
        display: none !important;
    }

    .about-text-icon {
        display: block !important;
        color: var(--accent-color);
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        position: static !important;
    }

    .about p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing {
        padding: 80px 40px;
    }

    .pricing-grid {
        max-width: 700px;
    }

    .reviews {
        padding: 80px 40px;
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .contact {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile Menu Overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo-image {
        height: 90px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger:hover .bar {
        background-color: var(--accent-color);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        padding-top: 120px;
        flex-direction: column;
        background-color: rgba(248, 245, 240, 0.98);
        backdrop-filter: blur(10px);
        width: 280px;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        gap: 0.5rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu.active li {
        animation: slideInUp 0.3s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-left: 3px solid transparent;
    }

    .nav-link:hover {
        background-color: rgba(212, 168, 83, 0.1);
        border-left-color: var(--accent-color);
    }

    .nav-link::after {
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero {
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }

    .hero-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-stat .stat-number {
        font-size: 2.5rem;
    }

    .services {
        padding: 80px 20px;
    }

    .services h2,
    .about h2,
    .reviews h2,
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .about-text {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .about-text h2 {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }

    .about p {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .about-icon {
        display: none !important;
    }

    .about-text-icon {
        display: block !important;
        color: var(--accent-color);
        font-size: 2rem;
        margin-bottom: 0.3rem;
        position: static !important;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1.5rem 0;
        width: 100%;
    }

    .feature-item {
        flex-direction: column;
        padding: 10px 6px;
        gap: 0.4rem;
        border-radius: 12px;
        border-left-width: 3px;
        white-space: normal;
    }

    .feature-item i {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .feature-item span {
        font-size: 0.65rem;
        text-align: center;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .about-stats {
        display: none;
    }

    .about-image {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        order: 2;
        width: 100%;
        padding: 0;
    }

    .image-slider {
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin: 0 auto;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .slider-images {
        background: var(--gray-200);
    }

    .slider-image {
        object-fit: cover;
        object-position: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(26, 26, 26, 0.8);
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .pricing {
        padding: 60px 20px;
    }

    .pricing::before {
        width: 80px;
        height: 3px;
        margin: 0 auto 2rem;
    }

    .pricing h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .price-item {
        padding: 1rem 1.5rem;
    }

    .price-item:hover {
        padding-left: 1.8rem;
    }

    .price-item h3 {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.15rem;
    }

    .reviews {
        padding: 60px 20px;
    }

    .reviews h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .reviews-slider-wrapper {
        padding: 0 45px;
        max-width: 100%;
    }

    .reviews-track {
        gap: 1rem;
    }

    .review-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        margin-right: 0;
        padding: 1.5rem;
    }

    .reviewer {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviewer strong {
        font-size: 0.95rem;
    }

    .reviewer span {
        font-size: 0.8rem;
    }

    .stars {
        margin-bottom: 0.8rem;
    }

    .stars i {
        font-size: 1rem;
    }

    .review-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .reviews-arrow-left {
        left: 5px;
    }

    .reviews-arrow-right {
        right: 5px;
    }

    .review-button-container {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .review-button-container .cta-button {
        background: rgba(212, 168, 83, 0.15);
        color: var(--text-dark);
        border: 2px solid var(--accent-color);
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0;
    }

    .review-button-container .cta-button:hover {
        background: var(--gradient-accent);
        color: var(--text-dark);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        margin-top: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
        order: 1;
    }

    .footer-links,
    .footer-services {
        display: none;
    }

    .footer-contact {
        order: 2;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-image {
        height: 60px;
    }

    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact .contact-details {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem 1.5rem;
        align-items: start;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-contact .contact-item {
        display: flex !important;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        align-items: center;
        margin-bottom: 0;
    }

    .footer-contact .contact-item i {
        margin-top: 0;
        margin-right: 0;
        font-size: 1.5rem;
    }

    .footer-contact .contact-text {
        gap: 0.4rem;
        align-items: center;
    }

    .footer-contact .contact-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        display: flex !important;
    }

    .footer-contact .contact-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        display: flex !important;
    }

    .footer-contact .contact-item:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex !important;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
    }

    .copyright p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-links-bottom {
        gap: 1rem;
        justify-content: center;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-image {
        height: 80px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-menu {
        padding-top: 100px;
        width: 260px;
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.9rem 1.5rem;
    }

    .hero {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .stat-number {
        font-size: 2rem;
    }

    .hero-stat .stat-label {
        font-size: 0.9rem;
    }

    .services {
        padding: 60px 15px;
    }

    .services h2,
    .about h2,
    .reviews h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .service-card,
    .review-card {
        padding: 2rem 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 1.5rem;
    }

    .stat {
        max-width: 280px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo-image {
        height: 55px;
    }

    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .social-links {
        gap: 0.85rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link i {
        font-size: 1.15rem;
    }

    .footer-contact .contact-item {
        gap: 0.6rem;
    }

    .footer-contact .contact-item i {
        font-size: 1.4rem;
    }

    .footer-contact .contact-text {
        gap: 0.35rem;
    }

    .footer-contact .contact-label {
        font-size: 0.8rem;
    }

    .footer-contact .contact-link,
    .footer-contact .contact-address,
    .footer-contact .contact-hours {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1.25rem 0;
        margin-top: 2rem;
    }

    .copyright p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .footer-links-bottom {
        gap: 0.85rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}

.image-placeholder {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}