/* Custom Styling for Nala's Kitchen Landing Page */

/* ----------------------------------
   1. Design Tokens & CSS Variables
   ---------------------------------- */
:root {
    --primary-color: #bc2229;
    --primary-dark: #8e151b;
    --primary-light: #e54d55;
    --secondary-color: #e8b61c; /* Warm accent color from gradient (Gold) */
    --neutral-dark: #0a0c10;
    --neutral-light: #ffffff;
    --neutral-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #cbd5e1;
    
    --font-heading: "Outfit", Arial, Helvetica, sans-serif;
    --font-body: "Outfit", Arial, Helvetica, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 30px 60px rgba(188, 34, 41, 0.15);
}

/* ----------------------------------
   2. Reset & Global Styles
   ---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.02em;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----------------------------------
   3. Header & Navigation
   ---------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-light);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 90px;
    position: relative;
}

/* Logo Design to mimic the screenshot */
.logo-area {
    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    max-height: 83px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.logo-badge {
    background-color: var(--primary-color);
    color: var(--neutral-light);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(188, 34, 41, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(150%, 150%) rotate(45deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-transform: lowercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

/* Nav Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-quick);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-quick);
}

.mobile-nav-toggle:focus {
    outline: none;
}

.mobile-nav-toggle:hover {
    color: var(--primary-dark);
}

/* ----------------------------------
   4. Floating Info Bar
   ---------------------------------- */
.floating-info-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    z-index: 99;
    padding: 1.5rem 0.8rem;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.floating-info-bar .info-item i {
    transform: rotate(90deg);
    color: var(--primary-color);
}

/* ----------------------------------
   5. Hero Section
   ---------------------------------- */
.hero-section {
    background-color: var(--primary-color);
    margin-top: 90px;
    position: relative;
    color: var(--neutral-light);
    overflow: hidden;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 90px);
    width: 100%;
}

.hero-content-side {
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem 6rem 8rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-side {
    background-image: url('images/section1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(232, 182, 28, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 650px;
    line-height: 1.5;
}

.hero-launch-date {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.05em;
    margin-bottom: 3.5rem;
}

.explore-action {
    display: inline-block;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--neutral-light);
    position: relative;
    padding: 0.5rem 0;
}

.line-indicator {
    width: 30px;
    height: 2px;
    background-color: var(--neutral-light);
    transition: var(--transition-smooth);
}

.explore-link:hover .line-indicator {
    width: 60px;
    background-color: var(--secondary-color);
}

.explore-link:hover {
    color: var(--neutral-light);
}

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

/* ----------------------------------
   6. Indulge Section (About)
   ---------------------------------- */
.about-section {
    padding: 9rem 0;
    background-color: var(--neutral-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem 0 8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-title .highlight {
    color: var(--primary-color);
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Metallic/Brushed silver premium button */
.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
    color: var(--neutral-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition-smooth);
}

.premium-btn span, .premium-btn i {
    position: relative;
    z-index: 2;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #64748b 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.premium-btn:hover::before {
    opacity: 1;
}

.premium-btn i {
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.premium-btn:hover i {
    transform: translateX(5px);
}

/* Image Wrapper with decorative border */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--box-shadow-premium);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.image-accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 24px;
    z-index: 1;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .image-accent-border {
    transform: translate(-10px, -10px);
}

/* ----------------------------------
   7. Services Section
   ---------------------------------- */
.services-section {
    background-color: var(--neutral-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(480px, auto);
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5rem 5rem 8rem;
}

/* Background image card */
.image-card {
    padding: 0;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: var(--transition-smooth);
}

.service-card:hover .card-bg-image {
    transform: scale(1.08);
}

/* Content Card */
.service-card.brand-bg {
    background-color: var(--primary-color);
    color: var(--neutral-light);
    transition: var(--transition-smooth);
}

.service-card.brand-bg:hover {
    background-color: var(--primary-dark);
}

.card-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    opacity: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-tagline::before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--neutral-light);
    display: inline-block;
}

.card-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-description {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
}

.card-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--neutral-light);
    border: 1px solid var(--neutral-light);
    padding: 0.8rem 2.2rem;
    transition: var(--transition-smooth);
    width: fit-content;
    text-decoration: none;
    background: transparent;
}

.card-action-link:hover {
    background-color: var(--neutral-light);
    color: var(--primary-color) !important;
}

/* Card Divider */
.section-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0;
    width: 100%;
}

/* Delivery Sub Section & Partners */
.delivery-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.partner-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--neutral-light);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--neutral-light);
    transition: var(--transition-smooth);
}

