/* --- FUNDAMENTOS Y RESET CSS --- */
:root {
    --color-background: #FDFDFD;
    --color-text: #141414;
    --color-grey: #AEAEAE;
    --color-light-grey: #F5F5F5;
    --font-headings: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100%;
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */
.header-home {
    position: fixed;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 1000;
    top: 0;
    left: 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
}
.header-home.scrolled,
.header-home:hover,
.header-home.menu-open {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative;
}
.logo .logo-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo img {
    height: 45px;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}
.logo .logo-scrolled {
    display: none;
}
.header-home.scrolled .logo-main,
.header-home:hover .logo-main,
.header-home.menu-open .logo-main {
    display: none;
}
.header-home.scrolled .logo-scrolled,
.header-home:hover .logo-scrolled,
.header-home.menu-open .logo-scrolled {
    display: block;
}

.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.header-home.scrolled .header-title,
.header-home:hover .header-title,
.header-home.menu-open .header-title {
    opacity: 1;
}

.nav-links { 
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    list-style: none;
    display: flex; 
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 5%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-links.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.nav-links a { 
    text-decoration: none; 
    color: var(--color-text);
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: color 0.3s ease; 
}
.nav-links a:hover { 
    color: var(--color-grey); 
}
.nav-links a[href="#"] {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==========================================================================
   COMPONENTES GENERALES (BOTONES, ETC.)
   ========================================================================== */
.cta-button { 
    display: inline-block; 
    padding: 1rem 2rem; 
    text-decoration: none; 
    background-color: var(--color-text); 
    color: var(--color-background); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border: 2px solid var(--color-text); 
    transition: all 0.3s ease; 
}
.cta-button:hover { 
    background-color: transparent; 
    color: var(--color-text); 
}
.cta-button-outline { 
    display: inline-block; 
    padding: 1rem 2rem; 
    text-decoration: none; 
    background: transparent; 
    color: var(--color-text); 
    border: 2px solid var(--color-text); 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    font-weight: 600; 
    letter-spacing: 1px;
}
.cta-button-outline:hover { 
    background: var(--color-text); 
    color: var(--color-background); 
}


/* ==========================================================================
   SECCIONES DE LA PÁGINA DE INICIO
   ========================================================================== */

/* --- SECCIÓN HERO --- */
.hero { 
    position: relative; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
}
.hero-video { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    min-width: 100%; 
    min-height: 100%; 
    width: auto; 
    height: auto; 
    z-index: -2; 
    object-fit: cover; 
}
.hero::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); 
    z-index: -1; 
}
.hero-content { 
    color: white; 
    z-index: 1; 
}
.hero-content h1 { 
    font-family: var(--font-headings); 
    font-size: 4rem; 
    font-weight: 400; 
    margin-bottom: 1rem; 
}
.hero-content h1 strong { 
    font-weight: 700; 
    font-style: italic; 
}
.hero-content p { 
    font-size: 1rem; 
    font-weight: 400; 
    letter-spacing: 1.5px; 
}

/* --- SECCIONES GENÉRICAS Y SEPARADORES --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.section-header .subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-grey);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}
.section-header h2 {
    font-family: var(--font-headings);
    font-size: 3.5rem;
}
.separator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--color-background);
}
.section-separator {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

/* --- SECCIÓN INTRO --- */
.intro-section { 
    padding: 8rem 5%; 
    background-color: var(--color-background); 
}
.intro-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 5rem; 
    align-items: center; 
}
.intro-text h2 { 
    font-family: var(--font-headings); 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
}
.intro-text p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    margin-bottom: 2rem; 
    max-width: 500px; 
}
.intro-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* --- SECCIÓN SERVICIOS / PORTFOLIO --- */
.services-section { 
    padding: 8rem 5%; 
    background-color: var(--color-background);
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 1.5rem; 
}
.service-card { 
    display: flex; 
    align-items: flex-end; 
    height: 400px; 
    text-decoration: none; 
    color: white; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    overflow: hidden; 
    transition: transform 0.4s ease; 
}
.service-card:hover { 
    transform: scale(1.05); 
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); 
    z-index: 1; 
    transition: opacity 0.4s ease; 
}
.service-card:hover::before { 
    opacity: 0; 
}
.service-card .card-content { 
    padding: 2rem; 
    z-index: 2; 
    transform: translateY(20px); 
    transition: all 0.4s ease; 
}
.service-card:hover .card-content { 
    opacity: 0; 
    transform: translateY(100%); 
}
.service-card h3 { 
    font-family: var(--font-headings); 
    font-size: 2rem; 
}
.service-card.bg-villas { 
    background-image: url('../images/service-villas.webp'); 
}
.service-card.bg-golf { 
    background-image: url('../images/service-golf.webp'); 
}
.service-card.bg-gastronomy { 
    background-image: url('../images/service-gastronomy.webp'); 
}
.service-card.bg-experiences { 
    background-image: url('../images/service-experiences.webp'); 
}

