/* 
    DISEÑO CORPORATIVO - PROVEEDOR TOTAL
    Colores principales:
    - Azul: #2b57a5
    - Naranja: #f2911b
    - Blanco: #ffffff
    - Gris Fondo: #f8f9fa
*/

:root {
    --primary-blue: #2b57a5;
    --accent-orange: #f2911b;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

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

.section-padding {
    padding: 100px 0;
}

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

.bg-minimal {
    background-color: #fcfcfc;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    position: relative;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

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

.logo img {
    height: 60px;
    transition: var(--transition);
}

#main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

#main-nav a {
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
}

#main-nav a:hover {
    color: var(--accent-orange);
}

#main-nav a.active {
    color: var(--accent-orange);
    font-weight: 700;
}

#main-header.scrolled #main-nav a {
    color: var(--text-dark);
}

#main-header.scrolled #main-nav a.active {
    color: var(--primary-blue);
}

/* Striking Nav Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-orange) !important;
    font-weight: 800;
    border: 2px solid var(--accent-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem !important;
    transition: var(--transition);
}

.nav-header-phone i {
    font-size: 1.1rem;
}

.nav-phone:hover {
    background: var(--accent-orange);
    color: var(--white) !important;
}

.btn-nav {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 850px; /* Limit height as requested */
    max-height: 90vh; 
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.hero-inner {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-inner .container {
    position: relative;
    z-index: 1;
}

.hero-inner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue); /* Changed from white to blue or contrasting orange */
    color: var(--white); /* White text as requested */
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-5px);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Category Cards */
.category-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Added subtle shadow */
    transition: var(--transition);
    text-align: center;
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Deeper shadow on hover */
    border-color: var(--primary-blue);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(43, 87, 165, 0.05);
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.category-card:hover .icon-box {
    background: var(--primary-blue);
    color: var(--white);
}

.highlight-text {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text p {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.highlight-text .divider {
    margin: 0 auto 30px;
}

/* Parallax */
.parallax-section {
    padding: 150px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.parallax-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.parallax-section p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Flex Layouts */
.flex-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.content-side {
    flex: 1;
}

.image-side {
    flex: 1;
}

.img-rounded {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Who We Are & Values */
.who-we-are p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.experience-badge .val {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit';
}

/* Minimalista Ejecutivo Styles */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.who-we-are .flex-layout {
    align-items: stretch;
}

.mvv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px 0;
    border-left: 2px solid rgba(43, 87, 165, 0.1);
    padding-left: 20px;
    transition: var(--transition);
}

.mvv-item:hover {
    border-left-color: var(--accent-orange);
    transform: translateX(5px);
}

.mvv-item i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: -5px;
}

.mvv-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mvv-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-muted);
}

.image-stack {
    height: 100%;
    position: relative;
}

.image-side {
    display: flex;
}

.image-stack img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-stack:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-orange);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .val {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit';
}

.values-row {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

/* Service Item */
.service-item {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Added subtle shadow */
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Deeper shadow on hover */
    border-color: var(--accent-orange);
}

.s-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Delivery Section Items */
.delivery-items {
    margin-top: 40px;
}

.delivery-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.delivery-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    background: rgba(242, 145, 27, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.delivery-item h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.delivery-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

.img-rounded {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
}

/* Clients Grid List */
.client-list {
    margin-top: 40px;
    display: grid;
    gap: 25px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.client-item:hover {
    background: rgba(43, 87, 165, 0.03);
    transform: translateX(10px);
}

.client-item i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    background: rgba(242, 145, 27, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.client-item .client-text {
    font-size: 1.05rem;
}

.client-item .client-text strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 2px;
}

/* Contact Box */
.contact-box {
    background: #f5f7fa;
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--primary-blue);
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-box::before,
.contact-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-box::before {
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 87, 165, 0.04) 0%, transparent 70%);
}

.contact-box::after {
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 145, 27, 0.04) 0%, transparent 70%);
}

.contact-info {
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(43, 87, 165, 0.06);
    backdrop-filter: blur(5px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(43, 87, 165, 0.1);
    color: var(--primary-blue);
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--primary-blue);
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Enhancements */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fcfcfc;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

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

.contact-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
}

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

