/* =============================================
   IMPORTS AND FONT DECLARATIONS
   ============================================= */
@import url("https://api.fontshare.com/v2/css?f[]=archivo@100,200,300,400,500,600,700,800,900&f[]=clash-display@200,300,400,500,600,700&display=swap");

/* =============================================
   CSS CUSTOM PROPERTIES / VARIABLES
   ============================================= */
:root {
    /* Main Website Color Variables */
    --primary-orange: #e67e22;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --grey-divider: #808080;
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-archivo: "Archivo", sans-serif;
    --font-clash-display: "Clash Display", sans-serif;

    /* Layout */
    --max-width: 2100px;

    /* Spacing */
    --spacing-xs: 25px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius */
    --radius-md: 25px;

    /* Slider Variables */
    --slide-width: min(25vw, 300px);
    --slide-aspect: 2 / 3;
    --slide-transition-duration: 800ms;
    --slide-transition-easing: ease;
}

/* =============================================
   RESET AND BASE STYLES
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    background-color: #000000e8;
    color: var(--white);
    overflow-x: hidden;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
    border: none;
}

.header-divider {
    border: none;
    height: 4px;
    width: 100%;
    margin: 20px 0;
    background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
}

/* =============================================
   FIXED BACKGROUND STYLES
   ============================================= */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.fixed-background .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.fixed-background .menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.scrollable-content {
    position: relative;
    z-index: 1;
}

/* =============================================
   HEADER SECTION
   ============================================= */
.main-header {
    margin-top: 40px;
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-medium);
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%,
        rgba(20, 20, 20, 0.9) 50%,
        rgba(40, 40, 40, 0.95) 100%);
    border-bottom: 3px solid rgba(255, 215, 0, 0.9);
    border-top: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px) saturate(1.1);
}

.header-content {
    max-width: 2100px;
    width: 100%;
    transition: padding var(--transition-medium);
}

.header-navigation {
    display: flex;
    justify-content: space-between; /* Keep original space-between */
    align-items: center;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 8px var(--spacing-lg);
    /* Responsive gap that shrinks as screen gets smaller */
    gap: max(20px, min(650px, 40vw - 400px));
    transition: gap 0.3s ease;
}

/* =============================================
   LOGO SECTION
   ============================================= */
.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
    height: 240px;
}

.brand-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 150px;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #57000017;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: 
        all var(--transition-fast),
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 0.3s ease-out,
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.2s ease-out;
}

.brand-logo a:hover {
    transform: scale(1.03) translateY(-2px);
    border-color: #ffc107;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #e4a700a6;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-logo a:active {
    transform: scale(0.98) translateY(1px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #3f3324, #1f1f1f, #4b4747ab);
    border: 2px solid #cc8400;
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background 0.1s ease;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    margin: 0;
    object-fit: contain;
    transition: all var(--transition-fast);
    filter: 
        drop-shadow(12px 20px 40px rgba(0, 0, 0, 0.9))
        drop-shadow(25px 35px 70px rgba(0, 0, 0, 0.4))
        brightness(1.05)
        contrast(1.02);
}

.logo-image:hover {
    filter: 
        drop-shadow(15px 25px 50px rgba(0, 0, 0, 0.95))
        drop-shadow(30px 40px 80px rgba(0, 0, 0, 0.5))
        drop-shadow(45px 55px 100px rgba(0, 0, 0, 0.2))
        brightness(1.08)
        contrast(1.05);
    transform: translateY(-3px);
}

/* =============================================
   NAVIGATION MENU
   ============================================= */
.primary-navigation {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin: 0 15px;
    padding: 15px 30px;
    /* Use consistent gradient background approach */
    background: linear-gradient(135deg, 
        rgba(255, 199, 79, 0.959) 0%,
        rgba(255, 199, 79, 0.959) 100%);
    border-radius: 100px;
    box-shadow: 
        0 2px 0 var(--primary-orange),
        0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Optimized transitions */
    transition: 
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-image 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    will-change: transform, box-shadow, background;
}

.nav-menu::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.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    /* Add opacity control */
    opacity: 0;
}

.nav-menu:not(:hover)::before {
    left: -100%;
    transition: left 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.2s ease;
    opacity: 0;
}

.nav-menu:hover::before {
    left: 100%;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s ease;
    opacity: 1;
}

