/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1e293b;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e293b;
}

.nav-cta {
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: #0f172a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 12rem 0 4rem;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    padding-top: 0;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
    white-space: nowrap;
}

.highlight {
    color: #1e293b;
}

.mobile-break {
    color: #1e293b;
}

/* Mobile line break control */
@media (max-width: 640px) {
    .hero-title {
        white-space: normal;
    }
    
    .mobile-break::before {
        content: '\A';
        white-space: pre;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #1f2937;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(30, 41, 59, 0.3);
}

.btn-primary:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(15, 23, 42, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e293b;
    border-color: #1e293b;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-2px);
}

/* Special styling for phone number buttons in dark sections */
.why-choose-cta .btn-secondary,
.faq-cta .btn-secondary,
.process-cta .btn-secondary {
    color: white;
    border-color: white;
    font-weight: 600;
}

.why-choose-cta .btn-secondary:hover,
.faq-cta .btn-secondary:hover,
.process-cta .btn-secondary:hover {
    background: white;
    color: #1e293b;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
}

.hero-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transform: none;
    border-radius: 1rem;
    max-width: 100%;
}

/* Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 10;
    max-width: 180px;
}

/* Hero Contact Form */
.hero-contact-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.form-header p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.compact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.compact-form input,
.compact-form textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
}

.compact-form input:focus,
.compact-form textarea:focus {
    outline: none;
    border-color: #1e293b;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.compact-form textarea {
    resize: vertical;
    grid-column: 1 / -1;
}

