* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f5f0;
}

/* Navbar */
nav {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0;
}

nav li {
    position: relative;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #c9a961;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #c9a961;
}

nav a:hover::after {
    width: 100%;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #1a1a1a;
}

.carousel-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    color: white;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #c9a961;
    color: #c9a961;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.slide-btn:hover {
    background: #c9a961;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.slide:nth-child(1) { 
    background: url('images/carousel-img2') center/cover;
}
.slide:nth-child(2) { 
    background: url('images/carousel-img1.jpg') center/cover;
}
.slide:nth-child(3) { 
    background: url('images/carousel-img3') center/cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.2);
    border: 2px solid rgba(201, 169, 97, 0.5);
    color: white;
    font-size: 1.5rem;
    padding: 1rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(201, 169, 97, 0.8);
    border-color: #c9a961;
}

.carousel-btn.prev { left: 2rem; }
.carousel-btn.next { right: 2rem; }

.carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 8%;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #c9a961;
    width: 60px;
}

/* Content Section */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background: #f8f5f0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Georgia', serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

.content-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section:nth-child(3) {
    animation-delay: 0.2s;
}

.content-section:nth-child(4) {
    animation-delay: 0.4s;
}

.content-section:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a961;
    z-index: 0;
}

.content-image img {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s;
}

.content-image:hover img {
    transform: translate(10px, 10px);
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
    font-weight: 300;
}

/* Satisfied Customers Section */
.customers-section {
    background: #fff;
    padding: 6rem 3rem;
    border-top: 1px solid #e5e5e5;
}

.customers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.customers-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.customers-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
    font-weight: 300;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.3s;
    min-height: 100px;
}

.customer-logo:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.customer-logo img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: all 0.3s;
}

.customer-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Services Intro Section */
.services-intro {
    background: #f8f5f0;
    padding: 4rem 3rem;
}

.services-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.note-box {
    background: #fff;
    border-left: 4px solid #c9a961;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.note-box p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1rem;
}

/* Menu Section */
.menu-section {
    background: #fff;
    padding: 4rem 3rem;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

/* Menu Category */
.menu-category {
    background: #fafafa;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #c9a961;
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

/* Menu Items */
.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    border-left-color: #c9a961;
    background: #fffdf8;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.15);
}

.item-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.trophy {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.item-prices {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.price {
    font-size: 1.2rem;
    color: #c9a961;
    font-weight: 600;
    min-width: 70px;
    text-align: right;
}

.price::before {
    content: '₱';
    margin-right: 2px;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 3rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #c9a961;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid #c9a961;
    color: #c9a961;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.cta-btn:hover {
    background: #c9a961;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #c9a961;
    padding: 4rem 3rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    transition: all 0.3s;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.social-links img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

footer p {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.95rem;
    color: #999;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .logo img {
        height: 45px;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
    }

    .carousel {
        height: 500px;
    }

    .slide {
        padding-left: 5%;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-dots {
        left: 5%;
    }

    .content-section,
    .content-section:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .content-image {
        min-width: 100%;
    }

    .content-image::before {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-text h2 {
        font-size: 1.8rem;
    }

    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }

    .customers-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .customers-text h2 {
        font-size: 2rem;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .customer-logo {
        padding: 1rem;
        min-height: 80px;
    }

    /* Services Page Mobile Responsive */
    .services-hero {
        height: 300px;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .menu-category {
        padding: 2rem 1.5rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-prices {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .price {
        font-size: 1.1rem;
        min-width: 60px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}