.nav-menu:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 0 var(--primary-orange),
        0 16px 32px rgba(230, 125, 34, 0.25),
        0 24px 48px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    /* Change to background-image instead of background */
    background-image: linear-gradient(135deg, 
        rgba(255, 220, 100, 0.98) 0%,
        rgba(255, 199, 79, 0.98) 50%,
        rgba(240, 180, 60, 0.98) 100%);
}

/* Optional: Add focus state for accessibility */
.nav-menu:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    transition: outline 0.2s ease-in-out;
}

.nav-item {
    position: relative;
    margin: 0;
}

/* Navigation Links - KEEP SAME SIZE */
.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px; /* KEEP original */
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px; /* KEEP original */
    background-color: rgb(255, 255, 255);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(240, 240, 240);
    position: relative;
    overflow: hidden;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

/* All existing navbar-link states remain exactly the same */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 102, 0, 0.08), 
        transparent);
    transition: left var(--transition-slow);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgb(255, 102, 0),
        transparent);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-link:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(255, 102, 0);
    color: rgb(20, 20, 20);
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 1px 3px rgba(255, 102, 0, 0.15);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:focus {
    outline: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(255, 102, 0, 0.3);
}

.nav-link--active {
    color: #ffffff;
    background-color: rgb(255, 149, 28);
    border: 2px solid rgb(255, 136, 0);
    
    transform: translateY(1px) scale(0.98);
    
    box-shadow: 
        0 1px 6px rgba(255, 136, 0, 0.3),
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link--active:hover {
    background-color: rgb(255, 123, 0);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(228, 102, 0);
    color: #ffffff;
    
    box-shadow: 
        0 2px 10px rgba(255, 136, 0, 0.35),
        inset 0 2px 8px rgba(0, 0, 0, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.nav-link--active::after {
    width: 0;
}

.nav-link:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(245, 245, 245);
    border-color: rgb(220, 220, 220);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease,
        border-color 0.1s ease;
}

.nav-link--active:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 0px 2px rgba(255, 136, 0, 0.4),
        inset 0 3px 10px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(230, 115, 10);
    border-color: rgb(200, 100, 0);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-link {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .nav-link:hover {
        transform: translateY(0.5px) scale(0.99); /* Less dramatic on mobile */
    }
    
    /* Adjusted 3D effect for mobile */
    .nav-link:active {
        transform: translateY(1px) scale(0.98);
    }
    
    .nav-link--active {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:hover {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:active {
        transform: translateY(1px) scale(0.98);
    }
}

/* =============================================
   MOBILE MENU TOGGLE
   ============================================= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 199, 79, 0.9);
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1003;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.footer {
    margin-top: -20px;
    background-color: #000000e0;
    padding: 121px 20px 20px;
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Newsletter Section */
.newsletter-container {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    transition: all 0.3s ease;
    margin-bottom: -60px;
    margin-top: -40px;
}

.newsletter-section {
    max-width: 510px;
    width: 100%;
    text-align: right;
    padding: 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: 0;
}

.newsletter-section:hover {
    background: transparent;
    transform: translateY(-3px);
    animation: sectionPulse 2s ease-in-out infinite;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
}

.newsletter-section:hover::before {
    opacity: 1;
}

.newsletter-section h2 {
    color: #ffae00;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: "Boldonse", system-ui;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.newsletter-section:hover h2 {
    color: #fff;
    transform: translateX(10px);
}

.newsletter-form {
    justify-content: flex-end;
    display: flex;
    margin: 0;
}

.input-wrapper {
    display: flex;
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: "Quicksand", sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper:hover input {
    color: #000;
    font-weight: 500;
}

.input-wrapper input::placeholder {
    color: #999;
    font-weight: 300;
    transition: all 0.3s ease;
}

.input-wrapper:hover input::placeholder {
    color: #666;
}

.input-wrapper button {
    outline: #000 1px solid;
    background: rgb(255, 166, 0);
    color: #525050;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 4px;
    margin-top: 5px;
}

.input-wrapper button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(255, 153, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.input-wrapper button:hover::before {
    width: 200%;
    height: 200%;
}

.input-wrapper button:hover {
    background: #111111;
    color: #000;
    transform: scale(1.08);
}

.input-wrapper button:active {
    transform: scale(0.95);
}

.input-wrapper button svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-wrapper button:hover svg {
    transform: translateX(3px) rotate(10deg);
}

/* Section Divider */
.section-divider2 {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffae00, transparent);
    margin: 60px 0;
    width: 100%;
}

/* Footer Logo */
.footer-logo {
    grid-column: 1;
}

.footer-logo img {
    max-width: 230px;
    height: auto;
    transition: transform 0.8s ease-out 0.2s, filter 0.8s ease-out 0.2s;
    cursor: pointer;
    filter: brightness(1);
    transform: scale(1) rotate(0deg);
}

.footer-logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) drop-shadow(0 8px 25px rgba(255, 107, 107, 0.3));
    transition-delay: 0s;
}

.footer-logo img:active {
    transform: scale(0.95) rotate(-1deg);
    transition: transform 0.1s ease;
}

/* Footer Sections */
.footer-section {
    margin-top: -60px;
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::before,
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section h3::before {
    height: 2px;
    background-color: #8a8a8a;
    bottom: 5px;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.footer-section h3::after {
    height: 1px;
    background-color: #666;
    transform: scaleX(0.6);
    transform-origin: left;
}

.footer-section h3:hover::after {
    transform: scaleX(1);
    background-color: #ff893a;
    box-shadow: 0 1px 5px rgba(255, 107, 107, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 5px;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:active {
    transform: translateX(5px) scale(0.95);
    transition: transform 0.1s ease;
}

/* Get In Touch Section */
.get-in-touch {
    grid-column: 4;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 5px;
    color: #cccccc;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icons a i,
.social-icons a svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff6b6b;
    border-radius: 5px;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.social-icons a:active {
    transform: translateY(-2px) rotate(2deg) scale(1.05);
    transition: transform 0.1s ease;
    animation: bounce 0.6s;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 12px;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}



/* =============================================
   ABOUT SECTION - EXISTING FROM CSS 2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* About Page Container - Diagonal Layout */
.About-page {
  position: relative;
  background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #0a0a0a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Background Particles */
.About-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Ccircle cx='9' cy='9' r='2'/%3E%3Ccircle cx='51' cy='51' r='2'/%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: particleFloat 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Main Title - Vertical Layout */
/* Main Title - Clean Centered Design */
.main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  text-align: center;
  padding: 8vh 2rem 4vh;
  position: relative;
  z-index: 10;
  color: transparent;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-title::before,
.main-title::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #d4af37;
  animation: sparkle 2s ease-in-out infinite alternate;
}

.main-title::before {
  left: 15%;
}

.main-title::after {
  right: 15%;
  animation-delay: 1s;
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
  100% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}

@keyframes sparkle {
  0% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* Intro Text - Simple Elegant Card */
.intro-text {
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 25, 15, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

.intro-text::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

.intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #f4e4bc;
  line-height: 1.9;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Mission Section - Redesigned Layout */
.mission-section {
  max-width: 1200px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
  position: relative;
}

.mission-section .section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #d4af37;
  position: relative;
}

.mission-section .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.mission-content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
  border-radius: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.mission-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mission-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #e8e8e8;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
    padding: 6vh 1rem 3vh;
  }
  
  .main-title::before,
  .main-title::after {
    display: none;
  }
  
  .intro-text {
    padding: 3rem 2rem;
    margin: 0 1rem 4rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
  }
  
  .mission-section {
    padding: 0 1rem;
  }
  
  .mission-section .section-subtitle {
    font-size: 2.5rem;
  }
  
  .mission-content {
    padding: 3rem 2rem;
  }
  
  .mission-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .intro-text {
    padding: 2.5rem 1.5rem;
  }
  
  .mission-content {
    padding: 2.5rem 1.5rem;
  }
  
  .mission-section .section-subtitle {
    font-size: 2rem;
  }
}

/* Content Grid - Asymmetric Masonry Layout */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
}

/* Story Section - Left Large */
.story-section {
  grid-row: 1 / 3;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 30px 0 30px 0;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 70%);
  z-index: 1;
}

.restaurant-frame {
  position: relative;
  margin-bottom: 2rem;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  overflow: hidden;
}

.restaurant-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: sepia(20%) saturate(120%);
}

.restaurant-frame:hover .restaurant-image {
  transform: scale(1.15) rotate(2deg);
  filter: sepia(0%) saturate(150%);
}

.story-text {
  position: relative;
  z-index: 2;
}

.story-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.story-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Stats Section - Right Column Split */
.stats-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  background: linear-gradient(135deg, #d4af37 0%, #8b4513 100%);
  padding: 2.5rem 2rem;
  border-radius: 0 25px 0 25px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.stat-item:hover::before {
  width: 300px;
  height: 300px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.gallery-image {
  border-radius: 25px 0 25px 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.gallery-image:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.gallery-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.8s ease;
  filter: brightness(90%);
}

.gallery-image:hover .gallery-photo {
  transform: scale(1.1);
  filter: brightness(110%);
}

/* Services Section - Redesigned with Better Layout */
.services-section {
  max-width: 1600px;
  margin: 0 auto 8rem;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(139, 69, 19, 0.03) 70%, transparent 100%);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}

/* Animated Background Pattern */
.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(212, 175, 55, 0.02) 30deg, 
      transparent 60deg
    );
  animation: rotateBackground 60s linear infinite;
  pointer-events: none;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.services-section .section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #8b4513 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.services-section .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

/* New Grid Layout - 2x2 Grid with Center Focus */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Central Decorative Element */
.services-grid::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #d4af37;
  z-index: 3;
  background: rgba(10, 10, 10, 0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.3);
  animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1); 
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

/* Service Items with Unique Positioning */
.service-item {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

/* Individual Item Positioning and Effects */
.service-item:nth-child(1) {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  border-radius: 30px 5px 30px 5px;
}

.service-item:nth-child(2) {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
  border-radius: 5px 30px 5px 30px;
}

.service-item:nth-child(3) {  
  transform: perspective(1000px) rotateY(-5deg) rotateX(-2deg);
  border-radius: 30px 5px 30px 5px;
}

.service-item:nth-child(4) {
  transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
  border-radius: 5px 30px 5px 30px;
}

/* Enhanced Hover Effects */
.service-item:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-30px) scale(1.05);
  box-shadow: 
    0 40px 80px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.7);
  border-radius: 30px;
}

/* Animated Border Effect */
.service-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37, transparent, #d4af37);
  background-size: 400% 400%;
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  animation: borderFlow 3s linear infinite;
  transition: opacity 0.5s ease;
}

