@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Raleway:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Raleway:wght@400;500&display=swap');

/* Base Styles */
:root {
    --color-primary: #fff;; /* Dominant white background (60%) */
    --color-secondary: #f2efe9; /* Secondary beige/cream (30%) */
    --color-accent: #413c38; /* Dark gray for text and accents (10%) */
    --color-text: #413c38; /* Primary text color */
    --color-text-secondary: #413c38cb; /* Softer gray for secondary text */
    
    
    
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-fade: cubic-bezier(0.39, 0.575, 0.565, 1);
    
    --border-radius: 8px;
    --gap: 2rem;
    
    --fade-duration: 0.6s;
    --fade-delay: 0.1s;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
 
  font-family: 'Playfair Display', serif;

}

body {
    
    color: var(--color-text);
    background-color:#fff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    margin: 0;
  
  font-family: 'Playfair Display', serif;

}

/* Parallax-like background effect */


@keyframes floatBackground {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}



h2, h3, h4 {
        font-family: 'Playfair Display', serif;
 /* Futuristic font for body */

    font-weight: 200;
    line-height: 1.2;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

 h2 span, h3 span, h4 span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s var(--ease-out-expo) forwards;
    color: #413c38;
  font-size: 48px;
  font-weight: lighter;
  font-family: 'Playfair Display', serif;
  
  

}


@keyframes textReveal {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 300;
    font-size: 15px;
}

a:hover {
   
    transform: translateY(-2px);
}

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

.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding-inline: 50px;
}

.section {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 1s var(--ease-fade) forwards;
    background-color: white;
}

/* Section entrance animation */
@keyframes fadeInSection {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Card Styles */
.service-card,
.team-member,
.testimonial-slide,
.stat-item,
.portfolio-item,
.gallery-item,
.contact-form {
    background-color: var(--color-secondary);
    color: var(--color-text);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 0.8s var(--ease-out-expo) forwards;
}


@keyframes fadeInCard {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.service-card h3,
.team-member h3,
.testimonial-slide h3,
.stat-item .stat-label,
.portfolio-item h3,
.gallery-item h3 {
    color: var(--color-text);
}

.service-card p,
.team-member p,
.testimonial-slide p,
.stat-item p,
.portfolio-item p,
.gallery-item p {
    color: var(--color-text-secondary);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0s 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Monoton', sans-serif; /* Updated to Monoton for consistency */
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    color: var(--color-accent);
    animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); text-shadow: 0 0 10px rgba(65, 60, 56, 0.3); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(65, 60, 56, 0.5); }
}

.preloader-logo span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s var(--ease-out-expo) forwards;
}

.preloader.fade-out .preloader-logo span {
    transform: translateY(0);
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background-color: rgba(65, 60, 56, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    animation: progressBar 2s var(--ease-out-expo) forwards;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-accent);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.4s var(--ease-fade);
    opacity: 1;
    box-shadow: 0 0 15px rgba(65, 60, 56, 0.3);
}

.cursor.fade-out {
    opacity: 0;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease, width 0.3s ease, height 0.3s ease;
    background: radial-gradient(circle, rgba(65, 60, 56, 0.2), transparent);
}

.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(65, 60, 56, 0.5);
}

.cursor-follower-active {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.4;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: all 0.4s ease, opacity 0.6s var(--ease-fade);
    background-color: white;
    opacity: 1;
}

.header.fade-out {
    opacity: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: none !important;
}

.logo img {
    width: 40px;
    height: 40px;
    opacity: 1;
    display: block;
    transition: none !important;
}

.logo:hover,
.logo:active,
.logo:focus {
    transform: translate(-50%, -50%) !important;
}

.logo:hover img {
    transform: none !important;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    gap: 1.5rem;
   
}

.nav-links-left {
    margin-right: auto;
    
}

.nav-links-right {
    margin-left: auto;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: grey;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
     font-family: 'Playfair Display', serif;
}

.nav-link:hover {
    text-shadow: 0 0 8px #FFC107;
    transform: scale(1.05);
}


.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.nav-links-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-color: white;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

.nav-links-mobile.active {
    transform: translateX(0);
}

.nav-links-mobile .nav-link {
    font-size: 1.1rem;
    color: #413c38;
    width: 100%;
    padding: 0.5rem 0;
    text-align: left;
}

/* Extra small screens (up to 480px) */
@media (max-width: 480px) {
    .header {
        padding: 0.8rem 0;
    }

    .header .container {
        padding: 0 1rem;
    }

    .logo {
        position: static;
        transform: none;
        margin-right: auto;
    }

     .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links-mobile {
        display: flex;
        width: 250px;
        padding: 4rem 1.5rem 1.5rem;
    }
}

