/* Modern Website Redesign */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.section-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #c9a96e;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: #666666;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    border: 2px solid #c9a96e;
    color: #c9a96e;
    background-color: transparent;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c9a96e;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.logo-text p {
    font-size: 0.875rem;
    color: #c9a96e;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #c9a96e;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.25rem;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: #666666;
    font-size: 0.875rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn.active {
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: #ffffff;
}

.lang-btn:hover:not(.active) {
    color: #c9a96e;
    background: rgba(201, 169, 110, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(201, 169, 110, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.75rem;
    color: #c9a96e;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #c9a96e;
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #c9a96e;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #c9a96e;
    border-color: #c9a96e;
}

/* Sections */
.about, .services, .gallery, .reviews, .contact {
    padding: 6rem 0;
}

.about {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.services {
    background: #ffffff;
}

.gallery {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.reviews {
    background: #ffffff;
}

.contact {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
    color: #ffffff;
    font-weight: 700;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.service-card.popular {
    border-color: #c9a96e;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.125rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
}

.service-icon {
    font-size: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-duration {
    color: #c9a96e;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(201, 169, 110, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.service-description {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #c9a96e;
}

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

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.8), rgba(139, 115, 85, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1a1a;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #c9a96e;
    color: #ffffff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1a1a;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c9a96e;
    color: #ffffff;
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-quote {
    font-size: 2rem;
    color: #c9a96e;
    font-weight: 700;
}

.review-stars {
    color: #c9a96e;
    font-size: 1.25rem;
}

.review-text {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.review-author strong {
    color: #1a1a1a;
    display: block;
    font-size: 1.1rem;
}

.review-service {
    color: #c9a96e;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-rating {
    color: #c9a96e;
    font-size: 1rem;
}

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

.rating-box {
    display: inline-block;
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.1);
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #c9a96e;
    margin-bottom: 1rem;
}

.rating-box .rating-stars {
    color: #c9a96e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.rating-box p {
    color: #666666;
    font-size: 1.1rem;
}

/* Barbershop Background Section */
.barbershop-background {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(201, 169, 110, 0.4)),
        url('https://www.pablosbarbershop.cz/wallpaper/W1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.barbershop-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.barbershop-text {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.barbershop-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
}

.barbershop-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    border-radius: 2px;
}

.barbershop-text p {
    font-size: 1.25rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .barbershop-background {
        padding: 5rem 0;
    }
    
    .barbershop-text {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .barbershop-text h2 {
        font-size: 2rem;
    }
    
    .barbershop-text p {
        font-size: 1.1rem;
    }
    
    .barbershop-pole {
        right: 2%;
        width: 15px;
    }
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-card {
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.1);
}

.info-card h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: #ffffff;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.info-content h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p,
.info-content a {
    color: #666666;
    text-decoration: none;
    line-height: 1.6;
}

.info-content a:hover {
    color: #c9a96e;
}

.contact-actions {
    margin-top: 3rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-map h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.1);
}

.map-note {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-img {
    border-color: #c9a96e;
}

.footer-brand .logo-text h3 {
    color: #ffffff;
    font-size: 1.5rem;
}

.footer-brand .logo-text p {
    color: #c9a96e;
}

.footer-tagline {
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 24rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #c9a96e;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-links a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-links a:hover {
    color: #c9a96e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #999999;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.social-links a:hover {
    color: #c9a96e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .carousel-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

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

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

    .section-title {
        font-size: 2rem;
    }

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

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

    .feature-card,
    .service-card,
    .review-card {
        padding: 2rem;
    }

    .info-card {
        padding: 2rem;
    }
}

/* Loading Animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Mobile Menu Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.feature-card,
.service-card,
.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}

/* Improved smooth scrolling for all browsers */
* {
    scroll-behavior: smooth;
}

/* Better scroll performance */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}