/* Custom Modern CSS for Milan Beauty Lounge */
:root {
    --bg-color: #0d0f12;
    --surface-color: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary-color: #d4af37;
    /* Gold flavor */
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #ffdf73 100%);
    --secondary-gradient: linear-gradient(135deg, #1f1b2e 0%, #0d0f12 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

body.dark-theme {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Utility Classes */
.section-padding {
    padding: 8rem 5%;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glow {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #111;
}

.glow-btn:hover {
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: var(--transition-smooth);
    background: transparent;
}

.glass-nav.scrolled {
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--surface-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    height: 120px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

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

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

.nav-links .btn-primary::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 15, 18, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    font-size: 1.3rem;
    align-items: center;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 1;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 3rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.bg-blobs .blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: drift 10s infinite alternate ease-in-out;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

.bg-blobs .blob-1 {
    width: 500px;
    height: 500px;
    background: #47320b;
    top: -100px;
    left: -100px;
}

.bg-blobs .blob-2 {
    width: 600px;
    height: 600px;
    background: #1f1b2e;
    bottom: -100px;
    right: -100px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.floating-cards {
    display: flex;
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    min-width: 130px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.pb-stat {
    transform: translateY(20px);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
}

.pb-stat:hover {
    transform: translateY(12px);
    border-color: rgba(212, 175, 55, 0.4);
}

.stat-card h3 {
    margin-bottom: 0.3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.stat-card p {
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-container {
    position: relative;
    padding-left: 2rem;
}

.dual-hero-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-left {
    margin-top: -3rem;
    animation-delay: 0s !important;
}

.hero-right {
    margin-top: 3rem;
    animation-delay: 1s !important;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 300px;
    max-width: 45%;
    height: auto;
    aspect-ratio: 9 / 16;
    border: 1px solid var(--surface-border);
    animation: wrapperFloat 8s infinite ease-in-out;
}

@keyframes wrapperFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
    }

    50% {
        transform: translateY(-20px);
        box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.35);
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.1);
    animation: kenBurns 20s infinite alternate ease-in-out;
    transition: filter 0.5s ease;
}

.image-wrapper:hover .hero-img {
    filter: brightness(1.1) contrast(1.15);
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-15px, -10px);
    }
}

.glass-overlay-badge {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    background: rgba(13, 15, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: float 5s ease-in-out infinite;
    color: #fff;
    z-index: 10;
}

.gold {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.glass-overlay-badge span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services */
.services-section {
    position: relative;
    background: var(--secondary-gradient);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: #111;
    transform: rotate(10deg) scale(1.1);
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover .service-link i {
    transform: translateX(8px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.style-img {
    border-radius: 30px;
    overflow: hidden;
    height: 650px;
    border: 1px solid var(--surface-border);
}

.style-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: var(--transition-smooth);
}

.about-images:hover .style-img img {
    filter: brightness(1);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 3rem;
    right: -3rem;
    padding: 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(13, 15, 18, 0.6);
}

.experience-badge h2 {
    margin: 0;
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-badge p {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.feature-list {
    margin-top: 2.5rem;
}

.feature-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    /* Fixed height for consistency */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.9) 0%, rgba(13, 15, 18, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.portfolio-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    position: relative;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 3rem;
    border-radius: 30px;
    background: linear-gradient(to right, rgba(13, 15, 18, 0.95), rgba(13, 15, 18, 0.8)), url('../img/hero/hero-3-2.jpg') center/cover fixed;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Elfsight spacing */
.widgets-container {
    padding: 2rem 5%;
}

/* Instagram Feed Reels */
.insta-feed-section {
    background: var(--bg-color);
    padding: 6rem 5%;
}

.insta-feed-section .kicker {
    margin-bottom: 0.5rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.insta-item {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--surface-border);
}

.insta-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.9) 0%, rgba(13, 15, 18, 0) 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insta-overlay i {
    font-size: 3rem;
    color: #fff;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.insta-item:hover video {
    transform: scale(1.05);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

/* Footer */
.modern-footer {
    border-top: 1px solid var(--surface-border);
    padding: 6rem 5% 2rem;
    background: #08090a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

.footer-logo {
    height: 160px;
    width: auto;
    margin-bottom: 2rem;
    display: block;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4,
.footer-timings h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--surface-border);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Features */
@media (max-width: 1200px) {
    .glass-overlay-badge {
        left: 1rem;
        bottom: 2rem;
    }

    .experience-badge {
        right: 1rem;
        bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding-top: 10rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-actions,
    .floating-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pb-stat {
        transform: translateY(0);
    }

    .pb-stat:hover {
        transform: translateY(-8px);
    }

    .hero-image-container {
        padding-left: 0;
        margin-top: 4rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .dual-hero-wrapper {
        gap: 1rem;
    }

    .hero-left {
        margin-top: -1.5rem;
    }

    .hero-right {
        margin-top: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-content {
        order: -1;
        text-align: center;
    }

    .lead-text {
        margin: 0 auto 2rem;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

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

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .brand-logo {
        height: 70px;
    }

    .footer-logo {
        height: 100px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }

    .hero-left {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .floating-cards {
        gap: 0.8rem;
    }

    .stat-card {
        min-width: 100px;
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links,
    .footer-contact p {
        justify-content: center;
    }

    .style-img {
        height: 450px;
    }

    .glass-overlay-badge {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 5rem 5%;
    }

    .insta-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 350px;
    }
}