/* Custom Fonts */
@font-face {
    font-family: 'Perandory';
    src: url('./fonts/Perandory-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Perandory';
    src: url('./fonts/Perandory-Condensed.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neris';
    src: url('./fonts/Neris-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neris';
    src: url('./fonts/Neris-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Perandory-Semi-Condensed';
    src: url('./fonts/Perandory-Semi-Condensed.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Color Variables */
:root {
    --color-dark: #1B1717;
    --color-light: #F4F2E6;
    --color-red-light: #D40D1D;
    --color-red-dark: #820318;
    --color-red-intense: #d3111b;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    height: 100vh;
    background-color: var(--color-light);
}

/* Header Styles */
.header {
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    pointer-events: auto;
}

.container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: 0 auto;
    padding: 1em 3em;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    grid-column: 1;
    justify-self: start;
}

.social-icon {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--color-light);
}

.social-icon svg {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-dark);
}

.social-icon:hover {
    transform: translateY(-0.1em);
    box-shadow: 0 0.2em 0.8em rgba(27, 23, 23, 0.15);
    background: rgba(244, 242, 230, 0.9);
}

.social-icon:hover svg {
    color: var(--color-dark);
}

/* Main Navigation */
.main-nav,
.main-nav-right {
    display: flex;
    gap: 6em;
    font-family: 'Perandory', 'Playfair Display', serif;
}

.nav-center {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 5em;
    align-items: center;
    width: 100%;
    grid-column: 2;
}

.nav-center .main-nav {
    justify-content: flex-end;
}

.nav-center .main-nav-right {
    justify-content: flex-start;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-size: 2.5em;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5em 0 0 0;
}

.nav-link:hover {
    color: rgba(244, 242, 230, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 0;
    height: 0.05em;
    background: rgba(244, 242, 230, 0.5);
    transition: width 0.3s ease;
}

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

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 5em;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0.2em 0.5em rgba(27, 23, 23, 0.2));
}

.logo-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0.2em 0.5em rgba(244, 242, 230, 0.2));
}

/* Language Selector */
.language-selector {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 1000;
}

/* Tablet and mobile styles for language selector */
@media (max-width: 1024px) {
    .language-selector {
        grid-column: 1;
        justify-self: start;
        position: relative;
    }
}

@media (max-width: 640px) {
    .language-selector {
        grid-column: 1;
        justify-self: start;
        position: relative;
    }
}

.language-dropdown {
    position: relative;
    background: rgba(244, 242, 230, 0.92);
    border: 1.5px solid rgba(27, 23, 23, 0.25);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 80px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(27, 23, 23, 0.12);
}

.language-dropdown:hover {
    border-color: var(--color-red-intense);
    box-shadow: 0 10px 28px rgba(193, 0, 32, 0.25);
}

.language-selected {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    color: var(--color-dark);
    font-family: 'Neris', 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 6px rgba(27, 23, 23, 0.18);
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.06em;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
    transition: transform 0.25s ease;
    color: var(--color-dark);
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    padding: 0.4rem;
    background: rgba(244, 242, 230, 0.95);
    border: 1.5px solid rgba(27, 23, 23, 0.2);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem) scaleY(0.9);
    transform-origin: top;
    transition: all 0.22s ease;
    z-index: 1001;
    box-shadow: 0 14px 32px rgba(27, 23, 23, 0.18);
    backdrop-filter: blur(6px);
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    color: var(--color-dark);
    font-family: 'Neris', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.22s ease;
    cursor: pointer;
    border-radius: 12px;
}

.language-option + .language-option {
    margin-top: 0.25rem;
}

.language-option:hover {
    background: var(--color-dark);
    color: var(--color-light);
    box-shadow: 0 10px 20px rgba(27, 23, 23, 0.18);
}

.language-option.active {
    background: var(--color-red-intense);
    color: var(--color-light);
    box-shadow: 0 10px 22px rgba(193, 0, 32, 0.25);
}

/* CTA Button */
.cta-button {
    grid-column: 3;
    justify-self: end;
}

.discover-btn {
    background: var(--color-dark);
    color: var(--color-light);
    border: 2px solid var(--color-dark);
    padding: 10px 30px 13px;
    border-radius: 50px;
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.discover-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-red-intense);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.discover-btn::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 2px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: rotate 0.8s linear infinite;
}

.discover-btn:hover {
    background: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-light);
}


