/* style.css - Main Stylesheet for Golden Caterers */

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4AF37;
    /* Gold */
    --primary-dark: #B8941F;
    --secondary: #1a1a1a;
    /* Dark */
    --accent: #8B0000;
    /* Deep red */
    --light: #f9f7f2;
    --gray: #555;
    --light-gray: #eee;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: slideUp 1s ease-out 0.9s forwards;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary);
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 120px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 1.1rem;
}

.breadcrumb li {
    margin: 0 10px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: white;
}

/* ===== SERVICES PAGE ===== */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-category {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.service-category.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-category-img {
    height: 220px;
    overflow: hidden;
}

.service-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-category:hover .service-category-img img {
    transform: scale(1.05);
}

.service-category-content {
    padding: 30px;
}

.service-category-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-category-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    background-color: var(--light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== SCROLL ANIMATIONS ===== */
.service-category,
.feature-item,
.team-member,
.menu-item,
.service-category-box,
.team-member-card,
.menu-category-box,
.contact-method-card,
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Specific delays for staggered effect if needed */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FFF);
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--primary);
}

/* ===== GLOBAL PREMIUM TOUCHES ===== */
::selection {
    background: var(--primary);
    color: var(--secondary);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 40px;
}

/* ===== ABOUT PAGE ENHANCEMENTS ===== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    z-index: 2;
    min-width: 150px;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 450px;
    /* Increased height for better visibility */
    overflow: hidden;
    background-color: #f0f0f0;
    /* Light gray background for the empty space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full image without cropping */
    transition: transform 0.6s ease;
}

.team-member-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.designation {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 0;
        bottom: 0;
        transform: scale(0.8);
    }
}

/* ===== GALLERY PAGE ENHANCEMENTS ===== */
/* ===== ADVANCED GALLERY STYLES ===== */
.gallery-grid {
    column-count: 3;
    column-gap: 30px;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fe;
    /* Light modern background like the image */
    background-image: none;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    /* Spacing for masonry */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    /* Removed thick border for cleaner look */
    cursor: pointer;
    break-inside: avoid;
    /* Prevent breaking in columns */
    transform-style: preserve-3d;
}

/* Premium Gold Border Effect */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    /* Allow height to adapt */
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(1);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(2px);
    /* Glassmorphism effect */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-overlay-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.gallery-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
}

.lightbox-caption h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.lightbox-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    outline: none;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    user-select: none;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: white;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.gallery-filter-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .gallery-filter-nav {
        flex-direction: column;
        border-radius: 20px;
    }
}

/* ===== MENUS PAGE ===== */
.menus-section {
    padding: 100px 0;
    background-color: white;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.menu-tab {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--primary);
    color: white;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-item-header h4 {
    font-size: 1.3rem;
    color: var(--secondary);
}

.menu-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item p {
    color: var(--gray);
    margin-bottom: 15px;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-tag {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== CONTACT PAGE ENHANCEMENTS ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
}

.contact-form-container .form-control {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px;
    border-radius: 12px;
}

.contact-form-container .form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.contact-form-container label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1);
}

.footer-info-list span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-container {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button,
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }
}

/* ===== ADD THESE STYLES TO YOUR EXISTING style.css ===== */