.service-item:hover::before {
  opacity: 1;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Light Sweep Effect */
.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.service-item:hover::after {
  left: 100%;
}

/* Image with Mask Effect */
.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(40%) contrast(110%);
  position: relative;
}

.service-item:hover .service-image {
  transform: scale(1.15);
  filter: grayscale(0%) contrast(120%) brightness(110%);
}

/* Content Area with Glass Effect */
.service-content {
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.service-item h3 {
    margin-left: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  transition: all 0.5s ease;
}

.service-item:hover h3 {
  transform: translateY(-5px);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-item h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  transition: width 0.5s ease;
}

.service-item:hover h3::after {
  width: 60px;
}

.service-item p {
    margin-right: 10px;
    margin-left: 10px;
  color: #e0e0e0;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.service-item:hover p {
  opacity: 1;
  transform: translateY(-5px);
  color: #f0f0f0;
}



/* Optional: Add this to your HTML structure for better content organization */
/*
<div class="service-item">
  <img src="..." alt="..." class="service-image">
  <div class="service-content">
    <h3>Service Title</h3>
    <p>Service description...</p>
  </div>
</div>
*/


/* Taste Section - Diamond Grid */
/* Taste Section - Optimized for 4 Feature Items */
.taste-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b0e 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.taste-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.subtitle-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #8b4513;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.subtitle-highlight {
  font-family: 'Dancing Script', cursive;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Features Grid - Optimized 2x2 Layout for 4 Items */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Central Decorative Diamond */
.features-grid::before {
  content: '✧';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #d4af37;
  z-index: 10;
  background: rgba(10, 10, 10, 0.9);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.4),
    inset 0 0 20px rgba(212, 175, 55, 0.1);
  animation: centerRotate 20s linear infinite;
}