.discover-btn.sending {
    pointer-events: none;
    cursor: not-allowed;
}

.discover-btn.sending::after {
    transition-delay: 0.2s;
    transition-duration: 0.6s;
    opacity: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* HOME Section (Header + Hero) */
.home-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    background-image: url('./images/Web-portada_FINAL_II.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .home-section {
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {
    .home-section {
        background-position: 49% center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Hero CTA Content */
.hero-cta-content {
    position: relative;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 4rem;
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.hero-subtitle {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-red-intense);
    color: var(--color-light);
    border: 2px solid var(--color-red-intense);
    padding: 1.3rem 3rem 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 17, 27, 0.4);
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-cta-btn:hover {
    color: var(--color-red-intense);
    border-color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 17, 27, 0.5);
}

.hero-cta-btn:hover::before {
    opacity: 1;
}

.hero-urgency {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--color-light);
    margin-top: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Design Section */
.design-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    padding: 4rem 2rem;
}

.design-container {
    max-width: 1500px;
    width: 100%;
}

.design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.design-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.design-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #C10020;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.design-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.divider-text {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #C10020;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #C10020;
    min-width: 100px;
}

.design-description {
    font-family: 'Neris-Thin', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    color: #D8434E;
    margin: 2rem 0 3rem;
}

.design-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #C10020;
    background: transparent;
    border: none;
    padding: 1rem 0 0 0;
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.design-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #C10020;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.design-btn:hover {
    color: rgba(193, 0, 32, 0.7);
}

.design-btn:hover::after {
    width: 100%;
}

.design-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.design-img:hover {
    transform: scale(1.02);
}

/* Story Section */
.story-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    padding: 2rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.story-title {
    font-family: 'Perandory', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-red-intense);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.story-heart {
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeInScale 1s ease-out 1.2s forwards;
}

.heart-icon {
    width: clamp(2rem, 4vw, 3rem);
    height: clamp(2rem, 4vw, 3rem);
    color: var(--color-red-intense);
    transition: transform 0.3s ease;
}

.heart-icon:hover {
    transform: scale(1.1);
}

.story-subtitle {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-red-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.story-cta-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-dark);
    color: var(--color-light);
    border: none;
    padding: 1.2rem 2.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.6s forwards;
    text-decoration: none;
    display: inline-block;
}

.story-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-red-intense);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.story-cta-btn:hover::before {
    opacity: 1;
}

.story-cta-btn:hover {
    transform: translateY(-2px);
    border: none;
    outline: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Section - New Grid Layout */
.gallery-section {
    background: var(--color-light);
    padding: 6rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px 10px;
}

.grid-item {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.grid-item:hover .grid-image {
    transform: scale(1.05);
}

.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background-color: var(--color-light);
    width: 300px;
    height: 610px;
}

.item-3 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    width: 610px;
    height: 300px;
}

.item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-5 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-6 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-7 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-8 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    background-color: var(--color-light);
    width: 300px;
    height: 300px;
}

