/* ===========================
   Global Styles
   =========================== */
:root {
    /* Custom Color Theme - Based on New Ghosh Caterer Logo */
    --primary-color: #C9A961;        /* Champagne Gold - Main brand color */
    --primary-dark: #B8935E;         /* Darker Gold - Hover states */
    --primary-light: #E5D5B7;        /* Light Gold - Backgrounds */
    --secondary-color: #2C2416;      /* Deep Brown - Text accents */
    --accent-gold: #D4AF37;          /* Rich Gold - Highlights */
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #C9A961;        /* Using brand gold for warnings */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-muted: #6c757d;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1510 100%) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img.logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.8));
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--primary-color);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    margin-top: 76px;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===========================
   Features Section - Enhanced with Gradients
   =========================== */
.features-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gradient Backgrounds for Each Card - Golden/Champagne Theme */
.feature-card-gradient-1 {
    background: linear-gradient(135deg, #C9A961 0%, #B8935E 100%);
}

.feature-card-gradient-2 {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
}

.feature-card-gradient-3 {
    background: linear-gradient(135deg, #B8935E 0%, #8B7355 100%);
}

.feature-card-gradient-4 {
    background: linear-gradient(135deg, #E5D5B7 0%, #C9A961 100%);
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Icon Circle with Animation */
.feature-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-circle::before {
    transform: scale(1.2);
    opacity: 0;
}

.feature-icon-circle i {
    color: white;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon-circle {
    transform: rotateY(360deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Feature Number Badge */
.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-section {
        margin-top: -30px;
    }
    
    .feature-card {
        min-height: 240px;
        margin-bottom: 1rem;
    }
    
    .feature-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-circle i {
        font-size: 2rem;
    }
}

/* ===========================
   Statistics Section with Parallax
   =========================== */
.parallax-section {
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.85), rgba(44, 36, 22, 0.9));
    z-index: 1;
}

.stats-section .stat-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stats-section .stat-item:hover {
    transform: translateY(-10px);
}

.stats-section .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-section .stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.stats-section .counter {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile: Disable parallax for better performance */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 300px;
    }
    
    .stats-section .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stats-section .stat-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===========================
   Service Cards
   =========================== */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-image {
    overflow: hidden;
    height: 250px;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(184, 147, 94, 0.9));
    transition: opacity 0.3s ease;
    opacity: 0;
}

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

.service-card:hover .service-overlay i {
    opacity: 1 !important;
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-icon-large i {
    font-size: 4rem;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-small {
    background: var(--primary-color);
}

.service-card:hover .service-icon-small i {
    color: white !important;
}

/* ===========================
   Menu Cards
   =========================== */
.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover img {
    transform: scale(1.1);
}

.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
}

/* ===========================
   Menu Item Cards
   =========================== */
.menu-item-card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    gap: 1rem;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.menu-item-image {
    flex-shrink: 0;
}

.menu-item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.menu-filter-btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===========================
   Testimonial Cards
   =========================== */
.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-card .avatar img {
    width: 60px;
    height: 60px;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920') center/cover;
    padding: 150px 0 100px;
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* ===========================
   Stats Section
   =========================== */
.stat-item {
    padding: 2rem;
}

.counter {
    font-family: 'Poppins', sans-serif;
}

/* ===========================
   Team Cards
   =========================== */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image img {
    width: 100%;
    border-radius: 10px;
}

/* ===========================
   Value & Why Cards
   =========================== */
.value-card,
.why-card {
    background: linear-gradient(135deg, #C9A961 0%, #B8935E 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card h5,
.why-card h5 {
    color: white;
    font-weight: 600;
}

.value-card p,
.why-card p {
    color: rgba(255, 255, 255, 0.9);
}

.additional-service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card:hover,
.why-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon i,
.why-icon i {
    font-size: 3rem;
    color: white;
}

/* ===========================
   Mission & Vision Cards
   =========================== */
.mission-card,
.vision-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===========================
   Process Cards
   =========================== */
.process-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

/* ===========================
   Package Cards
   =========================== */
.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
}

/* ===========================
   Contact Section
   =========================== */
.contact-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ===========================
   Accordion
   =========================== */
.accordion-button {
    font-weight: 600;
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1510 100%) !important;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
}

.footer img.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    padding: 8px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer h5:hover {
    opacity: 0.7;
}

.footer p,
.footer a,
.footer span,
.footer li {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.footer a:hover,
.footer p:hover,
.footer span:hover {
    color: rgba(201, 169, 97, 0.6) !important;
}

.footer .social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

/* Social Media Brand Colors */
.footer .social-links a .bi-facebook {
    color: #1877F2 !important;
}

.footer .social-links a .bi-instagram {
    color: #E4405F !important;
}

.footer .social-links a .bi-twitter {
    color: #1DA1F2 !important;
}

.footer .social-links a .bi-youtube {
    color: #FF0000 !important;
}

.footer hr {
    border-color: rgba(201, 169, 97, 0.3) !important;
    opacity: 0.5;
}

.footer .bi {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.footer li:hover .bi {
    opacity: 0.7;
}

/* ===========================
   Service Section Animations
   =========================== */
.service-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.service-animate-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.service-animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-animate-left:nth-child(1) { animation-delay: 0.1s; }
.service-animate-left:nth-child(2) { animation-delay: 0.2s; }
.service-animate-right:nth-child(1) { animation-delay: 0.1s; }
.service-animate-right:nth-child(2) { animation-delay: 0.2s; }

.main-services .row {
    margin-bottom: 3rem;
}

.main-services img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 15px;
}

.main-services img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.service-icon-large i {
    color: white !important;
    font-size: 2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(201, 169, 97, 0.6);
    }
}

/* ===========================
   CTA Section with Parallax
   =========================== */
.cta-section {
    position: relative;
    background-image: url('../images/gallery/catering-46.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.92) 0%, rgba(201, 169, 97, 0.85) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Fallback for mobile devices that don't support fixed attachment */
@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll;
    }
}

/* ===========================
   Back to Top Button
   =========================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 998;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#backToTop i {
    font-size: 1.5rem;
}

/* ===========================
   Animations
   =========================== */
.animate-fade-in {
    animation: fadeIn 1s ease;
}

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

/* ===========================
   Utilities
   =========================== */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .features-section {
        margin-top: 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .menu-item-image img {
        width: 100px;
        height: 100px;
    }
}

/* ===========================
   Floating Action Buttons
   =========================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.call-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005f99 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #005f99 0%, #004466 100%);
}

/* Show call button only on mobile devices */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
}

/* ===========================
   Custom Button Styles
   =========================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .footer,
    #backToTop,
    .cta-section {
        display: none;
    }
}