@keyframes centerRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Individual Feature Item Positioning */
.feature-item:nth-child(1) {
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  transform: perspective(1000px) rotateY(5deg) rotateX(3deg);
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  transform: perspective(1000px) rotateY(-5deg) rotateX(-3deg);
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  transform: perspective(1000px) rotateY(5deg) rotateX(-3deg);
  animation-delay: 0.4s;
}

.feature-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  padding: 3.5rem 2.5rem;
  border-radius: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-30px) scale(1.05);
  box-shadow: 0 50px 100px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.7);
}

/* Enhanced Background Effects */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.15) 180deg, transparent 360deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-card:hover::before {
  opacity: 1;
  animation: rotateConic 4s linear infinite;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.8s ease;
  animation: pulseBackground 3s ease-in-out infinite;
}

.feature-card:hover::after {
  opacity: 1;
}

@keyframes rotateConic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseBackground {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
  z-index: 2;
}

.feature-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background: linear-gradient(135deg, #d4af37 0%, #8b4513 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  position: relative;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.3) rotate(360deg);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
}

.feature-icon svg {
  width: 65px;
  height: 65px;
  transition: all 0.8s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.2);
}

.feature-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  font-weight: 700;
  transition: all 0.6s ease;
}

.feature-card:hover .feature-content h3 {
  color: #f4e4bc;
  transform: translateY(-5px);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.feature-content p {
  color: #e0e0e0;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  transition: all 0.6s ease;
}

.feature-card:hover .feature-content p {
  color: #f0f0f0;
  transform: translateY(-3px);
}

/* Connecting Lines Between Cards */
.features-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  z-index: 1;
  animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% { opacity: 0.3; box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
  100% { opacity: 0.8; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

/* Responsive Design for 4 Items */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
  }
  
  .feature-item:nth-child(n) {
    transform: none;
  }
  
  .feature-card:hover {
    transform: translateY(-20px) scale(1.03);
  }
  
  .features-grid::before {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
  }
  
  .features-grid::before,
  .features-grid::after {
    display: none;
  }
  
  .feature-card {
    padding: 3rem 2rem;
    min-height: 350px;
  }
  
  .subtitle-highlight {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .taste-section {
    padding: 4rem 1rem;
  }
  
  .subtitle-highlight {
    font-size: 2.8rem;
  }
  
  .feature-card {
    padding: 2.5rem 1.5rem;
    min-height: 320px;
  }
  
  .feature-icon {
    width: 90px;
    height: 90px;
  }
  
  .feature-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-content p {
    font-size: 1rem;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* Contact & Location Section */
/* ==========================================================================
   CONTACT & LOCATION SECTION - PREMIUM STYLES
   ========================================================================== */

/* Main Section Container */
/* Contact Location Section - Unique Hexagonal Design */
.contact-location-section {
    margin-bottom: 0 !important;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #0a0a0a 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Animated Background Constellation */
.contact-location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #d4af37, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, #f4e4bc, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(244, 228, 188, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, #d4af37, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: starField 20s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes starField {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.contact-location-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Title with Glowing Effect */
.contact-location-section .section-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 6rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: titlePulse 3s ease-in-out infinite alternate;
}

.contact-location-section .section-subtitle::before,
.contact-location-section .section-subtitle::after {
  content: '✧';
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: #d4af37;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.contact-location-section .section-subtitle::before {
  left: -60px;
  animation-delay: 0s;
}

.contact-location-section .section-subtitle::after {
  right: -60px;
  animation-delay: 2s;
}

@keyframes titlePulse {
  0% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  100% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-70%) scale(1.2) rotate(180deg); opacity: 1; }
}

/* Innovative Split-Screen Layout */
.contact-location-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  min-height: 600px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

/* Diagonal Divider Line */
.contact-location-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 45%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #d4af37, #f4e4bc, #d4af37, transparent);
  z-index: 10;
  animation: dividerGlow 3s ease-in-out infinite alternate;
}

@keyframes dividerGlow {
  0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
  100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* Contact Info Card - Left Side */
.contact-info-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 25, 15, 0.9) 100%);
  padding: 4rem 3rem;
  position: relative;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

