* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

section:nth-child(odd) {
    background: rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(8px);
}

section.hero {
    background: transparent;
    backdrop-filter: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

header {
    background-color: #0f172a;
    color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #fbbf24;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #fbbf24;
}

.lang-switch {
    display: flex;
    gap: 8px;
    background: #1e293b;
    padding: 6px;
    border-radius: 40px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: #fbbf24;
    color: #0f172a;
}

.lang-btn:hover:not(.active) {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%),
        url('../assets/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 90%;
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #fbbf24;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fbbf24;
}

.btn-outline:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats div {
    text-align: left;
}

.hero-stats .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
}

.hero-stats .label {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-sub {
    color: #475569;
    max-width: 640px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: 0.3s;
    border-left: 5px solid #fbbf24;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 2.4rem;
    color: #fbbf24;
    margin-bottom: 16px;
    transition: 0.3s;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.service-arrow i {
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: 0.3s;
}

.service-card:hover .service-arrow i {
    transform: translateX(6px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: #334155;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-image {
    background: #e2e8f0;
    border-radius: 24px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #64748b;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}

.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: 0.3s;
    border-top: 4px solid #fbbf24;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.benefit-item i {
    font-size: 2.4rem;
    color: #fbbf24;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.benefit-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial {
    background: #fff;
    padding: 40px 36px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

.testimonial i {
    color: #fbbf24;
    font-size: 2rem;
    margin-bottom: 12px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #1e293b;
}

.testimonial .author {
    margin-top: 16px;
    font-weight: 600;
    color: #0f172a;
}

.faq-section {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #fbbf24;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f172a;
    transition: 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: rgba(248, 250, 252, 0.5);
}

.faq-question i {
    transition: 0.3s;
    color: #fbbf24;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 24px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
    border: 1px solid rgba(241, 245, 249, 0.5);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #fbbf24;
}

.team-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.team-position {
    display: inline-block;
    font-size: 0.85rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 10px;
    background: #fefce8;
    padding: 2px 14px;
    border-radius: 20px;
}

.team-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.team-lang {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.team-lang span {
    font-size: 0.75rem;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 12px;
    color: #475569;
    font-weight: 500;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(241, 245, 249, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    background: rgba(250, 250, 252, 0.8);
    color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

.error-message.visible {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid #86efac;
    margin-top: 20px;
}

.form-success.visible {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 12px;
}

.form-success p {
    color: #166534;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-detail {
    padding: 60px 0 80px;
    background: #fafafc;
}

.service-detail-header {
    margin-bottom: 50px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: 0.3s;
}

.back-link:hover {
    gap: 12px;
}

.service-detail-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #475569;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-detail-content h2:first-of-type {
    margin-top: 0;
}

.service-detail-content p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
}

.service-list li i {
    color: #fbbf24;
    font-size: 1.1rem;
    width: 20px;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-pricing {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.service-pricing h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    color: #475569;
}

.pricing-price {
    font-weight: 700;
    color: #0f172a;
}

.service-contact {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
}

.service-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-contact p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.service-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    padding: 30px;
    border-radius: 20px;
    color: #0f172a;
    text-align: center;
}

.service-highlight i {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.service-highlight h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-highlight p {
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 12px;
}

.footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-grid a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .hero-grid {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 20px 0;
        background: #0f172a;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .lang-switch {
        margin-left: auto;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-stats div {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }

    .service-detail {
        padding: 40px 0 60px;
    }
    
    .service-detail-header h1 {
        font-size: 2rem;
    }
    
    .pricing-item {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .btn {
        padding: 14px 28px;
        width: 100%;
        text-align: center;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .hero-stats .num {
        font-size: 1.8rem;
    }
}

html {
    scroll-behavior: smooth;
}

.page-header-about {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    text-align: center;
}

.page-header-about h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

.page-header-about p {
    color: #475569;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.about-main {
    padding: 60px 0;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-main-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-main-text p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-values {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.value-item:hover {
    transform: translateY(-6px);
    border-color: #fbbf24;
}

.value-item i {
    font-size: 2.4rem;
    color: #fbbf24;
    margin-bottom: 14px;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.value-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fbbf24;
}

.stat-label {
    display: block;
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 4px;
}

.about-contact {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.about-contact h2 {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    font-size: 1.4rem;
    color: #fbbf24;
    min-width: 30px;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: #0f172a;
    font-weight: 600;
}

.contact-item p {
    color: #475569;
    margin: 0;
}

.contact-item a {
    color: #fbbf24;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #e2e8f0;
}

@media (max-width: 992px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-header-about h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-map {
        height: 250px;
    }
}

.page-header-contact {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    text-align: center;
}

.page-header-contact h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

.page-header-contact p {
    color: #475569;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.contact-page-main {
    padding: 60px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-page-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-page-info > p {
    color: #475569;
    margin-bottom: 30px;
}

.contact-page-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-page-item i {
    font-size: 1.3rem;
    color: #fbbf24;
    min-width: 28px;
    margin-top: 2px;
}

.contact-page-item strong {
    display: block;
    color: #0f172a;
    font-weight: 600;
}

.contact-page-item p {
    color: #475569;
    margin: 0;
}

.contact-page-item a {
    color: #475569;
    text-decoration: none;
}

.contact-page-item a:hover {
    color: #fbbf24;
}

.contact-page-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.social-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.social-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.social-btn.email {
    background: #0f172a;
    color: #fff;
}

.social-btn.email:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.contact-page-form .contact-form {
    max-width: 100%;
    padding: 36px 32px;
}

.contact-page-map {
    padding: 60px 0 80px;
}

.contact-page-map h2 {
    margin-bottom: 30px;
}

.map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page-info {
        order: 2;
    }
    
    .contact-page-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-header-contact h1 {
        font-size: 2rem;
    }
    
    .contact-page-form .contact-form {
        padding: 24px 16px;
    }
    
    .contact-page-social {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
}