/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
    --primary: #E20060;
    --primary-light: #F06292;
    --secondary: #44ABDE;
    --secondary-light: #2b91c4;
    --tertiary: #9CBB1E;
    --accent: #FFC107;
    --accent-light: #FAEAA0;
    --dark: #212121;
    --dark-light: #6a6a6a;
    --light: #F5F5F5;
    --light-2: #E8E8E8;
    --gray: #757575;
    --gray-light: #E0E0E0;
    --white: #FFFFFF;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 10px;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --border-radius: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Humanist';
    src: url('./fonts/humanist-777-bt.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Humanist';
    src: url('./fonts/Humanist 777 Bold BT.ttf') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Source Sans 3", BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    font-weight: 300;
    overflow-x: hidden;
}

section {
    overflow-x: hidden; 
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
   width: 100%;
   height: 100%;
   padding-left: 20px;
   padding-right: 20px;
   margin-left: auto;
   margin-right: auto;
   z-index: 1;
}

@media (min-width: 375px) {
	.container {
	  max-width: unset;
	}
  }

@media (min-width: 480px) {
	.container {
	  max-width: unset;
	}
  }

  @media (min-width: 640px) {
	.container {
	  max-width: unset;
	}
  }
  
  @media (min-width: 768px) {
	.container {
	  max-width: unset;
	}
  }
  
  @media (min-width: 1024px) {
	.container {
	  max-width: unset;
	}
  }
  
  @media (min-width: 1280px) {
	.container {
	  max-width: 1200px;
	}
  }

  @media (min-width: 1440px) {
	.container {
	  max-width: 1284px;
	}
  }
  
  @media (min-width: 1536px) {
	.container {
	  max-width: 1284px;
	}
  }
  
  @media (min-width: 1800px) {
	.container {
	  max-width: 1540px;
	}
  }

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    font-family: "Humanist", sans-serif;
}


h1 {
    font-size: clamp(48px, 5vw, 60px);
}

h1 em {
    font-size: clamp(56px, 5vw, 72px);

}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--spacing-lg);
}


h2 em {
    font-size: clamp(40px, 5vw, 60px);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: 12px;
    font-weight: 300;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.3;
    font-family: "Source Sans 3", sans-serif;
}

ul {
    margin-bottom: 12px;
}

li {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 300;
    font-size: clamp(18px, 2vw, 20px);
}

/* a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
} */

em {
  font-family: "Sue Ellen Francisco", cursive;
  font-weight: 400;
  font-style: normal;
}

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


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    min-height: 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    min-width: 180px;
    font-family: "Source Sans 3", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-tertiary {
    background-color: var(--tertiary);
    color: var(--white);
}