/* --- SECCIÓN FEATURED (COLECCIÓN DE ROPA) --- */
.featured-section { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    background-color: var(--color-background); 
    padding: 8rem 5%;
}
.featured-image, .featured-text { 
    flex-basis: 50%; 
}
.featured-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}
.featured-text { 
    padding: 0 5rem;
}
.featured-text p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    margin-bottom: 2rem; 
}

/* --- SECCIÓN WHY US --- */
.why-us-section { 
    padding: 8rem 5%; 
    text-align: center; 
    background-color: var(--color-background);
}
.why-us-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 3rem; 
    margin-top: 4rem; 
}
.why-us-item .icon { 
    font-family: var(--font-headings); 
    font-size: 3rem; 
    color: var(--color-grey); 
    margin-bottom: 1rem; 
}
.why-us-item h3 { 
    font-family: var(--font-headings); 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
}
.why-us-item p { 
    line-height: 1.6; 
}

/* --- SECCIÓN TESTIMONIALS --- */
.testimonials-section { 
    padding: 8rem 5%; 
    background-color: var(--color-background); 
    text-align: center; 
}
.testimonial-content { 
    max-width: 800px; 
    margin: 0 auto; 
}
.testimonial-content h2 { 
    font-family: var(--font-headings); 
    font-size: 3.5rem; 
    margin-bottom: 2.5rem; 
}
.testimonial-content blockquote { 
    font-family: var(--font-headings); 
    font-size: 1.8rem; 
    font-style: italic; 
    line-height: 1.5; 
    margin-bottom: 2rem; 
    position: relative; 
}
.testimonial-content blockquote::before { 
    content: '“'; 
    position: absolute; 
    top: -1rem; 
    left: -2rem; 
    font-size: 5rem; 
    color: #e0e0e0; 
    z-index: -1; 
}
.testimonial-content cite { 
    font-weight: 600; 
    font-style: normal; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* --- SECCIÓN CLUB --- */
.club-section { 
    padding: 8rem 5%; 
    position: relative; 
    text-align: center; 
    color: white; 
    background-image: url('../images/club-background.webp'); 
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover; 
}
.club-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}
.club-content { 
    position: relative; 
    z-index: 2; 
    max-width: 600px; 
    margin: 0 auto; 
}
.club-content .subtitle { 
    margin-bottom: 0.5rem; 
}
.club-content h2 { 
    font-family: var(--font-headings); 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
}
.club-content p { 
    margin-bottom: 2rem; 
}
.club-content .cta-button { 
    background-color: var(--color-background); 
    color: var(--color-text); 
    border-color: var(--color-background); 
}
.club-content .cta-button:hover { 
    background-color: transparent; 
    color: var(--color-background); 
}

/* ==========================================================================
   ESTILOS PÁGINAS INTERIORES
   ========================================================================== */
.header-internal { 
    position: static; 
    background-color: var(--color-text);
    padding: 1.5rem 5%; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-internal .logo-link-internal { 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
}
.header-internal .nav-links a { 
    color: var(--color-background);
}
.header-internal .nav-links a:hover { 
    color: var(--color-grey); 
}
.header-internal .hamburger .line { 
    background-color: var(--color-background);
}
.page-header { 
    background-color: #F5F5F5; 
    text-align: center; 
    padding: 8rem 5% 4rem; 
}
.page-header h1 { 
    font-family: var(--font-headings); 
    font-size: 4rem; 
}
.gallery-section, 
.about-content, 
.contact-section, 
.golf-section { 
    padding: 6rem 5%; 
}
.cta-section {
    background-color: var(--color-light-grey);
    padding: 6rem 5%;
    text-align: center;
}
.cta-content {
    max-width: 650px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--font-headings);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.about-grid, .contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}
.about-text h2, .contact-info h2 { 
    font-family: var(--font-headings); 
    font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
}
.about-image img { 
    width: 100%; 
}
.form-group { 
    margin-bottom: 1.5rem; 
}
.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 600; 
}
.form-group input, .form-group textarea { 
    width: 100%; 
    padding: 0.75rem; 
    border: 1px solid #ccc; 
    font-family: var(--font-body); 
    font-size: 1rem; 
}
.contact-form .cta-button { 
    width: 100%; 
}
.villa-grid, .golf-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem; 
}
.villa-card, .golf-card { 
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease; 
    overflow: hidden; 
    position: relative;
}
.villa-card:hover, .golf-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.villa-card-image, .golf-card-image {
    height: 300px;
    overflow: hidden;
}
.villa-card-image img, .golf-card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.4s ease;
}
.villa-card:hover .villa-card-image img, .golf-card:hover .golf-card-image img {
    transform: scale(1.1);
}
.villa-card-content { 
    padding: 1.5rem; 
}
.villa-card-content .villa-location {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-grey);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.villa-card-content h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.villa-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.villa-details {
    font-size: 0.85rem;
    color: var(--color-grey);
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.experience-card { 
    position: relative; 
    height: 400px; 
    overflow: hidden; 
    display: flex; 
    align-items: flex-end; 
}
.experience-card img { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}
.experience-card:hover img { 
    transform: scale(1.1); 
}
.gastronomy-card { 
    text-align: center; 
}
.gastronomy-card img { 
    width: 100%; 
    height: 320px; 
    object-fit: cover; 
    margin-bottom: 1.5rem; 
}
.gastronomy-card h4 { 
    font-family: var(--font-headings); 
    font-size: 1.8rem; 
}

/* ==========================================================================
   ESTILOS DE OVERLAYS (CAPAS DE INFORMACIÓN)
   ========================================================================== */
.card-overlay, .golf-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}
.service-card:hover .card-overlay, .golf-card:hover .golf-card-overlay {
    opacity: 1;
}
.golf-card.is-active .golf-card-overlay {
    opacity: 1;
}
.card-overlay p,
.golf-card-overlay h3,
.golf-card-overlay p,
.golf-card-overlay .golf-details {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.service-card:hover .card-overlay p,
.golf-card:hover .golf-card-overlay h3,
.golf-card:hover .golf-card-overlay p,
.golf-card:hover .golf-card-overlay .golf-details {
    transform: translateY(0);
}
.card-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    transition-delay: 0.1s;
}
.golf-card-overlay h3 {
    font-family: var(--font-headings);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition-delay: 0.1s;
}
.golf-card-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
    transition-delay: 0.2s;
}
.golf-card-overlay .golf-details {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-grey);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition-delay: 0.3s;
}

