/* ===== VARIABLES ===== */
:root {
    --primary-color: #40d9ff;
    --primary-dark: #2db8d8;
    --primary-light: #66e1ff;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #222222;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-gray: #f5f6f7;
    --border-color: #e0e0e0;
    --border-light: #eeeeee;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 50%, var(--primary-light) 100%);
    overflow: hidden;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 50%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

/* ===== GRIDS ===== */
.info-grid,
.services-grid,
.benefits-grid,
.reviews-grid,
.contact-grid,
.team-grid,
.values-grid,
.choose-grid,
.plans-grid,
.areas-grid,
.mission-vision-grid {
    display: grid;
    gap: 40px;
}

.info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.services-grid,
.benefits-grid,
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.areas-grid {
    grid-template-columns: repeat(3, 1fr);
}

.mission-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== CARDS ===== */
.service-card,
.benefit-card,
.review-card,
.team-member,
.value-card,
.plan-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover,
.benefit-card:hover,
.review-card:hover,
.team-member:hover,
.value-card:hover,
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon,
.benefit-icon,
.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-card h3,
.benefit-card h3,
.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 5px 0;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* ===== REVIEWS ===== */
.review-stars {
    margin-bottom: 20px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

.review-author {
    margin-top: 20px;
    text-align: left;
}

.review-author strong {
    color: var(--text-dark);
    display: block;
}

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

/* ===== TEAM ===== */
.member-avatar {
    margin-bottom: 20px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== FORMS ===== */
.contact-form,
.contact-form-detailed {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-links img {
    width: 24px;
    height: 24px;
}

/* ===== SERVICES PAGE ===== */
.service-category {
    background-color: var(--background-light);
}

.service-category:nth-child(even) {
    background-color: var(--background-color);
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.service-detail h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-includes {
    list-style: none;
}

.service-includes li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.price-card {
    text-align: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    flex: 1;
    min-width: 140px;
}

.price-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== SPECIALIZED SERVICES ===== */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.specialized-service {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.specialized-icon {
    margin-bottom: 25px;
}

.specialized-service h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specialized-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* ===== PLANS ===== */
.plan-card {
    position: relative;
    border: 2px solid var(--border-light);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.plan-frequency {
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.plan-features {
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
    text-align: center;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.area-column li:last-child {
    border-bottom: none;
}

.areas-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
}

.areas-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon img {
    width: 28px;
    height: 28px;
}

.method-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.method-info p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.method-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.whatsapp-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.social-contact {
    margin-top: 50px;
}

.social-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.social-link img {
    width: 24px;
    height: 24px;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* ===== THANKS PAGE ===== */
.thanks-section {
    text-align: center;
    padding: 120px 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 60px;
    line-height: 1.6;
}

.next-steps {
    margin: 80px 0;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-reminder {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    margin: 60px 0;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.urgent-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.urgent-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgent-icon {
    width: 40px;
    height: 40px;
}

.whatsapp-urgent {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.additional-info {
    background-color: var(--background-light);
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.info-content a {
    margin-top: 20px;
}
#servicios .section-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.benefit-card, .value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-card {
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
}

.info-icon {
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.follow-us {
    text-align: center;
}

.social-follow {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-follow-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    font-weight: 600;
}

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

.social-follow-link img {
    width: 28px;
    height: 28px;
}
.areas-detailed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-bottom: 20px;
}
/* ===== LEGAL PAGES ===== */
.legal-content {
    background-color: var(--background-color);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-document h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.legal-document h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px;
}

.legal-document p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-document ul,
.legal-document ol {
    margin: 15px 0 15px 30px;
}

.legal-document li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.legal-document ul li {
    list-style-type: disc;
}

.legal-document ol li {
    list-style-type: decimal;
}

.contact-info-legal {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.contact-info-legal p {
    margin-bottom: 8px;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-footer em {
    color: var(--text-light);
    font-style: italic;
}

/* ===== COOKIE TABLES ===== */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-color);
}

.browser-instructions {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin: 25px 0;
}

.browser-instructions h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.browser-instructions p {
    margin-bottom: 20px;
    font-family: monospace;
    background-color: var(--background-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* ===== ABOUT PAGE ===== */
.company-story {
    background-color: var(--background-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-image {
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.mission-card,
.vision-card {
    background-color: var(--background-color);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    margin-bottom: 30px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.choose-item {
    text-align: center;
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.choose-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.choose-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.choose-item p {
    color: var(--text-light);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--background-light);
    border-color: var(--background-light);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

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

.footer-section p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social img {
    width: 20px;
    height: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.cookie-category p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 20px 30px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Page Headers */
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Grids */
    .info-grid,
    .story-grid,
    .mission-vision-grid,
    .contact-grid,
    .contact-layout, .areas-detailed {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid,
    .team-grid,
    .values-grid,
    .plans-grid,
    .specialized-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Service Content */
    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form,
    .contact-form-detailed {
        padding: 30px 25px;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Thanks Page */
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-message {
        font-size: 1.1rem;
    }
    
    .urgent-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-card,
    .benefit-card,
    .review-card,
    .team-member,
    .value-card,
    .plan-card {
        padding: 30px 20px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .social-follow {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-modal-content {
        padding: 30px 25px;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-document h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-light: #000000;
        --shadow-light: 0 2px 4px rgba(0,0,0,0.3);
        --shadow-medium: 0 4px 8px rgba(0,0,0,0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .page-header {
        padding: 40px 0 20px;
    }
}
