/* 
==============================================
ESTILOS PARA PUREHEALTH - LIMPIEZA CORPORAL
==============================================
*/

/* Variables Globales */
:root {
    --primary-color: #4ecca3;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #f9f9f9;
    --dark-color: #232931;
    --text-color: #333333;
    --text-light: #777777;
    --border-color: #eeeeee;
    --gradient-primary: linear-gradient(135deg, #4ecca3 0%, #2ecc71 100%);
    --gradient-secondary: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 10px;
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 2rem;
}

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

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* Utilidades */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.4rem 2.8rem;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    margin-left: 1.5rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
}

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

.btn-service {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    position: relative;
}

.btn-service::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.btn-text i {
    margin-left: 1rem;
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-submit {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

.btn-submit:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-light);
    padding: 1.5rem 0;
    transition: var(--transition);
}

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

.navbar.scrolled {
    padding: 1rem 0;
    background-color: white;
}

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

.logo-img {
    width: 50px;
    margin-right: 1rem;
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

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

.nav-links a {
    margin-left: 3rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.6rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 18rem 0 10rem;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(78, 204, 163, 0.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(78, 204, 163, 0.08);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.hero-image {
    width: 45%;
    position: relative;
}

.blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.3;
    animation: blobAnimation 8s infinite alternate;
}

@keyframes blobAnimation {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero-buttons {
    display: flex;
    align-items: center;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-image {
    width: 45%;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.experience-badge .number {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.about-text {
    width: 55%;
}

.about-text h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-features li {
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

/* Services Section */
.services {
    background-color: var(--light-color);
    position: relative;
}

.bg-shape {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .btn-service,
.service-card:hover .service-icon i {
    color: white;
}

.service-card:hover .btn-service::after {
    background-color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(78, 204, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
}

.service-icon i {
    font-size: 3.2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    transition: var(--transition);
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-content {
    display: flex;
    gap: 6rem;
}

.benefits-tabs {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tab {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.tab i {
    font-size: 2.4rem;
    margin-right: 1.5rem;
}

.tab span {
    font-size: 1.8rem;
    font-weight: 600;
}

.benefits-info {
    width: 70%;
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.tab-content h3 span {
    font-size: 1.8rem;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.tab-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.tab-content ul li i {
    color: var(--primary-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
}

/* Process Section */
.process {
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    width: calc(25% - 3rem);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -35px;
    width: 70px;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.step-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.step-content p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    margin: 0 -1.5rem;
    position: relative;
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--radius);
    position: relative;
    margin-bottom: 3rem;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background-color: var(--light-color);
    transform: rotate(45deg);
}

.testimonial-content i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 1.4rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--border-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 3rem 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    color: white;
    position: relative;
}

.contact-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.contact-content {
    display: flex;
    gap: 6rem;
    padding-top: 8rem;
}

.contact-info {
    width: 45%;
}

.contact-info .section-title,
.contact-info .section-subtitle {
    color: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-item i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-right: 2rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form-container {
    width: 55%;
    position: relative;
}

.form-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.contact-form {
    background-color: white;
    border-radius: var(--radius);
    padding: 4rem;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.contact-form h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 204, 163, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

/* Map Section */
.map {
    line-height: 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 8rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-logo {
    width: 30%;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
}

.footer-links {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 1.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    html {
        font-size: 56.25%;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 50%;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 2rem;
        box-shadow: var(--shadow-light);
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content,
    .hero-image {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 8rem;
    }
    
    .about-image,
    .about-text {
        width: 100%;
    }
    
    .process-step {
        width: calc(50% - 2rem);
        margin-bottom: 5rem;
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 8rem;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 5rem;
    }
    
    .footer-logo,
    .footer-links {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 5rem;
    }
    
    .benefits-tabs,
    .benefits-info {
        width: 100%;
    }
    
    .benefits-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .tab {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .tab i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 3rem;
    }
    
    .footer-column {
        width: calc(50% - 1.5rem);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .footer-column {
        width: 100%;
    }
}
