/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 22:45:31 */
/* ========================================
   ATDERMA - Estilos CSS
   Landing Page para Clínica Dermatológica
   ======================================== */

/* CSS Variables - Color Palette */
:root {
    /* Colors */
    --background: hsl(30, 30%, 95%);
    --foreground: hsl(20, 15%, 20%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(20, 15%, 20%);
    --primary: hsl(20, 15%, 25%);
    --primary-foreground: hsl(30, 30%, 95%);
    --secondary: hsl(15, 30%, 90%);
    --secondary-foreground: hsl(20, 15%, 25%);
    --accent: hsl(10, 35%, 88%);
    --accent-foreground: hsl(20, 15%, 25%);
    --muted: hsl(30, 20%, 90%);
    --muted-foreground: hsl(20, 10%, 45%);
    --border: hsl(20, 10%, 85%);
    --ring: hsl(20, 15%, 25%);

    /* Specific brand colors */
    --atderma-beige: hsl(30, 30%, 95%);
    --atderma-rose: hsl(10, 35%, 88%);
    --atderma-brown: hsl(20, 15%, 22%);
    --atderma-cream: hsl(35, 40%, 97%);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 5rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

em {
    font-style: normal;
    color: var(--primary);
    font-weight: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(20, 15%, 20%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background-color: hsl(15, 30%, 85%);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 400;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--foreground);
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--foreground);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-2xl);
    border-bottom-right-radius: var(--radius-2xl);
}

.nav-link-mobile {
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-cta {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-title em {
    display: block;
    font-style: italic;
}

.hero-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    display: none;
}

.hero-image-placeholder {
    position: relative;
    width: 80%;
    aspect-ratio: 3/4;
    transform: scale(1.1);    
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(60px);
    top: 20%;
    right: 10%;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image {
        display: block;
    }
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    border-radius: 50%;
}

.proof-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.proof-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ========================================
   SECTION HEADER (Shared Styles)
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: var(--section-padding) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background-color: var(--card);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-image {
   height: 210px;
    overflow: hidden;
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.team-image-placeholder img {
    width: 100%;
    height: 140%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-specialty {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.team-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
}

.team-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-full);
}

.team-contact {
    margin-top: 1rem;
    width: 100%;
}

.team-card-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.team-card-featured .team-name {
    color: var(--primary);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--atderma-cream);
}

.services-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    background-color: var(--card);
    border-radius: var(--radius-3xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.service-featured {
    border: 2px solid rgba(var(--primary), 0.2);
    box-shadow: var(--shadow-xl);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-full);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.service-benefits,
.service-steps,
.service-care {
    margin-bottom: 1.5rem;
}

.service-benefits h4,
.service-steps h4,
.service-care h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.service-benefits ul,
.service-steps ol,
.service-care ul {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-benefits li,
.service-steps li,
.service-care li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-steps ol {
    counter-reset: step;
}

.service-steps li {
    counter-increment: step;
}

.service-steps li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-care {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.care-block {
    padding: 1rem;
    background-color: var(--background);
    border-radius: var(--radius-lg);
}

.care-block h4 {
    font-size: 0.8125rem;
}

.care-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-faq {
    margin-bottom: 1.5rem;
}

.service-image {
    margin: 1.5rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card > .btn {
    width: 100%;
}

/* Secondary Services Grid */
.services-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card-mini {
    background-color: var(--card);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.service-icon-mini {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    margin: 0 auto 1rem;
}

.service-icon-mini svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.service-card-mini h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-card-mini p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .services-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-featured {
        grid-column: span 2;
    }

    .service-care {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-secondary {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-featured {
        grid-column: span 1;
    }
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    color: var(--foreground);
    background-color: transparent;
    transition: background-color var(--transition-fast);
}

.accordion-trigger:hover {
    background-color: var(--muted);
}

.accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--foreground);
    transition: all var(--transition-fast);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--atderma-cream);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://atderma.co/wp-content/uploads/2026/01/Copia-de-RECEPCION.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.faq > .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-list .accordion-item {
    background-color: var(--card);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: var(--card);
    border-radius: var(--radius-3xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--foreground);
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* Contact Info Side */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calendly-placeholder {
    background-color: var(--card);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--border);
}

.calendly-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
}

.calendly-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.calendly-placeholder p {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.calendly-placeholder span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.urgency-message {
    background-color: var(--accent);
    border-radius: var(--radius-xl);
    padding: 1rem;
    text-align: center;
}

.urgency-message span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-links svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-links h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.toast.hidden {
    display: none;
}

.toast-message {
    font-size: 0.9375rem;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 767px) {
    :root {
        --section-padding: 3rem;
    }

    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Contact form mobile */
    .contact-form-wrapper {
        padding: 1.25rem;
        border-radius: var(--radius-xl);
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    .calendly-placeholder {
        padding: 1.5rem 1rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.9375rem;
    }
}


#logo {
    width: 180px;
}