.btn-tertiary:hover {
    background-color: var(--gray);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER/LOGO
   ============================================ */

.header {
    padding: var(--spacing-md) 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    background-image: url('./media/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    min-height: max(500px, 70vh);
    padding-top: 160px !important;
    display: flex;
    align-items: end;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}
.hero-content {
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 3;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: clamp(48px, 6vw, 60px);
    line-height: 1.2;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: var(--spacing-xl) 0
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: var(--spacing-xxl) 0;
}

.intro-section h2 {
    color: var(--secondary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-image {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}


@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-section {
        padding: var(--spacing-xl) 0;
    }
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */

.core-values {
    padding: var(--spacing-xxl) 0;
    background-color:#E300600D;
}

.core-values h1 {
    color: var(--primary);
    text-align: center;
    width: 100%;
    font-size: clamp(64px, 5vw, 72px);
}

.value-card h3 {
    color: var(--primary) !important;
    font-weight: 700;
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px !important;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px;
    margin-top: var(--spacing-xl);
}

.value-card {
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    display: flex; 
    gap: var(--spacing-md);
    align-items: center;
}
/* 
.value-card:hover {
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
    transform: translateY(-4px);
} */

.value-icon {
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: var(--border-radius-md);
}

@media(min-width: 1260px) {
    .value-card h3 {
        padding-right: 140px;
    }
}

.value-icon-image {
    height: 60%;
    width: auto;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .value-card {
        padding: 0;
    }

    .core-values {
        padding: var(--spacing-xl) 0;
    }
}

/* ============================================
   OUR HOMES SECTION
   ============================================ */

.our-homes {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light);
}

.our-homes h2 {
    color: var(--secondary);
}

.our-homes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

@media (max-width: 768px) {
    .our-homes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .our-homes__content-wrap {
        order: 1;
    }

    .homes-grid {
        order: 2;
    }
}

.our-homes__content-wrap {
    display: flex;
    flex-direction: column;
}

.our-homes__content-wrap ul {
    padding-left: var(--spacing-lg);
}

.homes-grid {
    display: grid;
    grid-template-columns: 1;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.home-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    height: 300px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.home-card-image {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.home-card-image.right {
    /* Optional: slight adjustment if images need different positioning */
}

.home-bar {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.home-bar.top {
    top: 0;
    height: 16px;
}

.home-bar.bottom {
    bottom: 0;
    height: 48px;
}

.home-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.home-label {
    position: absolute;
    z-index: 10;
    bottom: 4px;
    left: var(--spacing-lg);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 24px;
}

@media (max-width: 768px) {
    .homes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .our-homes {
        padding: var(--spacing-xl) 0;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial {
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.quote {
    font-size: clamp(48px, 5vw, 72px);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 85px;
    color: var(--primary);
    text-align: center;
    margin-block: var(--spacing-xl);
    margin-inline: auto;
    line-height: 1.4;
    max-width: 20ch;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial {
        grid-template-columns: 1fr;
        height: auto;
    }

    .testimonial-image-wrap {
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: -50%;
    }

    .testimonial-image {
        height: 100%;
        object-position: center bottom;
        margin-bottom: -30%;
    }

     .quote {
        text-align: center;
        padding-inline: 20px;
        line-height: 1.2;
    }

    .author-name {
        padding-inline: 20px;
    }

    .author-info {
        text-align: center;
        padding-bottom: 50px;
        padding-inline: 20px;
    }
}

/* ============================================
   THERAPEUTIC APPROACH SECTION
   ============================================ */

.therapeutic-approach {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light);
}

.therapeutic-approach h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
}

.section-intro {
    font-size: 18px;
    margin: 0 auto var(--spacing-xxl);
    color: var(--dark);
}

/* Carousel principal */
.approach-carousel {
    position: relative;
}

.carousel-inner {
    overflow: visible; /* Important: să iasă cardurile în afara containerului */
}
 
.carousel-track{
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 calc((100% - 2 * var(--spacing-xl)) / 2.5); /* Exact 2.5 carduri vizibile */
    min-width: 0;
}

/* Card styling */
.approach-card {
    height: 100%;

    border-radius: var(--border-radius-lg);
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--white);
    position: relative;
}

.approach-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background: var(--primary);
    z-index: 1;
}

@media (min-width: 992px) {
    .carousel-slide {
        min-width: 44%;
    }

    .therapeutic-approach {
    padding: 100px 0;
    }

    .section-intro {
    font-size: 30px;
}
}

@media (min-width: 1600px) {
    .carousel-slide {
            width: 45%;
    }
}

.approach-card h3 {
    --line-height: 1.3;

    font-size: clamp(20px, 2vw, 24px);
    font-family: "Source Sans 3";
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height);
    padding: var(--spacing-lg);
    color: var(--white);
    align-items: center;
    display: flex;
    min-height: calc((1em * (var(--line-height) * 3)) + (var(--spacing-lg) * 2));
}

.approach-card p {
    margin: var(--spacing-xs) 0 !important;
}

.matts-card::before {
    background: var(--primary);
}

.matts-card h3 {
    background: var(--primary);
}

.pace-card::before {
    background: var(--secondary);
}

.pace-card h3 {
    background: var(--secondary);
}

.berri-card::before {
    background: var(--tertiary);
}

.berri-card h3 {
    background: var(--tertiary);
}

.berri-card color,
.berri-card strong {
    color: var(--tertiary);
}

.matts-card strong {
    color: var(--primary);
}

.pace-card strong {
    color: var(--secondary);
}

.pace-card ul {
    list-style: none;         
    padding-left: 10px !important;      
}

.pace-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.pace-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
}

.approach-card-content {
    padding-bottom: 40px;
    padding-inline: clamp(1.25rem, 2vw, 2rem);
    padding-top: 20px;
}

.approach-card .subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
}

.approach-card ul {
    padding-left: var(--spacing-lg);
}


/* Navigație jos: arrows + dots */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.carousel-arrow {
    width: auto;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.carousel-arrow:first-child img {
    transform: rotate(180deg);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc((100% - var(--spacing-xl)) / 1.8);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(100% - var(--spacing-xl));
    }

    .carousel-track {
        gap: var(--spacing-md);
    }
    
    .carousel-navigation {
        gap: var(--spacing-lg);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ==================== DESKTOP > 1600px: NO CAROUSEL ==================== */
@media (min-width: 1601px) {
    .approach-carousel {
        /* Remove any potential overflow constraints */
    }

    .carousel-inner {
        overflow: visible;
    }

    .carousel-track {
        display: flex;
        justify-content: center;
        gap: var(--spacing-xl);
        transform: none !important; /* Override any JS-applied transform */
        flex-wrap: nowrap; /* Keep all 3 in one row */
    }

    .carousel-slide {
        flex: 0 0 calc(33.333% - (2 * var(--spacing-xl) / 3)); /* 3 equal cards with gaps */
        max-width: 420px; /* Optional: limit max card width for better readability */
    }

    /* Completely hide all carousel navigation */
    .carousel-navigation,
    .carousel-arrow,
    .carousel-dots {
        display: none !important;
    }
}

/* ============================================
   HERO CTA SECTION
   ============================================ */

.cta-block {
    background-image: url('./media/cta.jpg');
}

.cta-block h1 {
    font-size: clamp(46px, 6vw, 60px);
    padding-bottom: var(--spacing-md);
}

.cta-block .btn {
    font-size: 16px;
}

.cta-block::before {
    height: 100% !important;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-2);
    display: flex;
    justify-content: center;
}

.cta-section h3,
.cta-card h3 {
    font-size: 2rem;
}

.cta-section h3 em,
.cta-card h3 em {
    color: var(--primary);
    font-size: 2.5rem;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
}


.cta-content-wrap {
    width: 25%;
    min-width: 280px;
}



.cta-grid {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.cta-card {
    aspect-ratio: 1 !important;
    width: 33%;
    max-width: 350px;
    min-width: 300px;
    position: relative;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);           /* Base: perfect centering */
    width: 122%;
    height: 122%;
    background-image: url('./media/card.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    transition: transform 0.4s ease;            /* Optional: smooth on hover */
    transform-origin: center center;
}

/* First card: tilt left */
.cta-card:nth-child(1)::before {
    transform: translate(-50%, -50%) rotate(-180deg) scaleX(-1);
    
}
.cta-card:nth-child(2)::before {
    transform: translate(-52%, -50%) rotate(-3deg);           /* Straight, perfectly centered */
}

/* Last card: tilt right */
.cta-card:nth-child(3)::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 8px;
    width: 72px;
    height: 72px;
    z-index: 10;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cta-card a {
    text-decoration: none;
}

.cta-card:nth-child(1)::after {
    background-image: url('./media/mail.png');
}

.cta-card:nth-child(2)::after {
    background-image: url('./media/phone.png');
    transform: translateX(-20px);
}

.cta-card:nth-child(3)::after {
    background-image: url('./media/face.png');
}


@media (max-width: 1340px) {
    .cta-container {
        flex-direction: column;
        gap: 0;
    }

    .cta-section h3,
    .cta-content-wrap p {
        text-align: center;
    }

    .cta-content-wrap {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .cta-grid {
        flex-wrap: wrap;
        justify-content: center;  
    }

    .cta-card:nth-child(1)::after {
        transform: translateY(10px);
    }

    .cta-card:nth-child(3)::after {
        transform: translateY(20px);
    }
}

.cta-card h3 {
    color: var(--dark);
    margin: 0;
    text-align: left;
    padding-right: 80px;
}

.cta-card:nth-child(1) h3 {
    color: var(--primary);
}

.cta-card:nth-child(2) h3 {
    color: var(--tertiary);
}

.cta-card:nth-child(3) h3 {
    color: var(--secondary);
}

.cta-card:nth-child(3) h3 em {
    color: var(--secondary);
    font-size: 3.5rem;
    line-height: 1.1;
}

.cta-card p {
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.cta-card .btn {
    width: fit-content;
    height: 40px;
}

.cta-card:nth-child(2) a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tertiary);
    text-align: left;
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .cta-section {
        padding: var(--spacing-xl) 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */

/* Plain CSS - no Bootstrap/Tailwind */

/* General footer styles */
.footer {
    align-items: center;
    background-color: #f8f8f8; 
    color: var(--dark-light) !important;
    display: flex;
    font-size: 0.95rem;
    justify-content: center;
    padding: 36px 24px;
    position: relative;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .btn {
    color: var(--white) !important;
}

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

.footer-padding-large {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

/* Desktop footer */
.footer-desktop {
    display: none;
}

@media (max-width: 925px) {
    .footer-desktop {
        padding-top: 140px;
    }
}

@media (min-width: 768px) {
    .footer-desktop {
        display: block;
    }
    .footer-mobile {
        display: none;
    }
}

/* Mobile footer */
.footer-mobile {
    display: block;
}

@media (min-width: 768px) {
    .footer-mobile {
        display: none;
    }
}

/* Grid layouts */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    max-width: 160px;
}

/* Social icons */
.footer-social-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    gap: 1rem;
}

.footer-social-list-mobile {
    justify-content: center;
    margin: 2rem 0;
}

/* Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list  li {
    font-size: 16px;
    color: var(--dark-light);
}

.footer-list-title {
    font-weight: bold;
    font-size: 16px;

    margin-bottom: 0.5rem;
}

.footer-address-list li + li,
.footer-links-list li + li {
    margin-top: 0.25rem;
}

/* Tagline */
.footer-tagline {
    text-align: right;
    margin-bottom: 2rem;
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-light);
}

.footer-tagline em {
        color: var(--primary, #e91e63);
    font-size: 32px;
}

.footer-tagline-mobile {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3rem;
}

/* Partners & badges */
.footer-partners-row,
.footer-badges-row {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-partners-row-mobile,
.footer-badges-row-mobile {
    justify-content: center;
}

.footer-partner-img,
.footer-badge-img {
    height: auto;
    max-height: 62px;
    max-width: 280px;
}

/* Legal */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal-mobile {
    text-align: center;
    flex-direction: column;
    font-size: 1rem !important;
}

.footer-legal-mobile p {
    margin: 0.5rem 0;
}

.footer-links-legal a {
    margin: 0 0.5rem;
}

.footer-legal-separator {
    margin: 0 0.5rem;
    color: var(--dark-light);
}

.footer-agency {
    text-align: right;
    font-size: 0.9rem;
}

.footer-agency-mobile {
    text-align: center;
    color: var(--dark);
}

.footer-agency-icon {
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Mobile specific adjustments */
.footer-mobile-links {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 1.5rem 0;
}

.footer-mobile-links li {
    margin: 0.5rem 0;
}

/* Address on mobile */
.footer-address-mobile {
    margin: 1.5rem 0;
}

.btn-footer {
    padding-inline: 0px !important;
    height: 40px;
    border-radius: var(--border-radius-md);
    position: fixed;
    z-index: 100;
    bottom: 20px;
    left: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-social-item,
.footer-social-item a,
.footer-social-item a img {
    height: 32px;
    width: 32px;
}


/* ============================================
   ACCESSIBILITY & PRINT
   ============================================ */

@media print {
    .header, .footer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


.footer-mobile .footer-mobile-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer a,
footer p {
    font-size: 1rem !important;
}

.footer-mobile a,
.footer-mobile p {
    font-size: 14px !important;
}

.footer-mobile-links li {
    height: 20px;
}