/* =========================================
   CSS Variables & Design System
   ========================================= */
:root {
    /* Colors - Premium Beauty Palette */
    --clr-primary: #F0E0D6;
    /* Soft Blush Pink */
    --clr-secondary: #FAF7F2;
    /* Cream/Beige Background */
    --clr-accent: #D4AF37;
    /* Elegant Gold */
    --clr-dark: #1A1A1A;
    /* Black for contrast */
    --clr-text: #333333;
    --clr-text-light: #666666;
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-pad: clamp(4rem, 8vw, 6rem) 0;
    --container-width: 1200px;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-dark);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Utility Classes & Layout
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Adjust badge inside section header */
.section-header .badge {
    margin-bottom: 0.5rem;
    background-color: var(--clr-secondary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-accent);
}

.section-subtitle {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}


.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-dark);
    color: var(--clr-dark);
}

.btn-outline:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    /* 24px */
    box-shadow: var(--shadow-soft);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
    padding: 1.2rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
    background: rgba(250, 247, 242, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.8rem 2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--clr-accent);
}

/* =========================================
   Footer (Basic Setup)
   ========================================= */
.footer {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 4rem 0 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =========================================
   Animations & 3D Effects Base
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* =========================================
   Badges
   ========================================= */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* =========================================
   Hero Section (Cohesive Light Theme)
   ========================================= */
.hero-cohesive {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, var(--clr-primary), var(--clr-secondary) 70%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--clr-dark);
}

.hero-main-title span {
    color: var(--clr-accent);
    font-style: italic;
    background: linear-gradient(45deg, #D4AF37, #C5A028);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Framed Visual */
.hero-visual {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
    background: var(--clr-white);
    box-shadow: var(--shadow-hover);
    border-radius: 100px 100px 20px 20px;
    /* Elegant arch shape */
    overflow: hidden;
    transition: transform 0.1s ease-out;
}

.hero-img {
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    object-fit: cover;
    border-radius: 80px 80px 10px 10px;
}

.floating-accent-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--clr-accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s infinite ease-in-out;
}

.floating-accent-2 {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--clr-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: float 12s infinite ease-in-out reverse;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.service-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--clr-white);
    color: var(--clr-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.card-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.book-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-link i {
    transition: transform var(--transition-fast);
}

.book-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   Portfolio / Bento Gallery
   ========================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--clr-primary);
    background: transparent;
    color: var(--clr-dark);
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--clr-primary);
    color: var(--clr-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--clr-secondary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bento Spans */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content span {
    color: var(--clr-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay-content h3 {
    color: var(--clr-white);
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
    font-family: var(--font-heading);
}

.overlay-content i {
    color: var(--clr-white);
    background: var(--clr-accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Filtering Animations */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeInScale 0.5s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Lightbox (Placeholder for interaction) */
.gallery-item {
    cursor: zoom-in;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .bento-large,
    .bento-tall,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* =========================================
   Stylists / Team Section
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--clr-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--clr-white);
    color: var(--clr-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--clr-accent);
    color: var(--clr-white);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 0.2rem;
}

.team-role {
    display: block;
    color: var(--clr-accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}


/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    background-color: var(--clr-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
}

.stars {
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0 0 0.2rem 0;
    font-family: var(--font-body);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

/* =========================================
   Blog Section
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--clr-white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-dark);
}

.read-more i {
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   Contact & Location
   ========================================= */
.contact-section {
    background-color: var(--clr-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-header {
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-accent);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.info-block h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-block p {
    color: var(--clr-text-light);
}

.hours-list {
    list-style: none;
    color: var(--clr-text-light);
}

.hours-list li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.hours-list span {
    font-weight: 500;
    color: var(--clr-dark);
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    width: 100%;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.call-btn:hover {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}


.map-container {
    padding: 1rem;
    border-radius: 2rem;
}

.map-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
}

/* =========================================
   Footer Updates
   ========================================= */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    color: var(--clr-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}

.social-links a:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}


/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle {
        display: block;
    }

    .hero-cohesive {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .image-frame {
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-header {
        align-items: center;
        margin-bottom: 2rem;
    }

    .contact-info .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info .section-title-wrapper {
        justify-content: center !important;
        margin-bottom: 2rem !important;
    }

    .contact-info {
        text-align: center;
    }

    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hours-list li {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 0.5rem;
    }

    .map-img {
        height: 350px;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .service-card,
    .blog-card {
        text-align: center;
    }

    .book-link,
    .read-more {
        justify-content: center;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        text-align: center;
    }

    .client-info {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .btn {
        width: 100%;
    }
}