/* Small screens (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        padding: 0 1.2rem;
    }

    .logo {
        position: static;
        transform: none;
        margin-right: auto;
    }

     .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links-mobile {
        display: flex;
        width: 280px;
        padding: 5rem 2rem 2rem;
    }
}

/* Medium screens (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        padding: 0 1.5rem;
    }

    .logo {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 1rem;
    }

    .nav-links-left {
        margin-right: 5px;
    }

    .nav-links-right {
        margin-left: 5px;
    }

    .nav-link {
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links-mobile {
        display: none;
    }
}

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
    .header {
        padding: 1.2rem 0;
    }

    .header .container {
        padding: 0 2rem;
        max-width: 1400px;
    }

    .logo {
        left: 50%;
        transform: translate(-50%, -50%);
    }

   .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 1rem;
        padding-inline: 100px;
    }

    .nav-links-left {
        margin-right: 30px;
    }

    .nav-links-right {
        margin-left: 40px;
    }

    .nav-link {
        font-size: 15px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links-mobile {
        display: none;
    }
}

/* Extra large screens (1200px and above) */
@media (min-width: 1200px) {
    .nav-links-left,
    .nav-links-right {
        gap: 3rem;
    }
    
    .nav-links-left {
        margin-right: 15px;
    }

    .nav-links-right {
        margin-left: 15px;
    }
    
    .nav-link {
        font-size: 16px;
    }
}

/* Ultra large screens (1400px and above) */
@media (min-width: 1400px) {
    .nav-links-left {
        margin-right: 20px;
    }

    .nav-links-right {
        margin-left: 20px;
    }
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: "Playfair Display", serif;
    color: #fff;
    text-align: center;
}

/* Video Background */
.hero > div:first-child {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    animation: pulse 10s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.hero video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    object-fit: cover;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% darkness */
}


.hero > div:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(242,239,233,.3), rgba(242,239,233,.1));
}

/* Content */
.hero > div:nth-child(2) {
    max-width: 900px;
    padding: 0 1rem;
    animation: slide 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes slide {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero h1 {
font-family: 'Playfair Display', Georgia, serif;
font-weight: 500;
font-style: Medium;
font-size: 51px;
line-height: 45px;
letter-spacing: -6%;
text-align: center;
text-transform: capitalize;
margin-top: 70px;

}
.hero h1 span {
    display: inline-block;
    transform: translateY(100%);
    animation: reveal 0.8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes reveal { to { transform: translateY(0); } }

/* Subtitle */
.hero p {
    font-family: system-ui, sans-serif;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: .9;
}

/* Buttons */
.hero > div:nth-child(2) > div {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fade 0.8s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
@keyframes fade { to { opacity: 1; transform: translateY(0); } }

.hero a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    max-width: 220px;
    transition: all .3s ease;
    margin-top: 50px;
}
.hero a::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: left .5s ease;
}
.hero a:hover::before { left: 100%; }

/* Yellow Button */
.hero a:first-of-type {
    background: #FFC107;
    color: #413C38;
    box-shadow: 0 10px 20px rgba(65,60,56,.3);
    transform: translateY(-3px);
    
}
.hero a:first-of-type:hover {
    background: #e6b306;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(65,60,56,.35);
}

/* White Outline Button */
.hero a:last-of-type {
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0,0,0,.46);
}
.hero a:last-of-type:hover {
    background: #fff;
    color: #413C38;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(65,60,56,.35);
}

/* Scroll Indicator */
@keyframes pulseScroll {
    0%,100% { transform: translateX(-50%) scale(1); }
    50%     { transform: translateX(-50%) scale(1.1); }
}
.hero > div:last-child > div {
    width: 1px;
    height: 60px;
    background: #fff;
    margin-top: .5rem;
    position: relative;
    overflow: hidden;
}
.hero > div:last-child > div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #fff, transparent);
    animation: line 2s infinite;
}
@keyframes line {
    from { transform: translateY(-100%); }
    to   { transform: translateY(100%); }
}

/* ========================================
   Responsive – Only affects .hero
   ======================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; line-height: 1.4; margin-bottom: 1.2rem; }
    /* Buttons now visible – no hide */
    .hero > div:nth-child(2) > div {
    display: flex !important;
   
    gap: 1rem !important;
}
@media (max-width: 767px) {
    .hero h1 { font-size: 2rem; line-height: 1.3; margin-bottom: 1rem; }
    .hero p { font-size: 1.1rem; max-width: 80%; margin: 0 auto 2rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 1rem; max-width: 90%; }
}

/* ======================================== */
/* REDUCE HERO HEIGHT ON SMALL SCREENS */
/* ======================================== */