.contact-card .card-btn {
    margin-top: 10px;
    padding: 10px 25px;
    background: var(--primary-blue);
    color: white !important;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-card .card-btn:hover {
    background: var(--accent-orange);
}

.map-section {
    margin-top: 60px;
}

.map-container {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.direct-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-btn i {
    font-size: 1.5rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: #1eb954;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Brands Slider */
.brands-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.brands-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Add a fade mask at the edges for a premium look */
.brands-container::before,
.brands-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.brands-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.brands-slider {
    margin-top: 50px;
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.brands-track {
    display: flex;
    width: calc(260px * 22); /* Reduced width for tighter spacing */
    animation: scroll-logos 40s linear infinite;
}

.brand-item {
    width: 260px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px; /* Reduced internal padding */
}

.brand-item img {
    max-height: 105px; /* ~30% increase from 80px */
    max-width: 240px;  /* ~30% increase from 180px */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-260px * 11)); }
}


/* Footer */
footer {
    background: #1a3461; /* Darker corporate blue */
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange); /* Orange underline for headings */
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-orange); /* Orange hover effect */
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p i {
    color: var(--accent-orange); /* Orange icons in footer contact */
    font-size: 1.2rem;
}

.footer-bottom {
    background: var(--accent-orange);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-weight: 500;
}

.footer-bottom strong {
    color: var(--white);
    font-weight: 800;
}

/* Floating WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
}

/* Animations */
.anim-fade, .anim-fade-up, .anim-slide-left, .anim-slide-right {
    opacity: 0;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim-fade-up { transform: translateY(50px); }
.anim-slide-left { transform: translateX(-50px); }
.anim-slide-right { transform: translateX(50px); }

.appear {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .flex-layout {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    
    .hero h1 { font-size: 3rem; }
    
    .parallax-section h2 { font-size: 2.2rem; }

    .image-stack { padding-right: 0; padding-bottom: 0; }
}

/* Recent Order Notification */
#notification-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    pointer-events: none;
}

.order-toast {
    background: #ffffff;
    padding: 24px 35px;
    border-radius: 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 420px;
    max-width: 550px;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.order-toast.hide {
    transform: translateY(150%);
    opacity: 0;
}

.order-img {
    width: 85px;
    height: 85px;
    background: #f8fafc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #f1f5f9;
}

.order-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.order-content p {
    margin: 0;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.4;
}

.order-content strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    
    #main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0;
        visibility: hidden;
    }

    #main-nav.mobile-active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 40px;
    }

    #main-nav a {
        color: var(--primary-blue); /* Removed !important */
        font-size: 1.4rem;
        font-weight: 600;
        width: 100%;
        display: block;
        padding: 5px 0;
    }

    .nav-phone {
        margin: 10px auto;
        max-width: 250px;
        justify-content: center;
        font-size: 1.1rem !important;
        color: var(--accent-orange) !important;
        border: 2px solid var(--accent-orange) !important;
    }

    .btn-nav {
        max-width: 250px;
        margin: 10px auto;
        justify-content: center;
        font-size: 1.1rem !important;
        background: var(--primary-blue) !important;
        color: var(--white) !important;
    }
    
    .logo img { height: 50px; }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1100; /* Ensure it stays above everything */
        position: relative;
    }
    
    .contact-box { padding: 40px 20px; border-radius: 20px; }
    
    .direct-contact { flex-direction: column; align-items: center; }
    
    .values-row { flex-direction: column; gap: 30px; text-align: center; }
    
    .mvv-grid { grid-template-columns: 1fr; }

    /* Shrink notification on mobile */
    #notification-container {
        left: 15px;
        right: 15px;
        bottom: 100px;
    }
    .order-toast {
        min-width: auto;
        width: 100%;
        padding: 12px 20px;
        gap: 15px;
    }
    .order-img {
        width: 50px;
        height: 50px;
    }
    .order-content p {
        font-size: 0.75rem;
    }
    .order-content strong {
        font-size: 0.9rem;
    }

    .hero .slide-content { text-align: center; }
    .hero .cta-button { margin: 0 auto; }

    .contact-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }
}