/* Animated Background Pattern */
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(45deg, 
      transparent 0px, 
      rgba(212, 175, 55, 0.02) 1px, 
      transparent 10px
    );
  animation: patternMove 15s linear infinite;
  pointer-events: none;
}

@keyframes patternMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(20px) translateY(20px); }
}

/* Contact Header with Floating Icon */
.contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.contact-icon {
  font-size: 3rem;
  margin-right: 1.5rem;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.contact-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: 700;
  position: relative;
}

.contact-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  animation: underlineGrow 2s ease-in-out infinite alternate;
}

@keyframes underlineGrow {
  0% { width: 60px; opacity: 0.6; }
  100% { width: 100px; opacity: 1; }
}

/* Contact Details with Hover Effects */
.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-detail:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-detail::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-detail:hover::before {
  left: 100%;
}

.detail-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  margin-top: 0.2rem;
  transition: all 0.4s ease;
  animation: iconPulse 2s ease-in-out infinite;
}

.contact-detail:hover .detail-icon {
  transform: scale(1.2) rotate(15deg);
}

@keyframes iconPulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); }
}

.detail-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #f4e4bc;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail-content p {
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Hours Card Special Styling */
.hours-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 69, 19, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  padding: 2rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: rotateBg 10s linear infinite;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.day {
  font-weight: 500;
  color: #f4e4bc;
}

