:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-card: #FFFFFF;
    --accent: #E68A13;
    --accent-hover: #D67A0E;
    --accent-light: rgba(230, 138, 19, 0.08);
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --border: #F3F4F6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 8px 30px rgba(230, 138, 19, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.mb-20 {
    margin-bottom: 20px;
}

.text-white {
    color: #fff !important;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-80 {
    margin-bottom: 80px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

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

.text-accent {
    color: var(--accent);
}

.bg-light-secondary {
    background-color: var(--bg-secondary);
}

.full-width {
    width: 100%;
    text-align: center;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    /* Pill shape for light friendly theme */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #F5A623 100%);
    color: #fff;
    box-shadow: var(--shadow-glow);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F5A623 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 138, 19, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.btn-outline-white,
.btn-outline-white-large {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover,
.btn-outline-white-large:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-white-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-gradient {
    background: linear-gradient(90deg, #F5A623 0%, var(--accent) 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, var(--accent) 0%, #CC7A11 100%);
    box-shadow: 0 4px 15px rgba(230, 138, 19, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.2rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}

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

.brand {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
}

.brand-name {
    font-size: 1.6rem;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-name {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

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

.navbar.scrolled .btn-outline-white {
    border-color: var(--border);
    color: var(--text-primary);
}

.navbar.scrolled .btn-outline-white:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .menu-btn {
    color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-content {
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: var(--bg-primary);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu-content .mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.separator {
    height: 1px;
    background: var(--border);
    margin: 1rem 0 2rem;
}

/* Center Hero Section */
.hero.center-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    background: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_safron_1774609743349.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Dimming background for white text */
    z-index: -1;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 2;
    color: #fff;
    margin-top: 50px;
}

.hero-center-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero-center-logo img {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.hero-title-large {
    font-size: 5.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-subtitle-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle-box .line {
    width: 80px;
    height: 1px;
    background: #fff;
    opacity: 0.6;
}

.hero-location {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Sections Global */
.section-subtitle {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* About Section */
.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.decor-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.decor-icon {
    color: var(--accent);
    background: var(--accent-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.decor-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.decor-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--accent);
}

/* Menu Filters */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 138, 19, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border);
}

.menu-item-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.menu-item-price {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-tag {
    font-size: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Cards */
.contact-section {
    background: var(--bg-primary);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--accent-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.card-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.card-info p,
.card-info a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.card-info a:hover {
    color: var(--accent);
}

.hours-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hours-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 500;
}

.hour-row:last-child {
    border-bottom: none;
}

.hours-action {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hours-action p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Redundant Footer CSS Removed */

/* Modern Contact System */
.contact-premium-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    min-height: 650px;
    margin-bottom: 5rem;
}

.contact-visual-panel {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    padding: 4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-visual-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_safron_1774609743349.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.panel-content {
    position: relative;
    z-index: 1;
}

.panel-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.panel-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.panel-text {
    font-size: 1.1rem;
    color: #CBD5E0;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.panel-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.panel-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.panel-icon {
    width: 45px;
    height: 45px;
    background: rgba(230, 138, 19, 0.15);
    border: 1px solid rgba(230, 138, 19, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.panel-info-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #718096;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.panel-info-item p,
.panel-info-item a {
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
}

.panel-hours {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-hours h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hours-list-fancy {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-list-fancy li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #A0AEC0;
}

.hours-list-fancy li span:last-child {
    color: #fff;
    font-weight: 500;
}

/* Form Panel */
.contact-form-panel {
    padding: 5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.form-header p {
    color: var(--text-secondary);
}

.clean-form {
    display: grid;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    background: #F8FAFC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-light);
}

/* Modern Location System */
.location-modern-container {
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.map-perspective-wrapper {
    position: relative;
    padding: 0 2rem;
}

.map-inner-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-floating-card {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    width: 380px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.card-branding {
    margin-bottom: 2rem;
}

.brand-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.card-branding h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.icon-circle {
    width: 42px;
    height: 42px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ==========================================================================
   Premium Footer Section
   ========================================================================== */
.footer-premium {
    background: #0F172A;
    color: #94A3B8;
    position: relative;
    overflow: hidden;
}

/* Footer CTA Bar */
.footer-cta-bar {
    background: linear-gradient(135deg, var(--accent) 0%, #F5A623 100%);
    padding: 3rem 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.cta-actions .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Main Footer Area */
.footer-main {
    padding: 100px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 4rem;
}

.footer-col-brand .footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-premium img {
    height: 45px;
    width: auto;
}

.footer-logo-premium span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a i,
.footer-social a svg {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    stroke: #FFFFFF !important;
    stroke-width: 2.5;
    fill: none;
    vertical-align: middle;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 138, 19, 0.4);
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-list li a {
    color: #94A3B8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-icon-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #94A3B8;
    text-decoration: none;
}

.footer-icon-item svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-icon-item span {
    line-height: 1.6;
}

.footer-icon-item.link-hover:hover {
    color: #fff;
}

/* Hours Card */
.hours-display-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.hours-row .day {
    color: #94A3B8;
}

.hours-row .time {
    color: #fff;
    font-weight: 500;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Footer Bottom */
.footer-bottom-premium {
    padding: 30px 0;
    font-size: 0.9rem;
}

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

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

.footer-legal a {
    color: #64748B;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal .sep {
    color: #334155;
}

/* Scroll Top Button */
.scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-btn:hover {
    transform: translateY(-5px);
    background: var(--accent-hover);
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* ==========================================================================
   Comprehensive Responsive System
   ========================================================================== */

/* Large Tablets (1200px) */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    
    .hero-title-large { font-size: 4.5rem; }
    
    .footer-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .container { max-width: 720px; }

    .pt-120 { padding-top: 80px; }
    .pb-120 { padding-bottom: 80px; }

    .section-title { font-size: 2.5rem; }
    
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    /* Hero Responsive */
    .hero-title-large { font-size: 3.8rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-buttons-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    .btn-outline-white-large, .btn-gradient {
        width: 100%;
    }

    /* About Responsive */
    .about-text { text-align: center; }
    .feature-list li { justify-content: center; }
    .decor-box { right: 50%; transform: translateX(50%); bottom: -20px; }

    /* Menu Responsive */
    .menu-grid { grid-template-columns: 1fr; }
    .menu-filters { gap: 0.5rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }

    /* Contact & Map Responsive */
    .contact-premium-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 3rem;
    }
    .contact-visual-panel, .contact-form-panel {
        padding: 4rem 2rem;
        text-align: center;
    }
    .panel-info-list {
        align-items: center;
    }
    .panel-info-item {
        flex-direction: column;
        gap: 0.8rem;
    }
    .panel-hours {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }
    .form-header {
        text-align: center;
    }
    .detail-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .location-floating-card {
        padding: 2rem 1.5rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin: -40px auto 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .location-modern-container { padding: 60px 0; }
    .map-inner-container iframe { height: 400px; }

    /* Navigation */
    .menu-btn { display: block; }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }

    .hero-title-large { font-size: 3rem; }
    .hero-center-logo img { height: 120px; }
    .hero-subtitle-box { gap: 0.8rem; }
    .hero-subtitle-box .line { width: 30px; }
    .hero-location { font-size: 1rem; }

    .section-title { font-size: 2.2rem; }
    
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col-brand, .footer-col-links, .footer-col-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-premium {
        justify-content: center;
        width: 100%;
    }

    .footer-about {
        text-align: center;
    }
    
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-icon-item { justify-content: center; text-align: center; }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .hero-title-large { font-size: 2.5rem; }
    .hero-subtitle-box { gap: 0.5rem; }
    .hero-subtitle-box .line { width: 20px; }
    .hero-location { font-size: 0.9rem; letter-spacing: 1px; }
    .section-title { font-size: 1.8rem; }
    .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
}

@media (max-width: 350px) {
    .hero-subtitle-box .line { display: none; }
    .hero-location { font-size: 0.85rem; }
}

/* Form Success Modal */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.form-success-overlay.show {
    display: flex;
}

.success-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.success-icon-bg {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}