.item-9 {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
    background-color: var(--color-light);
    width: 610px;
    height: 300px;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7, .item-8, .item-9 {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        grid-column: auto;
        grid-row: auto;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .gallery-section {
        padding: 0rem 0 4rem;
    }
    
    .grid-container {
        grid-template-columns: repeat(2, 2fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .gallery-container {
        padding: 0 1rem;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7, .item-8, .item-9 {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        grid-column: auto;
        grid-row: auto;
    }

    .item-9 {
        display: none;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.div1:hover,
.div2:hover,
.div3:hover,
.div4:hover,
.div5:hover,
.div6:hover,
.div7:hover,
.div8:hover,
.div9:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.div1:hover .gallery-img,
.div2:hover .gallery-img,
.div3:hover .gallery-img,
.div4:hover .gallery-img,
.div5:hover .gallery-img,
.div6:hover .gallery-img,
.div7:hover .gallery-img,
.div8:hover .gallery-img,
.div9:hover .gallery-img {
    transform: scale(1.05);
}

/* Responsive Gallery - New Grid Layout */
@media (max-width: 1024px) {
    .parent {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        height: 500px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 3 / 3; }
    .div3 { grid-area: 1 / 3 / 2 / 4; }
    .div4 { grid-area: 2 / 1 / 3 / 2; }
    .div5 { grid-area: 2 / 3 / 3 / 4; }
    .div6 { grid-area: 3 / 1 / 4 / 2; }
    .div7 { grid-area: 3 / 2 / 4 / 3; }
    .div8 { grid-area: 3 / 3 / 4 / 4; }
    .div9 { grid-area: 4 / 1 / 5 / 4; }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 0rem 0 4rem;
    }
    
    .gallery-container {
        padding: 0 1rem;
    }
    
    .parent {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        height: 400px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 3 / 3; }
    .div3 { grid-area: 2 / 1 / 3 / 2; }
    .div4 { grid-area: 3 / 1 / 4 / 2; }
    .div5 { grid-area: 3 / 2 / 4 / 3; }
    .div6 { grid-area: 4 / 1 / 5 / 2; }
    .div7 { grid-area: 4 / 2 / 5 / 3; }
    .div8 { grid-area: 5 / 1 / 6 / 2; }
    .div9 { grid-area: 5 / 2 / 6 / 3; }
}

@media (max-width: 480px) {
    .parent {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 1fr);
        height: auto;
        gap: 8px;
    }
    
    .div1, .div2, .div3, .div4, .div5, .div6, .div7, .div8, .div9 {
        grid-area: auto;
        height: 200px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-light);
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.testimonials-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--color-red-intense);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.testimonial-card {
    background: var(--color-light);
    border: 2px solid var(--color-dark);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    border-radius: 8px;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.8s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 1s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 1.2s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-red-intense);
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.star {
    color: #FFD700;
    font-size: 1.5rem;
}

.testimonial-text {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    width: 100%;
    border-top: 1px solid var(--color-dark);
    padding-top: 1.5rem;
}

.author-name {
    font-family: 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--color-red-intense);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.author-location {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-red-light);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* Services Section */
.services-section {
    background: #820318;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.services-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--color-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.services-cards {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: stretch;
}

.service-card {
    background: #820318;
    border: 1px solid var(--color-light);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) {
    animation-delay: 0.8s;
}

.service-card:nth-child(2) {
    animation-delay: 1s;
}

.service-card:nth-child(3) {
    animation-delay: 1.2s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-family: 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.card-image {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 4px;
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-img {
    transform: scale(1.05);
}

.card-description {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--color-light);
    line-height: 1.6;
    flex-grow: 1;
}

.card-btn-container {
    display: inline-block;
    width: auto;
}

.card-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light);
    background: transparent;
    border: none;
    padding: 1rem 0 0.5rem;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    width: 100%;
    display: block;
    text-decoration: none;
}


.card-line {
    width: 0;
    height: 1px;
    background: var(--color-light);
    margin-top: 0rem;
    transition: width 0.3s ease, background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .card-line {
    width: 100%;
    background: var(--color-light);
}

/* Process Section */
.process-section {
    background: var(--color-light);
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-container {
    width: 100%;
    text-align: center;
}

.process-header {
    margin: 0 auto 5rem;
    padding: 0 2rem;
    max-width: 900px;
}

.process-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-red-intense);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.process-subtitle {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-red-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.process-border-line {
    width: 100%;
    height: 1px;
    background: var(--color-dark);
}

.process-border-line.top {
    margin-top: 0;
}

.process-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    max-width: 900px;
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    transition: all 0.3s ease;
}

.process-block:nth-child(2) {
    animation-delay: 1.2s;
}

.process-block:nth-child(4) {
    animation-delay: 1.4s;
}

.process-block:nth-child(6) {
    animation-delay: 1.6s;
}


.block-line {
    width: 60px;
    height: 2px;
    background: var(--color-dark);
    margin-right: 2rem;
    flex-shrink: 0;
}

.block-title {
    font-family: 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-grow: 1;
    text-align: left;
    margin: 0;
}

.process-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-dark);
    color: var(--color-light);
    border: 2px solid var(--color-dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.process-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.process-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 23, 23, 0.3);
}

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


/* Responsive Hero CTA */
@media (max-width: 768px) {
    .hero-cta-content {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2.5rem;
    }
    
    .hero-urgency {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-content {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-urgency {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 1em 2em;
    }
    
    .nav-center {
        column-gap: 3em;
    }
    
    .main-nav,
    .main-nav-right {
        gap: 4em;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 1em 1.5em;
    }
    
    .nav-center {
        grid-template-columns: 1fr auto;
        column-gap: 2em;
    }
    
    .main-nav,
    .main-nav-right {
        gap: 2em;
    }
    
    .nav-link {
        font-size: 2em;
    }
    
    .main-nav-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1em 1em;
    }
    
    .nav-center {
        column-gap: 1.5em;
    }
    
    .main-nav {
        gap: 1.5em;
    }
    
    .nav-link {
        font-size: 1.5em;
    }
    
    .social-icon {
        width: 2.5em;
        height: 2.5em;
    }
    
    .social-icon svg {
        width: 1em;
        height: 1em;
    }
    
    .logo-image {
        height: 3em;
    }
    
    .discover-btn {
        padding: 0.6em 1.5em;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1em 0.8em;
    }
    
    .nav-center {
        column-gap: 1em;
    }
    
    .main-nav {
        gap: 1em;
    }
    
    .nav-link {
        font-size: 1.2em;
    }
    
    .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1em 0.5em;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-center {
        justify-content: center;
    }
    
    .social-icon {
        width: 2em;
        height: 2em;
    }
    
    .social-icon svg {
        width: 0.8em;
        height: 0.8em;
    }
    
    .logo-image {
        height: 2.5em;
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    position: fixed;
    background-color: transparent;
    right: 3em;
    top: 3em;
    height: 40px;
    width: 40px;
    padding: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    z-index: 9999;
    cursor: pointer;
    user-select: none;
}

.hamburger.is-active {
    background-color: transparent;
}

._layer {
    background: var(--color-light);
    margin-bottom: 6px;
    border-radius: 2px;
    width: 36px;
    height: 5px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}

.hamburger:hover .-top {
    transform: translateY(-100%);
}

.hamburger:hover .-bottom {
    transform: translateY(100%);
}

.hamburger.is-active .-top {
    transform: translateY(200%) rotate(45deg) !important;
}

.hamburger.is-active .-mid {
    opacity: 0;
}

.hamburger.is-active .-bottom {
    transform: translateY(-200%) rotate(135deg) !important;
}

/* Mobile Menu */
.menuppal {
    background-color: var(--color-red-dark);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    width: 100%;
    z-index: 1150;
}

.menuppal.is_active {
    transform: translate3d(0px, 0px, 0px);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 6em 2em 2em;
    gap: 1.5em;
}

.mobile-nav-link {
    font-family: 'Perandory', 'Playfair Display', serif;
    font-size: 2em;
    color: var(--color-light);
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(244, 242, 230, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: rgba(244, 242, 230, 0.7);
    padding-left: 0.5em;
}

.mobile-social-links {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin: 2em 0;
}

.mobile-social-icon {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon svg {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-dark);
}

.mobile-social-icon:hover {
    background: rgba(244, 242, 230, 0.9);
    transform: scale(1.05);
}

.mobile-discover-btn {
    background: var(--color-dark);
    color: var(--color-light);
    border: none;
    padding: 1em 2em;
    border-radius: 50px;
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
    text-decoration: none;
    display: inline-block;
}

.mobile-discover-btn:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive adjustments for hamburger menu */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
        position: fixed;
        z-index: 9999;
    }
    
    /* Hide all navbar elements except logo, language selector and hamburger */
    .social-links,
    .main-nav,
    .main-nav-right,
    .cta-button {
        display: none !important;
    }
    
    /* Show language selector on tablet */
    .language-selector {
        display: block;
        position: absolute;
        left: 2rem;
        top: 3em;
        z-index: 100;
    }
    
    .language-selected {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    
    .dropdown-arrow {
        width: 12px;
        height: 12px;
    }
    
    /* Center the logo */
    .nav-center {
        grid-column: 2;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        right: 2em;
        top: 2.5em;
        position: fixed;
        z-index: 9999;
    }
    
    .language-selector {
        left: 1rem;
        top: 2em;
        position: absolute;
        z-index: 100;
    }
    
    .language-selected {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
    
    .dropdown-arrow {
        width: 10px;
        height: 10px;
    }
    
    .language-option {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .mobile-menu-content {
        padding: 5em 1.5em 1.5em;
    }
    
    .mobile-nav-link {
        font-size: 1.8em;
    }
    
    .story-section {
        min-height: 60vh;
        padding: 1.5rem;
    }
    
    .story-title {
        margin-bottom: 1.5rem;
    }
    
    .story-heart {
        margin: 1rem 0;
    }
    
    .story-subtitle {
        margin-bottom: 2rem;
    }
    
    .services-section {
        padding: 4rem 1.5rem;
    }
    
    .services-cards {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .card-img {
        height: 240px;
    }
    
    .card-btn {
        font-size: 1.4em;
    }
    
    .process-section {
        padding: 4rem 1.5rem;
    }
    
    .process-header {
        margin-bottom: 3rem;
    }
    
    .process-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .block-line {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .block-title {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .process-btn {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .hamburger {
        right: 1.5em;
        top: 2.5em;
    }
    
    .cta-button {
        display: none;
    }
    
    .services-cards {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-nav-link {
        font-size: 1.5em;
    }
    
    .process-block {
        display: block;
        text-align: center;
    }
    
    .process-block .block-title {
        margin-bottom: 1.5rem;
    }
    
    .block-title {
        text-align: center;
        margin: 0;
    }
    
    .block-line {
        display: none;
    }
    
    .design-title {
        margin-bottom: 1rem;
    }
    
    .design-divider {
        margin: 1rem 0;
    }
    
    .design-description {
        margin: 1rem 0 1.5rem;
        font-size: 1em;
    }
    
    #contact h2 {
        font-size: 3em;
    }
    
    
    .story-section {
        min-height: 60vh;
        padding: 1rem;
    }
    
    .story-title {
        margin-bottom: 1rem;
    }
    
    .story-heart {
        margin: 0.8rem 0;
    }
    
    .story-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .services-section {
        padding: 3rem 1rem;
    }
    
    .services-title {
        margin-bottom: 3rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .card-img {
        height: 240px;
    }
    
    .card-btn {
        font-size: 1.4em;
    }
    
    .process-section {
        padding: 3rem 1rem;
    }
    
    .process-header {
        margin-bottom: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1em;
    }
    
    .process-block {
        padding: 1.5rem 0;
        gap: 1rem;
    }
    
    .block-line {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hamburger {
        right: 1em;
        top: 2.5em;
        height: 24px;
        width: 24px;
    }
    
    ._layer {
        width: 24px;
        height: 3px;
        margin-bottom: 3px;
    }
    
    .mobile-menu-content {
        padding: 4em 1em 1em;
        gap: 1em;
    }
    
    .mobile-nav-link {
        font-size: 1.3em;
        padding: 0.4em 0;
    }
    
    .mobile-social-icon {
        width: 2.5em;
        height: 2.5em;
    }
    
    .mobile-social-icon svg {
        width: 1em;
        height: 1em;
    }
    
    .mobile-discover-btn {
        font-size: 1em;
        padding: 0.8em 1.5em;
    }
    
    .story-section {
        min-height: 60vh;
        padding: 0.8rem;
    }
    
    .story-title {
        margin-bottom: 0.8rem;
    }
    
    .story-heart {
        margin: 0.6rem 0;
    }
    
    .story-subtitle {
        margin-bottom: 1.2rem;
    }
    
    .services-section {
        padding: 2.5rem 0.8rem;
    }
    
    .services-title {
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
    }
    
    .card-img {
        height: 240px;
    }
    
    .card-btn {
        font-size: 1.4em;
    }
    
    .process-section {
        padding: 2.5rem 0.8rem;
    }
    
    .process-header {
        margin-bottom: 2rem;
    }
    
    .process-block {
        padding: 1.2rem 0;
        gap: 0.8rem;
    }
    
    .block-line {
        width: 30px;
        height: 1px;
    }
    
    .process-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Design Section Responsive */
@media (max-width: 1024px) {
    .design-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .design-text {
        order: 1;
    }
    
    .design-description {
        max-width: 600px;
        margin: 1rem auto 2rem;
    }
    
    .design-image {
        order: 2;
    }
    
    .design-btn {
        align-self: center;
    }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: clamp(1.875rem, 4vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .contact-form {
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .contact-btn {
        font-size: clamp(1rem, 2vw, 1.1rem);
        padding: 0.875rem 2rem;
    }
    
    .social-proof-section {
        padding: 2rem 1.5rem;
    }
    
    .social-proof-text {
        font-size: 1rem;
    }
}

/* Footer Section Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 2em;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-right {
        order: 2;
    }
    
    .footer-left {
        order: 1;
        align-items: center;
    }
    
    .footer-text {
        text-align: center;
        max-width: 100%;
        font-size: 0.9em;
    }
    
    .footer-social {
        justify-content: flex-end;
        order: 3;
        margin-top: 1rem;
        padding-top: 0 !important;
    }
    
    .footer-logo-img {
        max-width: 200px !important;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

/* Footer Section */
.footer-section {
    background: var(--color-red-dark);
    position: relative;
    padding: 6em 2em 2.5em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Tablet Footer Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-section {
        padding: 4em 2em 2em;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-text {
        font-size: 1rem;
    }
    
    .footer-logo-img {
        max-width: 400px;
    }
}


.footer-line.top {
    position: relative;
    height: 1px;
    width: 100%;
    margin-bottom: 3em;
    background-color: var(--color-light);
}

.footer-line.bottom {
    position: relative;
    height: 1px;
    width: 100%;
    margin-top: 3em;
    background-color: var(--color-light);
}

.footer-container {
  width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: end;
    min-height: 200px;
    justify-content: space-around;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-text {
    font-family: 'Neris-Thin', 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #FAF5EF;
    line-height: 1.8;
    max-width: 500px;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-description {
        font-size: 1em;
    }
    
    .footer-text {
        font-size: 0.9em;
        line-height: 1.5;
    }
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: 3em;
}

.footer-social .social-icon {
    width: 3rem;
    height: 3rem;
    background: #FAF5EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C10020;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: rgba(244, 242, 230, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social .social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: auto;
    width: 100%;
    max-width: 500px;
    filter: brightness(0) invert(1); /* Convierte el logo a blanco */
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(244, 242, 230, 0.4));
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    padding: 6rem 2rem;
}

.contact-container {
    width: 100%;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: 5em;
    font-weight: 600;
    color: #C10020;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-description {
    font-family: 'Neris-Thin', 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    color: #D8434E;
    line-height: 1.2em;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-btn {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FAF5EF;
    background: var(--color-red-dark);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
}

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

/* Social Proof Section */
.social-proof-section {
    background: var(--color-light);
    padding: 2rem 2rem;
    text-align: center;
}

.social-proof-container {
    max-width: 1000px;
    margin: 0 auto;
}

.social-proof-text {
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-dark);
    line-height: 1.6;
}

.social-proof-text strong {
    font-weight: 600;
    color: var(--color-red-intense);
}

/* Stats Section */
.stats-section {
    background: var(--color-light);
    padding: 6rem 2rem;
}

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

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

.stat-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    color: var(--color-red-intense);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.stat-title {
    font-family: 'Perandory-Semi-Condensed', 'Perandory', 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--color-red-intense);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-description {
    font-family: 'Neris', 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 6rem 2rem 2rem;
    }
    
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 6rem 2rem 2rem;
    }
    
    .stats-grid {
        gap: 3rem;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    width: 100%;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Neris', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-dark);
    border-radius: 8px;
    font-family: 'Neris', 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-dark);
    background: var(--color-light);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red-intense);
    box-shadow: 0 0 0 3px rgba(211, 17, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.form-group input[type="date"] {
    min-height: 56px;
    padding-right: 2.75rem;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    color: var(--color-dark);
    opacity: 0.8;
    cursor: pointer;
    margin-left: -1rem;
}


.contact-form .contact-btn {
    width: 100%;
    margin-top: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border-radius: 50px;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-float:hover {
    transform: translateY(-0.1em);
}

.whatsapp-icon {
    background: var(--color-light);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8em 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 0.2em 0.8em rgba(27, 23, 23, 0.15);
}

.whatsapp-icon svg {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-dark);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    background: var(--color-dark);
    box-shadow: 0 0.2em 0.8em rgba(27, 23, 23, 0.3);
}

.whatsapp-float:hover .whatsapp-icon svg {
    color: var(--color-light);
}

.whatsapp-label {
    white-space: nowrap;
    color: var(--color-dark);
    font-family: 'Neris', 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    color: var(--color-light);
}

/* Mobile: standout WhatsApp chip */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        background: var(--color-light);
        border-radius: 50%;
        padding: 12px;
        justify-content: center;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        border: none;
    }
    
    .whatsapp-icon {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .whatsapp-icon svg {
        width: 1.1em;
        height: 1.1em;
        color: var(--color-dark);
    }
    
    .whatsapp-label {
        display: none;
    }
}

@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: calc(20px + env(safe-area-inset-bottom));
        }
    }
}

@media (max-width: 420px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        padding: 10px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-icon svg {
        width: 1em;
        height: 1em;
        color: var(--color-dark);
    }
}