/* ===== SERVICES PAGE ENHANCEMENTS ===== */
.services-intro {
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.service-tabs-wrapper {
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
}

.glass-tabs {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-type-tab,
.filter-btn {
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-type-tab i,
.filter-btn i {
    font-size: 1.1rem;
    color: var(--primary);
}

.service-type-tab.active,
.filter-btn.active {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-type-tab.active i,
.filter-btn.active i {
    color: white;
}

.service-type-tab:hover:not(.active),
.filter-btn:hover:not(.active) {
    background: rgba(212, 175, 55, 0.1);
}

.tab-content-container {
    min-height: 400px;
    position: relative;
}

.service-type-content {
    display: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-type-content.active {
    display: block;
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-category-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-category-box:hover .service-category-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.service-category-box h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 0;
}

.service-category-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray);
}

.feature-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.box-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.box-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.highlight-box {
    background: linear-gradient(145deg, #ffffff, #fdfcf8);
    border-left: 5px solid var(--primary);
}

/* CTA Banner Card */
.cta-banner-card {
    margin-top: 80px;
    background: var(--secondary);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(25deg);
}

.cta-banner-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-banner-decoration {
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    right: 40px;
    bottom: -20px;
    transform: rotate(-15deg);
}

/* Footer Info List */
.footer-info-list {
    list-style: none;
}

.footer-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-info-list li i {
    color: var(--primary);
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered Delays */
.delay-1 {
    animation-delay: 0.1s !important;
}

.delay-2 {
    animation-delay: 0.2s !important;
}

.delay-3 {
    animation-delay: 0.3s !important;
}

.delay-4 {
    animation-delay: 0.4s !important;
}

.delay-5 {
    animation-delay: 0.5s !important;
}

.delay-6 {
    animation-delay: 0.6s !important;
}

.delay-7 {
    animation-delay: 0.7s !important;
}

.delay-8 {
    animation-delay: 0.8s !important;
}

/* Responsive Enchancements */
@media (max-width: 992px) {
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-banner-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-banner-decoration {
        opacity: 0.5;
        font-size: 5rem;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .glass-tabs {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
    }

    .service-type-tab {
        justify-content: center;
    }

    .cta-banner-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== ADD TO EXISTING style.css ===== */

/* Service Icon in Service Cards */
.service-card .service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: -60px;
    width: 100%;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: var(--gray);
    font-weight: 500;
}

/* Menu Highlights */
.menu-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-highlight-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.menu-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-highlight-img {
    height: 200px;
    overflow: hidden;
}

.menu-highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-highlight-item:hover .menu-highlight-img img {
    transform: scale(1.05);
}

.menu-highlight-content {
    padding: 25px;
}

.menu-highlight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.menu-price {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 15px;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-author p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary);
}

/* Responsive Adjustments for Home Page */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        bottom: -100px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }

    .testimonial-item {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .menu-highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Background Image Overlay with Parallax Effect */
.bg-image-overlay {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bg-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Deep dark overlay for contrast */
    z-index: 1;
}

.bg-image-overlay .service-category-box,
.bg-image-overlay .gallery-item {
    color: var(--secondary);
    /* Ensure cards remain dark text on light background */
}

/* Masterpieces Horizontal Slider */
.masterpieces-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.masterpieces-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.item-slide {
    flex: 0 0 350px;
    /* Fixed width for consistent slide size */
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .item-slide {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

/* Premium Menu Styling Enhancements */
.premium-category {
    background: white;
    padding: 40px !important;
    border-radius: 30px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.1) !important;
    border-color: var(--primary) !important;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-main-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.category-divider {
    height: 3px;
    width: 50px;
    background: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.premium-menu-list {
    list-style: none;
    padding: 0;
}

.premium-menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-menu-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.lightbox-info p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

.premium-menu-list li:hover {
    color: var(--primary);
    transform: translateX(10px);
}

/* =========================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   ========================================= */

/* Tablet & Smaller Desktop (max-width: 992px) */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        margin-top: 50px;
    }

    /* Navigation for Tablet */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 60px;
        /* Account for fixed header */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Stack Grids */
    .service-categories,
    .features-grid,
    .team-grid,
    .menu-highlight-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer Adjustments */
    .footer-content {
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .logo {
        justify-content: center;
    }

    .footer-info-list li {
        justify-content: center;
    }

    /* Menu Tabs Stack */
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-tab {
        width: 45%;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Team Image Adjustments */
    .team-img {
        height: 350px;
        /* Reduce height on mobile */
    }

    /* Lightbox Adjustments */
    .lightbox-content {
        width: 95%;
    }

    .lightbox-img {
        max-height: 60vh;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px;
    }

    .lightbox-info h3 {
        font-size: 1.2rem;
    }

    .lightbox-info p {
        font-size: 0.9rem;
    }

    /* Adjust Experience Badge */
    .experience-badge {
        padding: 15px;
        min-width: 120px;
    }

    .experience-badge .num {
        font-size: 1.8rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .menu-tab {
        width: 100%;
    }

    .nav-links {
        width: 100%;
        /* Full screen menu on small mobile */
    }

    /* Adjust Gallery Columns */
    .gallery-grid {
        column-count: 1;
    }
}