.time {
  font-weight: 600;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

/* Map Container - Right Side */
.map-container {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 35, 25, 0.9) 100%);
  padding: 4rem 3rem;
  position: relative;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}

/* Map Header */
.map-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.map-icon {
  font-size: 3rem;
  margin-right: 1.5rem;
  animation: mapIconSpin 6s linear infinite;
}

@keyframes mapIconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: 700;
}

/* Innovative Map Frame */
.map-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
  margin-bottom: 2rem;
  transition: all 0.6s ease;
}

.map-frame:hover {
  transform: scale(1.02);
  box-shadow: 
    0 30px 80px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(212, 175, 55, 0.4);
}

.map-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 25px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.map-frame:hover::before {
  opacity: 1;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 22px;
  filter: grayscale(30%) contrast(110%);
  transition: filter 0.6s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0%) contrast(120%);
}

/* Map Footer */
.map-footer {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-footer p {
  font-family: 'Inter', sans-serif;
  color: #f4e4bc;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   MOBILE RESPONSIVE DESIGN - ALL @MEDIA QUERIES
   ============================================= */

/* 1. ABOUT SECTION - Main responsive breakpoints */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
    padding: 6vh 1rem 3vh;
  }
  
  .main-title::before,
  .main-title::after {
    display: none;
  }
  
  .intro-text {
    padding: 3rem 2rem;
    margin: 0 1rem 4rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
  }
  
  .mission-section {
    padding: 0 1rem;
  }
  
  .mission-section .section-subtitle {
    font-size: 2.5rem;
  }
  
  .mission-content {
    padding: 3rem 2rem;
  }
  
  .mission-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .intro-text {
    padding: 2.5rem 1.5rem;
  }
  
  .mission-content {
    padding: 2.5rem 1.5rem;
  }
  
  .mission-section .section-subtitle {
    font-size: 2rem;
  }
}

/* 2. FEATURES SECTION - Taste section responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
  }
  
  .feature-item:nth-child(n) {
    transform: none;
  }
  
  .feature-card:hover {
    transform: translateY(-20px) scale(1.03);
  }
  
  .features-grid::before {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
  }
  
  .features-grid::before,
  .features-grid::after {
    display: none;
  }
  
  .feature-card {
    padding: 3rem 2rem;
    min-height: 350px;
  }
  
  .subtitle-highlight {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .taste-section {
    padding: 4rem 1rem;
  }
  
  .subtitle-highlight {
    font-size: 2.8rem;
  }
  
  .feature-card {
    padding: 2.5rem 1.5rem;
    min-height: 320px;
  }
  
  .feature-icon {
    width: 90px;
    height: 90px;
  }
  
  .feature-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-content p {
    font-size: 1rem;
  }
}

/* 3. ACCESSIBILITY - Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   ADDITIONAL MOBILE OPTIMIZATIONS (RECOMMENDED)
   ============================================= */

/* Content Grid - Make responsive */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-section {
    grid-row: auto;
    border-radius: 30px;
  }
  
  .restaurant-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .content-grid {
    padding: 0 1rem;
  }
  
  .story-section {
    padding: 2rem;
  }
  
  .story-text h3 {
    font-size: 2rem;
  }
  
  .stat-item {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .gallery-photo {
    height: 180px;
  }
}