.form-actions-compact {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-full {
    flex: 2;
}

.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero Success Message */
.hero-success {
    text-align: center;
    padding: 32px 16px;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-success h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.hero-success p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.trust-header {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 9px;
}

.trust-shield {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.trust-info {
    flex: 1;
}

.trust-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 3px;
}

.trust-subtitle {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars svg {
    width: 13px;
    height: 13px;
}

.rating-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
}

.rating-count {
    font-size: 0.65rem;
    color: #6b7280;
    display: none;
}

/* Reset photo styles for mobile */
@media (max-width: 768px) {
    .hero-image {
        height: 280px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 1rem;
        max-width: 400px;
    }
    
    .trust-badge {
        bottom: 15px;
        right: 15px;
        max-width: 150px;
        padding: 12px;
    }
    
    .trust-header {
        gap: 7px;
        margin-bottom: 7px;
    }
    
    .trust-title {
        font-size: 0.8rem;
    }
    
    .trust-subtitle {
        font-size: 0.7rem;
    }
    
    .rating-number {
        font-size: 0.75rem;
    }
    
    .hero-photo {
        height: 280px;
        transform: none;
        object-position: center 25%;
        border-radius: 1rem;
        object-fit: cover;
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive Design */
/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero {
        padding: 10rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
.hero-content {
        gap: 1.5rem;
        padding-top: 0;
    }
    
    .hero-image {
        max-width: 500px;
        height: 350px;
    }
    
    .hero-photo {
        height: 350px;
        object-position: center 25%;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2rem;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-width: 100%;
        height: 300px;
        margin: 0 auto;
        border-radius: 1rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        overflow: hidden;
    }
    
    .hero-photo {
        transform: none;
        object-position: center 20%;
        border-radius: 1rem;
        object-fit: cover;
        height: 300px;
        width: 100%;
    }
}

/* Mobile Large */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 7rem 0 2rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .trust-badge {
        bottom: 10px;
        right: 10px;
        max-width: 125px;
        padding: 10px;
    }
    
    .trust-shield {
        width: 18px;
        height: 18px;
    }
    
    .rating-stars svg {
        width: 11px;
        height: 11px;
    }
    
    .trust-title {
        font-size: 0.75rem;
    }
    
    .trust-subtitle {
        font-size: 0.65rem;
    }
    
    .rating-number {
        font-size: 0.7rem;
    }
    
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 5rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .btn {
        max-width: 280px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .services-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.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;
}

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

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}


.services-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    color: #1f2937;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.service-cta {
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-cta:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* Services Responsive */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: #ffffff;
}

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

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.client-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.review-rating .stars {
    display: flex;
    gap: 1px;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    font-style: italic;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.review-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.partners-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    min-height: 60px;
    justify-content: center;
}

.logo-icon {
    transition: color 0.3s ease;
}

.partner-logo:nth-child(1) .logo-icon {
    color: #3b82f6; /* Синий для TechCorp */
}

.partner-logo:nth-child(2) .logo-icon {
    color: #10b981; /* Зелёный для EventPlus */
}

.partner-logo:nth-child(3) .logo-icon {
    color: #f59e0b; /* Жёлтый для RetailMax */
}

.partner-logo:nth-child(4) .logo-icon {
    color: #8b5cf6; /* Фиолетовый для OfficeCenter */
}

.partner-logo:nth-child(5) .logo-icon {
    color: #ef4444; /* Красный для LogistikPro */
}

.partner-logo:nth-child(6) .logo-icon {
    color: #06b6d4; /* Голубой для BuildMax */
}

.partner-logo:hover .logo-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

.logo-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
    text-align: center;
}

.partner-logo:hover .logo-text {
    color: #1e293b;
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .client-info {
        width: 100%;
    }
    
    .review-rating {
        align-self: flex-end;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .logo-placeholder {
        gap: 0.25rem;
        padding: 0.5rem;
        min-height: 55px;
    }
    
    .logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        font-size: 0.7rem;
    }
    
    .partners-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 3rem 0;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .client-info {
        gap: 0.75rem;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-position {
        font-size: 0.8rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .partners-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .partners-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .logo-placeholder {
        gap: 0.375rem;
        padding: 0.75rem;
        min-height: 70px;
    }
    
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .overall-rating {
        gap: 0.75rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: #1e293b;
    margin: 1rem 0 1.5rem;
    display: flex;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-features li {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    background: #1e293b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-arrow-hidden {
    display: none;
}

/* Process CTA */
.process-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.process-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-cta p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Process Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 0;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .process-cta {
        padding: 2rem 1.5rem;
    }
    
    .process-cta h3 {
        font-size: 1.5rem;
    }
    
    .process-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 3rem 0;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .step-features li {
        font-size: 0.8rem;
    }
    
    .process-cta {
        padding: 1.5rem 1rem;
    }
    
    .process-cta h3 {
        font-size: 1.25rem;
    }
    
    .process-cta p {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Contact Form */
.contact-form {
    padding: 0 24px 24px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e293b;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn {
    flex: 1;
}

/* Success Message */
.form-success {
    padding: 40px 24px;
    text-align: center;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h4 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.form-success p {
    margin: 0 0 24px 0;
    color: #6b7280;
    line-height: 1.6;
}

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

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

/* Hero Form Responsive */
@media (max-width: 768px) {
    .hero-contact-form {
        padding: 20px;
        margin: 0 auto;
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions-compact {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-full, .btn-call {
        flex: 1;
    }
    
    .form-header h3 {
        font-size: 1.1rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-contact-form {
        padding: 16px;
    }
    
    .compact-form input,
    .compact-form textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .form-header h3 {
        font-size: 1rem;
    }
    
    .form-header p {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 16px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .contact-form {
        padding: 0 20px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 12px;
    }
    
    .modal-header {
        padding: 16px 16px 0;
    }
    
    .contact-form {
        padding: 0 16px 16px;
    }
    
    .form-success {
        padding: 32px 16px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.1"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.why-choose-us-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-choose-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-us-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.advantage-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.875rem;
}

.advantage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Why Choose CTA */
.why-choose-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.why-choose-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.why-choose-cta p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.why-choose-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Mobile Styles for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 0;
    }
    
    .why-choose-us-title {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 0;
        overflow: hidden;
    }
    
    
    .why-choose-cta {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-cta h3 {
        font-size: 1.5rem;
    }
    
    .why-choose-cta p {
        font-size: 1rem;
    }
    
    .why-choose-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .why-choose-us-title {
        font-size: 1.75rem;
    }
    
    .advantages-grid {
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-icon {
        width: 56px;
        height: 56px;
    }
    
    .stats-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.75rem 1rem;
        background: #f8fafc;
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .stat-label {
        font-size: 0.8rem;
        flex: 1;
        text-align: right;
    }
    
    .why-choose-cta {
        padding: 1.5rem 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question[aria-expanded="true"] {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    color: #3b82f6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-content p {
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-cta p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Mobile Styles for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-content {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Contact Information */
.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #93c5fd;
}

.contact-address {
    font-style: normal;
    line-height: 1.5;
    color: #e2e8f0;
}

.opening-hours {
    font-size: 0.875rem;
    line-height: 1.5;
}

.opening-hours div {
    margin-bottom: 0.25rem;
    color: #e2e8f0;
}

.opening-hours .emergency {
    color: #60a5fa;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.section-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-contact-form label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.section-contact-form input,
.section-contact-form select,
.section-contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
}

.section-contact-form input:focus,
.section-contact-form select:focus,
.section-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.section-contact-form select {
    cursor: pointer;
}

.section-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.section-contact-form .form-actions {
    margin-top: 1rem;
}

/* Mobile Styles for Contact */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .section-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.footer-contact-item svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: #60a5fa;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-badge svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.footer-note {
    color: #94a3b8;
}

.footer-separator {
    color: #64748b;
}

/* Mobile Styles for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-badges {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .quality-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Mobile Action Buttons */
.mobile-action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    text-decoration: none;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.25rem;
    cursor: pointer;
}

.mobile-action-btn:hover,
.mobile-action-btn:focus {
    background: #f8fafc;
}

.call-btn {
    color: #10b981;
    border-right: 1px solid #e2e8f0;
}

.call-btn:hover,
.call-btn:focus {
    background: #ecfdf5;
    color: #059669;
}

.message-btn {
    color: #3b82f6;
}

.message-btn:hover,
.message-btn:focus {
    background: #eff6ff;
    color: #2563eb;
}

.mobile-action-btn svg {
    transition: transform 0.3s ease;
}

.mobile-action-btn:active svg {
    transform: scale(0.95);
}

.mobile-action-buttons {
    display: flex;
}

/* Hide mobile buttons on desktop */
@media (min-width: 769px) {
    .mobile-action-buttons {
        display: none !important;
    }
}

/* Adjust body padding for mobile buttons */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .mobile-action-buttons {
        display: flex;
        height: 80px;
    }
    
    .mobile-action-btn {
        padding: 1rem;
        font-size: 0.8rem;
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-action-btn {
        padding: 0.875rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .mobile-action-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-cta,
    .modal,
    .mobile-action-buttons {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
        background: white;
    }
    
    .hero-title {
        color: black;
    }
    
    body {
        padding-bottom: 0;
    }
}