/* iPads — Reduce to 80vh */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .hero {
    height: 80vh !important;
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 3.2rem !important;
    margin-top: 30px !important;
  }
  .hero > div:nth-child(2) > div {
    display: flex !important;
    gap: 1.2rem !important;
  }
  .hero a {
    padding: 0.8rem 1.8rem !important;
    font-size: 10px!important;
    max-width: 200px !important;
    margin-top: 1rem !important;
  }
}

/* iPad Pro — Slightly taller but still reduced */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .hero {
    height: 85vh !important;
    min-height: 650px;
  }
}

/* All phones — Reduce to 70vh */
@media only screen and (max-width: 767px) {
  .hero {
    height: 70vh !important;
    min-height: 500px;
    padding: 0 1.5rem;
  }
  .hero h1 {
    font-size: 2.3rem !important;
    line-height: 1.2 !important;
    margin-top: 20px !important;
  }
  .hero p {
    font-size: 1.1rem !important;
    margin: 1rem auto 1.5rem !important;
  }
  .hero > div:nth-child(2) > div {
    display: flex !important;
   
    gap: 1rem !important;
   
   
  }
  .hero a {
    width: 100% !important;
    max-width: 280px !important;
    padding: 0.9rem 1.5rem !important;
      font-size: 10px;
    margin-top: 0 !important;
  }
}

/* Small phones — Even shorter */
@media only screen and (max-width: 480px) {
  .hero {
    height: 65vh !important;
    min-height: 460px;
  }
  .hero h1 {
    font-size: 1.9rem !important;
    margin-top: 15px !important;
  }
  .hero a {
    padding: 0.8rem 1.2rem !important;
      font-size: 10px;
  }
}

/* Extra small phones — Compact */
@media only screen and (max-width: 360px) {
  .hero {
    height: 60vh !important;
    min-height: 420px;
  }
  .hero h1 {
    font-size: 1.7rem !important;
  }


   .hero a {
    padding: 0.8rem 1.2rem !important;
      font-size: 10px;
  }
}
}

/* ———————————————————————
   MILANZI FOOTER – INTER FONT + CORRECT SOCIALS
   ——————————————————————— */
 .milanzi-footer {
            background: #2c2c2c; /* Dark gray background */
            color: #ccc;
             font-family: 'Playfair Display', serif;

            padding: 80px 20px 20px;
            line-height: 1;
        }

        /* GRID */
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid #444;
            text-align: center; /* Center all content */
        }

        /* BRAND */
        .brand-title {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .brand-tagline {
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.6;
            max-width: 320px;
            margin: 0 auto; /* Center the tagline */
        }

        /* SECTION TITLES */
        .footer-heading {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ccc;
            margin-bottom: 18px;
        }

        /* LINKS */
        .footer-links ul,
        .footer-contact ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

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

        /* CONTACT */
        .footer-contact li {
            display: flex;
            align-items: center;
            justify-content: center; /* Center contact items */
            gap: 12px;
            font-size: 0.95rem;
        }

        .footer-contact svg {
            width: 18px;
            height: 18px;
            stroke: #fff;
        }

        /* SOCIAL */
        .footer-social {
            text-align: center; /* Center social section */
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
            justify-content: center; /* Center social icons */
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            background: #555; /* White social media icons */
        }

        .social-icons a:hover {
            transform: translateY(-5px) scale(1.1);
            filter: brightness(1.3);
        }

        /* BOTTOM BAR */
        .footer-bottom {
            display: flex;
            justify-content: center; /* Center bottom content */
            align-items: center;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
            flex-wrap: wrap;
            text-align: center;
        }

        .privacy-link {
            color: #888;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .privacy-link:hover {
            color: #fff;
        }

        /* ==============================
           RESPONSIVE DESIGN
           ============================== */

        /* Large Tablets */
        @media (max-width: 1225px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-social {
                grid-column: span 2;
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
            .brand-tagline {
                max-width: 100%;
                margin: 0 auto;
            }
        }

        /* Small Tablets and Large Phones */
        @media (max-width: 900px) {
            .milanzi-footer {
                padding: 60px 20px 20px;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .footer-social {
                grid-column: span 2;
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
        }

        /* Mobile Phones */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }

            .brand-title {
                font-size: 1.7rem;
            }

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

            .social-icons {
                justify-content: center;
            }

            .footer-contact li {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        /* Extra Small Phones (≤ 480px) */
        @media (max-width: 480px) {
            .milanzi-footer {
                padding: 0px 15px 15px;
            }

            .brand-title {
                font-size: 1.5rem;
            }

            .footer-heading {
                font-size: 1rem;
            }

            .social-icons a {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }