/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.hidden {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4 {
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
}

/* 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: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0d9488;
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
    background: #0f766e;
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #0d9488;
    border: 2px solid #0d9488;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.btn-white {
    background: white;
    color: #0d9488;
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: #0d9488;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.btn-link:hover {
    color: #0f766e;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    color: #0d9488;
    width: 2rem;
    height: 2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.logo-highlight {
    color: #0d9488;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d9488;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #64748b;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background: #f1f5f9;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.nav-mobile .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.nav-mobile .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b, #0f172a, #1e293b);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5eead4;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #5eead4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat {
    text-align: left;
}

@media (min-width: 640px) {
    .hero-stats {
        gap: 2rem;
    }
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5eead4;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: #475569;
}

.hero-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 260px;
}

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #ccfbf1;
    border-radius: 0.5rem;
    color: #0d9488;
}

.hero-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.hero-card-text {
    font-size: 0.75rem;
    color: #64748b;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #ccfbf1;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: #0d9488;
}

.feature-title {
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: #64748b;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.services-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.services-content {
    max-width: 540px;
}

.services-text {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit svg {
    color: #0d9488;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit span {
    font-size: 0.875rem;
    color: #475569;
}

.services-image {
    position: relative;
}

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.rate-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #0d9488;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
    text-align: center;
}

.rate-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
}

.rate-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.rate-term {
    display: block;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(90deg, #0d9488, #06b6d4);
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 5rem 0;
}

.page-title {
    color: white;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
}

.page-date {
    font-size: 1rem;
    color: #94a3b8;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5eead4;
    margin-bottom: 1rem;
}

/* About Page */
.about-mission {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #ccfbf1;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: #0d9488;
}

.value-title {
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 0.875rem;
    color: #64748b;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: #0d9488;
    color: white;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item svg {
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label-white {
    color: rgba(255, 255, 255, 0.85);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    text-align: center;
}

.team-image {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.team-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: #0d9488;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: #f1f5f9;
    text-align: center;
}

.cta-section-title {
    margin-bottom: 1.5rem;
}

.cta-section-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-title {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-form textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: #ccfbf1;
    border-radius: 0.75rem;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: #0d9488;
}

.success-title {
    margin-bottom: 0.5rem;
}

.success-text {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info-title {
    margin-bottom: 1rem;
}

.contact-info-text {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #ccfbf1;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: #0d9488;
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    color: #0d9488;
    font-weight: 500;
}

.contact-card-sub {
    font-size: 0.75rem;
    color: #64748b;
}

.phone-cta {
    background: linear-gradient(90deg, #0d9488, #06b6d4);
    border-radius: 0.75rem;
    padding: 2rem;
    color: white;
    text-align: center;
}

.phone-cta h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.phone-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: #f1f5f9;
}

.map-placeholder {
    background: #e2e8f0;
    border-radius: 0.75rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.map-placeholder svg {
    margin-bottom: 0.5rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0 5rem;
    background: white;
}

.legal-document {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-box p {
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo-icon {
    color: #5eead4;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-highlight {
    color: #5eead4;
}

.footer-description {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #5eead4;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact svg {
    color: #5eead4;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

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

.footer-bottom-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #5eead4;
}
