/* ================================================
   EMMIDI FOODS LTD - Premium Website Styles
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Palette - Warm, Premium Food Tones */
    --primary: #D4450B;
    --primary-dark: #B33609;
    --primary-light: #FF6B35;
    --primary-glow: rgba(212, 69, 11, 0.3);

    /* Accent - Gold / Luxury */
    --accent: #F5A623;
    --accent-light: #FFD07B;
    --accent-dark: #D4900C;

    /* Dark Palette */
    --dark: #0D0D0D;
    --dark-800: #1A1A1A;
    --dark-700: #252525;
    --dark-600: #333333;
    --dark-500: #444444;

    /* Light Palette */
    --light: #FAFAFA;
    --light-100: #F5F0EB;
    --light-200: #EDE5DB;
    --light-300: #D9CFC4;

    /* Text */
    --text-dark: #1A1A1A;
    --text-body: #555555;
    --text-light: #888888;
    --text-white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(212, 69, 11, 0.2);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-inner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-600);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.5rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.brand-text {
    color: var(--text-white);
}

.brand-highlight {
    color: var(--accent);
}

.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 69, 11, 0.3);
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 69, 11, 0.5);
    color: white !important;
}

/* Hamburger icon */
.navbar-toggler {
    border: none;
    padding: 4px;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.92) 0%,
        rgba(13, 13, 13, 0.75) 50%,
        rgba(13, 13, 13, 0.6) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-section .container {
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 30px rgba(212, 69, 11, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 69, 11, 0.5);
    color: white;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}

.hero-image-ring {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 2px dashed rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

.hero-image-ring-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(212, 69, 11, 0.15);
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes rotate-slow {
    to { transform: rotate(360deg); }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-floating-card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-scroll-indicator a {
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-indicator a:hover {
    color: var(--accent);
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ===== SECTION COMMON STYLES ===== */
.section-padding {
    padding: var(--section-padding);
    overflow: hidden;
}

.section-dark {
    background: var(--dark);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-tag-light {
    color: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
}

.title-accent {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-image-grid {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.about-img-main img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.about-img-secondary img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--light);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 2px;
    line-height: 1.3;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--light-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-highlight-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.about-highlight-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.about-highlight-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: var(--dark-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 69, 11, 0.3);
    transform: translateY(-5px);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-header {
    margin-bottom: 30px;
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(212, 69, 11, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.service-card-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition-fast);
}

.service-list-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212, 69, 11, 0.2);
}

.service-list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 69, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1rem;
}

.service-list-item h6 {
    font-family: var(--font-body);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.service-list-item p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-service {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-service:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 69, 11, 0.3);
    transform: translateY(-2px);
}

/* ===== MENU SECTION ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    background: transparent;
    border: 2px solid var(--light-300);
    color: var(--text-body);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 69, 11, 0.3);
}

.menu-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-body {
    padding: 22px;
}

.menu-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-card-title-row h5 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.menu-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Menu item animation */
.menu-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-item.hidden {
    display: none !important;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    background: var(--dark-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(212, 69, 11, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 69, 11, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(212, 69, 11, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    margin: 0 auto 24px;
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 69, 11, 0.3);
}

.why-card h5 {
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author h6 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212, 69, 11, 0.3);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info-card h6 {
    font-family: var(--font-body);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--accent);
}

/* Map */
.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255,255,255,0.06);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.contact-form-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 0;
}

.form-floating-custom label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-floating-custom .form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-floating-custom .form-control::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-floating-custom .form-control:focus {
    background: rgba(255,255,255,0.06);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 69, 11, 0.15);
    color: var(--text-white);
}

.form-floating-custom .form-control.is-invalid {
    border-color: #dc3545;
}

.form-floating-custom select.form-control option {
    background: var(--dark-800);
    color: var(--text-white);
}

.form-floating-custom textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.invalid-feedback {
    font-size: 0.8rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(212, 69, 11, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 69, 11, 0.4);
    color: white;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.form-success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 16px;
    display: block;
}

.form-success-message h5 {
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-success-message p {
    color: rgba(255,255,255,0.5);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--text-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content .title-accent {
    color: var(--accent-light);
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-about {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::before {
    width: 14px;
    margin-right: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(212, 69, 11, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 30px rgba(212, 69, 11, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav-cta {
        display: inline-flex;
        margin-top: 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }

    .about-img-main img {
        height: 400px;
    }

    .about-img-secondary {
        width: 150px;
        height: 150px;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .btn-hero-primary, .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 24px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-image-grid {
        margin-bottom: 40px;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 20px;
        font-size: 0.82rem;
    }
}

@media (max-width: 575.98px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-img-secondary {
        right: 0;
        bottom: -10px;
    }

    .about-experience-badge {
        width: 80px;
        height: 80px;
    }

    .experience-number {
        font-size: 1.5rem;
    }

    .experience-text {
        font-size: 0.6rem;
    }
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Particle styles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Selection color */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