/* Services Section - Make responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid::before {
    display: none;
  }
  
  .service-item:nth-child(n) {
    transform: none;
  }
  
  .service-item:hover {
    transform: translateY(-15px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1rem;
    border-radius: 40px;
  }
  
  .services-section .section-subtitle {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .service-content {
    padding: 2rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    margin-left: 10;
  }
  
  .service-item p {
    margin-left: 15;
    margin-right: 10;
    padding-bottom: 10px;
    font-size: 0.8rem;
  }
}

/* Contact Location Section - Make responsive */
@media (max-width: 1024px) {
  .contact-location-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-location-grid::before {
    display: none;
  }
  
  .contact-info-card,
  .map-container {
    clip-path: none;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .contact-location-section {
    padding: 4rem 1rem;
  }
  
  .contact-location-section .section-subtitle {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .contact-location-section .section-subtitle::before,
  .contact-location-section .section-subtitle::after {
    display: none;
  }
  
  .contact-info-card,
  .map-container {
    padding: 3rem 2rem;
  }
  
  .contact-header h3,
  .map-header h3 {
    font-size: 2rem;
  }
  
  .contact-icon,
  .map-icon {
    font-size: 2.5rem;
  }
  
  .map-frame iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-location-section {
    padding: 3rem 0.5rem;
  }
  
  .contact-location-section .section-subtitle {
    font-size: 2.5rem;
  }
  
  .contact-info-card,
  .map-container {
    padding: 2rem 1.5rem;
  }
  
  .contact-detail {
    flex-direction: column;
    padding: 1rem;
  }
  
  .detail-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .contact-header,
  .map-header {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon,
  .map-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .hours-card {
    padding: 1.5rem;
  }
  
  .map-frame iframe {
    height: 250px;
  }
}

/* Ultra-small screens */
@media (max-width: 320px) {
  .main-title {
    font-size: 2rem;
  }
  
  .intro-text {
    padding: 2rem 1rem;
  }
  
  .feature-card {
    padding: 2rem 1rem;
    min-height: 300px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .contact-info-card,
  .map-container {
    padding: 1.5rem 1rem;
  }
}


/* =============================================
   MOBILE RESPONSIVE (768px and below)
   ============================================= */
@media (max-width: 768px) {

    .main-header{margin-top: 25px;}
    
    /* ===== UTILITY ELEMENTS ===== */
    .header-divider {
        margin: 15px auto;
    }
    
    .footer-divider {
        margin: 0;
    }
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 20px;
    }

    .header-navigation {
        padding: 0 15px;
    }

    /* Logo Styles */
    .brand-logo {
        transition: all 0.3s ease;
    }

    .logo-image {
        height: 120px;
    }

    .primary-navigation {
        margin-left: 15px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 12px;
        background: rgba(255, 199, 79, 0.95);
        border-radius: 15px;
        border: 2px solid rgba(255, 215, 0, 0.8);
        transition: all var(--transition-fast);
        box-shadow: 
            0 2px 0 var(--primary-orange),
            0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1003;
    }

    .mobile-menu-btn:hover {
        background: linear-gradient(135deg, 
            rgba(255, 220, 100, 0.98) 0%,
            rgba(255, 199, 79, 0.98) 50%,
            rgba(240, 180, 60, 0.98) 100%);
        transform: translateY(-2px);
        box-shadow: 
            0 4px 0 var(--primary-orange),
            0 8px 15px rgba(230, 125, 34, 0.2);
    }

    .mobile-menu-btn .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: all var(--transition-fast);
        border-radius: 20px;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary-orange);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary-orange);
    }

    /* Hide Desktop Menu on Mobile */
    .nav-menu:not(.mobile-menu):not(.active) {
        display: none;
    }

    /* Mobile Navigation Menu */
    .nav-menu.active {
        position: fixed;
        top: 180px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        margin: 0;
        padding: 25px 20px;
        
        background: linear-gradient(145deg, 
            rgba(5, 0, 0, 0.95) 0%,
            rgba(10, 5, 0, 0.98) 50%,
            rgba(5, 0, 0, 0.95) 100%);
        border-radius: 30px;
        
        border: 2px solid rgba(255, 217, 0, 0.6);
        outline: 1px solid rgba(255, 217, 0, 0.3);
        box-shadow: 
            0 0 0 8px rgba(0, 0, 0, 0.4),
            0 15px 50px rgba(0, 0, 0, 0.8),
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 5px 15px rgba(255, 217, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        
        display: flex;
        flex-direction: column;
        gap: 18px;
        list-style: none;
        z-index: 1002;
        
        opacity: 1;
        visibility: visible;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Hidden state for mobile menu */
    .nav-menu:not(.active) {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        transition: all 0.3s ease;
    }

    /* Mobile Menu Background Animation */
    .nav-menu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, 
            rgba(255, 217, 0, 0.05) 0%, 
            transparent 70%);
        border-radius: 18px;
        z-index: -1;
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% { 
            opacity: 0.3;
            transform: scale(0.95);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.05);
        }
    }

    /* Mobile Menu Items */
    .nav-menu.active .nav-item {
        width: 100%;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.4s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu Links */
    .nav-menu.active .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        font-family: var(--font-primary);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 16px 30px;
        
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 217, 0, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
        border-radius: 12px;
        border: 1px solid rgba(255, 217, 0, 0.2);
        
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
        transition: all var(--transition-medium);
        
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    /* Mobile Link Hover Animation */
    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 217, 0, 0.2), 
            transparent);
        transition: left 0.6s ease;
    }

    .nav-menu.active .nav-link:hover::before {
        left: 100%;
    }

    /* Mobile Link Hover State */
    .nav-menu.active .nav-link:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.15) 0%,
            rgba(255, 217, 0, 0.1) 50%,
            rgba(255, 217, 0, 0.15) 100%);
        border-color: rgba(255, 217, 0, 0.5);
        color: #ffd900;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 15px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(255, 217, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    /* Active Link State */
    .nav-menu.active .nav-link--active {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.9) 0%,
            rgba(255, 149, 28, 0.9) 100%);
        border-color: rgba(255, 217, 0, 0.8);
        color: #000000;
        font-weight: 700;
        box-shadow: 
            0 4px 12px rgba(255, 217, 0, 0.4),
            inset 0 2px 6px rgba(0, 0, 0, 0.1),
            inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    }

    .nav-menu.active .nav-link--active:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 1) 0%,
            rgba(255, 149, 28, 1) 100%);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 18px rgba(255, 217, 0, 0.5),
            inset 0 2px 6px rgba(0, 0, 0, 0.15),
            inset 0 -1px 0 rgba(255, 255, 255, 0.4);
    }

    /* Mobile Link Active Press State */
    .nav-menu.active .nav-link:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.4),
            inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Body States */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    body.menu-open .brand-logo {
        transform: scale(1.05) ;
        pointer-events: none;
    }

}