/* ==========================================================================
   FOOTER (NUEVA SECCIÓN)
   ========================================================================== */
.site-footer { 
    background-color: var(--color-text); 
    color: var(--color-background); 
    padding: 5rem 5% 2rem 5%; 
}
.footer-content { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; 
    margin-bottom: 4rem; 
}
.footer-column h4 { 
    font-family: var(--font-headings); 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: white; 
}
.footer-column p, .footer-column li { 
    color: var(--color-grey); 
    font-size: 0.95rem;
}
.footer-about .footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}
.footer-about p {
    max-width: 300px;
    line-height: 1.7;
}
.footer-links ul { 
    list-style: none; 
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links a { 
    text-decoration: none; 
    color: var(--color-grey); 
    transition: color 0.3s ease; 
}
.footer-links a:hover { 
    color: white; 
}
.footer-contact p {
    margin-bottom: 1.5rem;
}
.footer-contact a {
    color: var(--color-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: white;
}
.social-icons { 
    display: flex;
    gap: 1.5rem;
}
.social-icons a { 
    color: white; 
    transition: opacity 0.3s ease;
}
.social-icons a:hover {
    opacity: 0.7;
}
.social-icons svg {
    width: 24px;
    height: 24px;
    fill: white;
}
.footer-bottom { 
    text-align: center; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: var(--color-grey);
}

/* ==========================================================================
   ANIMACIONES Y EFECTOS
   ========================================================================== */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.scroll-down-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
}
.scroll-down-arrow span {
    position: absolute;
    width: 2px;
    height: 8px;
    background: white;
    left: 50%;
    margin-left: -1px;
    top: 8px;
    border-radius: 2px;
    animation: scroll-anim 1.5s infinite ease-out;
}
@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    90% { transform: translateY(12px); opacity: 1; }
    100% { opacity: 0; }
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
.hamburger { 
    display: block; 
    cursor: pointer; 
    z-index: 1001; 
}
.hamburger .line { 
    width: 25px; 
    height: 3px; 
    margin: 5px 0; 
    transition: all 0.3s ease; 
    background-color: white; 
}
.header-home.scrolled .hamburger .line,
.header-home:hover .hamburger .line,
.header-home.menu-open .hamburger .line { 
    background-color: var(--color-text); 
}

.hamburger.active .line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }


@media (max-width: 900px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 5%;
        border-radius: 0;
    }
    
    .intro-section, .why-us-section, .testimonials-section, .club-section, .services-section, .featured-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .hero-content h1 { font-size: 4.5rem; }
    .hero-content p { font-size: 1.1rem; padding: 0 1rem; }
    
    .section-header h2, .intro-text h2, .testimonial-content h2, .club-content h2, .page-header h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    .testimonial-content blockquote { font-size: 1.5rem; }
    
    .intro-grid, .about-grid, .contact-grid, .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .featured-section {
        display: grid;
        grid-template-columns: 1fr;
        padding: 6rem 1.5rem;
        gap: 2.5rem;
    }
    .featured-image { order: -1; width: 100%; }
    .featured-text { padding: 0; text-align: center; }
    .featured-text .cta-button { margin: 0 auto; }
    
    .why-us-item {
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
    }
    .why-us-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-about .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    .villa-grid, .golf-grid {
        grid-template-columns: 1fr;
    }
    .intro-section, .why-us-section, .testimonials-section, .club-section, .services-section, .featured-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .hero-content h1 { 
        font-size: 2.8rem;
    }
    
    .section-header h2, .intro-text h2, .testimonial-content h2, .club-content h2, .page-header h1, .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-content blockquote { font-size: 1.25rem; }
    .testimonial-content blockquote::before {
        font-size: 4rem;
        top: -0.5rem;
        left: -1rem;
    }

    .cta-button, .cta-button-outline {
        padding: 0.9rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links ul {
        align-items: center;
    }
    .social-icons {
        justify-content: center;
    }
}