.partner-btn:hover {
    border-color: var(--neutral-light);
    background-color: var(--neutral-light);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------
   8. Footer
   ---------------------------------- */
.site-footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 6rem 2rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    max-height: 75px;
    width: auto;
    object-fit: contain;
}

.footer-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.8rem;
    color: var(--neutral-light);
    text-transform: uppercase;
}

.footer-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.location-details-wrapper {
    margin-top: 1rem;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-info .footer-text {
    margin-bottom: 0.5rem;
}

.find-us-section {
    margin-bottom: 2.5rem;
}

/* Social & Contact Col */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    color: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-quick);
    width: fit-content;
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ----------------------------------
   8.5. Contact Section
   ---------------------------------- */
.contact-section {
    background-color: var(--neutral-light);
    color: var(--text-dark);
}

.contact-hero-banner {
    position: relative;
    height: 350px;
    background-image: url('images/contact-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--neutral-light);
    padding: 0 2rem;
}

.contact-hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--neutral-light);
    opacity: 0.85;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5rem 6rem 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-details-side {
    display: flex;
    flex-direction: column;
}

.contact-accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

.contact-sidebar-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.contact-sidebar-img:hover {
    transform: scale(1.03);
}

.contact-brand-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
}

.square-bullet-icon {
    color: var(--primary-color);
    font-size: 0.55rem;
    margin-top: 6px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.social-circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Form Styles */
.contact-form-side {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
}

.form-input {
    padding: 1rem 1.2rem;
    border: none;
    background-color: #f1f5f9;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    border-radius: 0;
    outline: none;
    transition: var(--transition-quick);
}

.form-input:focus {
    box-shadow: 0 0 0 1px var(--primary-color);
}

.form-textarea {
    resize: vertical;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-start;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.9rem 2.8rem;
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    border-radius: 0;
}

.form-submit-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ----------------------------------
   9. Media Queries (Responsiveness)
   ---------------------------------- */

@media (max-width: 1100px) {
    .about-container {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .footer-column.brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .brand-logo-img {
        max-height: 55px;
    }
    
    .hero-container-split {
        grid-template-columns: 1fr;
    }
    
    .hero-content-side {
        padding: 6rem 2rem;
        text-align: center;
        align-items: center;
    }
    
    .explore-link {
        justify-content: center;
    }
    
    .hero-image-side {
        height: 380px;
    }

    /* Navbar styling on Mobile */
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 4px solid #ffffff;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .main-navigation.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-navigation .nav-link {
        color: #ffffff !important;
        font-weight: 500;
    }
    
    .main-navigation .nav-link:hover,
    .main-navigation .nav-link.active {
        color: var(--secondary-color) !important;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(1) { order: 1; } /* Image 1 */
    .services-grid .service-card:nth-child(2) { order: 2; } /* Content 1 */
    .services-grid .service-card:nth-child(4) { order: 3; } /* Image 2 */
    .services-grid .service-card:nth-child(3) { order: 4; } /* Content 2 */
    
    .service-card {
        padding: 4rem 3rem;
    }
    
    .floating-info-bar {
        display: none; /* Hide on small screens for better usability */
    }
    
    .contact-container {
        padding: 4rem 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-hero-banner {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0 1.2rem;
    }
    
    .hero-container {
        padding: 3rem 1.2rem;
    }
    
    .about-section {
        padding: 6rem 1.2rem;
    }
    
    .service-card {
        padding: 3rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-column.brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .form-row-split {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .contact-container {
        padding: 3rem 1.5rem;
    }
}