/* =============================================
   SMALL MOBILE RESPONSIVE (480px and below)
   ============================================= */
@media (max-width: 480px) {
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 15px;
    }

    .header-navigation {
        padding: 0 10px;
    }

    .logo-image {
        height: 100px;
    }

    /* Mobile Menu Adjustments */
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 80px 20px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 15px;
    }

}


/* ===== Mobile Responsive Footer ===== */
@media (max-width: 768px) {



    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Newsletter full width + stacked */
    .newsletter-container {
        justify-content: center;
        margin: 0 0 -45px 0;
    }

    .newsletter-section {
        text-align: center;
        padding: 15px;
        margin-top: 0;
    }

    .newsletter-form {
        justify-content: center;
        margin-top: 25px;
    }

    .input-wrapper {
        max-width: 100%;
    }

    .input-wrapper input {
        margin-bottom: 10px;
        font-size: 14px;
        text-align: center;
    }

    /* Footer sections stacked */
    .footer-section {
        margin-top: 0;
        align-items: center;
    }

    .footer-section h3::before,
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        font-size: 18px;
    }

    /* Get in Touch full width */
    .get-in-touch {
        grid-column: auto;
        text-align: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    /* Social icons centered */
    .social-icons {
        margin-bottom: 10px;
        justify-content: center;
    }

    .section-divider2{
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 10px 15px;
        font-size: 15px;
    }

    .newsletter-section h2 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .input-wrapper input {
        font-size: 14px;
        padding: 10px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 16px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
    }
}
