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

:root {
    --ocean-blue: #0ea5e9;
    --deep-blue: #0369a1;
    --sunset-orange: #fb923c;
    --sand-yellow: #fbbf24;
    --coral: #f87171;
    --seafoam: #34d399;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

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

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.skip-link {
    position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus { position:static; width:auto; height:auto; padding:.5rem 1rem; background:#fff; z-index:1000; }

.site-header { position:sticky; top:0; z-index:50; backdrop-filter:saturate(150%) blur(6px); }
.nav-cta { padding:.4rem .9rem; border-radius:999px; border:2px solid var(--ocean-blue); }
.nav-links.active + .menu-toggle,
.menu-toggle[aria-expanded="true"] { /* optional: animate burger to X */ }

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

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

.logo-img {
    height: 80px; /* adjust to fit your layout */
    width: auto;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Pacifico', cursive;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

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

.nav-links a:hover {
    color: var(--ocean-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ocean-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #34d399 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="80" r="30" fill="%23fbbf24" opacity="0.8"/><circle cx="1100" cy="100" r="40" fill="%23fbbf24" opacity="0.6"/></svg>') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: var(--sand-yellow);
    color: var(--dark);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
    background: #fcd34d;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-pill .emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-pill strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-pill span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    position: relative;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    background: var(--light-gray);
    border-radius: 60px;
    padding: 10px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: var(--ocean-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.service-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.active {
    display: grid;
}

.service-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-visual {
    background: linear-gradient(135deg, var(--ocean-blue), var(--seafoam));
    border-radius: 30px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.visual-icon {
    font-size: 8rem;
    opacity: 0.8;
}

.price-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--sand-yellow);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray), #e2e8f0);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--ocean-blue);
}

.process-step:nth-child(2) {
    border-top-color: var(--sunset-orange);
}

.process-step:nth-child(3) {
    border-top-color: var(--seafoam);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--seafoam));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.process-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral));
}

.process-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, var(--seafoam), var(--ocean-blue));
}

.process-step h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--deep-blue) 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="150" cy="150" r="3" fill="%23ffffff" opacity="0.3"/><circle cx="300" cy="100" r="2" fill="%23ffffff" opacity="0.4"/><circle cx="500" cy="200" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="700" cy="120" r="3" fill="%23ffffff" opacity="0.4"/><circle cx="900" cy="180" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="1100" cy="140" r="3" fill="%23ffffff" opacity="0.4"/></svg>') repeat;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sand-yellow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-cta {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--sand-yellow), var(--sunset-orange));
    color: var(--dark);
    padding: 22px 45px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(251, 191, 36, 0.4);
    border: none;
    cursor: pointer;
}

.cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.5);
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 2.5rem 0;
}

.footer-emoji {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 1rem;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 0 auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.modal-header h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 2rem;
}

/* Order form styles */
.category {
    margin-bottom: 2rem;
}

.category h3 {
    color: #fafafa;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: #0ea5e9;
    background: #f8fafc;
}

.product-item.selected {
    border-color: #0ea5e9;
    background: #eff6ff;
}

.product-item.unavailable {
    opacity: 0.5;
    background: #f8fafc;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.product-description {
    font-size: 0.9rem;
    color: #64748b;
}

.unavailable-badge {
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-price {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 1.1rem;
    margin: 0 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #0ea5e9;
    background: white;
    color: #0ea5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #0ea5e9;
    color: white;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
}

.access-point-section {
    margin: 2rem 0;
}

.access-point-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.access-point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.access-point-btn {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.access-point-btn:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.access-point-btn.selected {
    border-color: #0ea5e9;
    background: #0ea5e9;
    color: white;
}

.order-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid #e2e8f0;
}

.order-summary h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #0ea5e9;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.order-btn.ready {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation: pulse 2s infinite;
}

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

.order-instructions {
    background: #eff6ff;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.order-instructions h4 {
    color: #0369a1;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-instructions p {
    color: #1e40af;
    font-size: 0.9rem;
    margin: 0;
}

.empty-cart {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 1rem;
}

.category {
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-header {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
}

.category-header:hover {
    background: linear-gradient(135deg, #0284c7, #0891b2);
}

.category-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.category-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category.collapsed .category-toggle {
    transform: rotate(-90deg);
}

.category-items {
    max-height: fit-content;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 1rem;
}

.category.collapsed .category-items {
    max-height: 0;
    padding: 0 1rem;
}

.category-summary {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Item count badge */
.item-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

/* Quick expand all button */
.menu-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu-control-btn {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.menu-control-btn:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

button:disabled,
    button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #aaa !important;
    border-color: #999 !important;
    color: #666 !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.4;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
  border-color: #007bff; /* match primary button color */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid rgba(14, 165, 233, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    header{
        height: 113px;
    }

    .hero{
        padding: 0 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-tabs {
        flex-direction: column;
        max-width: 250px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header, .modal-body {
        padding: 1.5rem;
    }
    
    .product-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .quantity-controls {
        align-self: flex-end;
    }

    .category-header {
        padding: 1rem;
    }
    
    .category-items {
        padding: 0.8rem;
    }
    
    .menu-controls {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

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

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-1 { animation-delay: 0.2s; }
.stagger-2 { animation-delay: 0.4s; }
.stagger-3 { animation-delay: 0.6s; }