* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

/* Убираем все градиенты для заголовков по умолчанию */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

.hero-title {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #00f5ff 0%, #ff006e 50%, #ffbe0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(35deg);
    transition: all 0.6s;
    opacity: 0;
}

.profile-section:hover::before {
    opacity: 1;
    transform: rotate(35deg) translate(50%, 50%);
}

.photo-container {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3) 0%, rgba(255, 0, 110, 0.3) 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder {
    font-size: 4em;
    color: rgba(255, 255, 255, 0.7);
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.gradient-text-h2 {
    background: linear-gradient(135deg, #00f5ff 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-list {
    list-style: none;
    margin-bottom: 30px;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #00f5ff;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    background: rgba(0, 245, 255, 0.1);
}

.expertise-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #ffbe0b;
}

/* Projects Section */
.projects-section {
    margin-bottom: 80px;
}

/* Certificates Section */
.certificates-section {
    margin-bottom: 80px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.certificate-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.certificate-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.certificate-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(35deg);
    transition: all 0.6s;
    opacity: 0;
}

.certificate-item:hover::before {
    opacity: 1;
    transform: rotate(35deg) translate(50%, 50%);
}

.certificate-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.certificate-item:hover .certificate-thumb {
    transform: scale(1.05);
}

.certificate-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.3;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close:hover {
    color: #00f5ff;
}

#modalCaption {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
}

.gradient-text-section {
    background: linear-gradient(135deg, #ffbe0b 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.project-icon {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-logo {
    transform: scale(1.1);
}

.project-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.project-link:hover::before {
    left: 100%;
}

.project-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 245, 255, 0.3);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.gradient-text-contact {
    background: linear-gradient(135deg, #00f5ff 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.3em;
    margin-right: 10px;
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Background decorative elements */
.bg-decoration {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
    filter: blur(40px);
    z-index: -1;
}

.bg-decoration:nth-child(1) {
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.bg-decoration:nth-child(2) {
    top: 60%;
    right: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-decoration:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation: float 12s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-container {
        width: 350px;
        height: 350px;
    }

    .photo-placeholder {
        font-size: 3em;
    }

    .about-section h2 {
        font-size: 2em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .certificate-thumb {
        height: 150px;
    }

    .contact-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .contact-link {
        min-width: 200px;
        justify-content: center;
    }
}

/* Еще больше для очень маленьких экранов */
@media (max-width: 480px) {
    .photo-container {
        width: 320px;
        height: 320px;
    }

    .profile-section {
        padding: 20px;
    }

    .hero-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .about-section h2 {
        font-size: 1.6em;
    }

    .contact-links {
        gap: 15px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-thumb {
        height: 120px;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close {
        top: 5px;
        right: 15px;
        font-size: 28px;
    }

    .contact-link {
        min-width: 150px;
        padding: 12px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff006e, #ffbe0b);
}

/* Transformation Section - полностью переделанный блок */

.transformation-section {
    margin-bottom: 80px;
}

.transformation-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.transformation-item {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.transformation-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 0, 110, 0.4);
    border-color: rgba(255, 0, 110, 0.6);
}

.transformation-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: rotate(35deg);
    transition: all 0.6s;
    opacity: 0;
    z-index: 1;
}

.transformation-item:hover::before {
    opacity: 1;
    transform: rotate(35deg) translate(50%, 50%);
}

.transformation-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(255, 0, 110, 0.05));
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 2;
}

.transformation-item:hover .transformation-photo {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.1);
}

.transformation-text {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08) 0%, rgba(255, 0, 110, 0.08) 100%);
    position: relative;
    z-index: 2;
}

.transformation-text h3 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00f5ff 0%, #ff006e 50%, #ffbe0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.transformation-text p {
    font-size: 1.2em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.click-hint {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 500;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.transformation-item:hover .click-hint {
    background: rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Альтернативный вариант с двумя колонками для больших экранов */
@media (min-width: 1024px) {
    .transformation-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
        align-items: center;
    }
    
    .transformation-photo {
        border-radius: 24px 0 0 24px;
        max-height: 500px;
    }
    
    .transformation-text {
        padding: 50px 40px;
        text-align: left;
        background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
        border-radius: 0 24px 24px 0;
    }
    
    .transformation-text h3 {
        font-size: 2.5em;
    }
    
    .transformation-text p {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .transformation-text {
        padding: 30px 25px 25px;
    }
    
    .transformation-text h3 {
        font-size: 1.8em;
    }
    
    .transformation-text p {
        font-size: 1.1em;
    }
    
    .click-hint {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .transformation-text {
        padding: 25px 20px 20px;
    }
    
    .transformation-text h3 {
        font-size: 1.6em;
    }
    
    .transformation-text p {
        font-size: 1em;
    }
    
    .click-hint {
        font-size: 0.85em;
        padding: 8px 16px;
    }
}

/* Service Offer Section - обновленная структура */

.service-offer-section {
    margin-bottom: 80px;
}

.service-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.4);
}

.service-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(35deg);
    transition: all 0.6s;
    opacity: 0;
}

.service-content:hover::before {
    opacity: 1;
    transform: rotate(35deg) translate(50%, 50%);
}

/* Заголовок во всю ширину */
.service-header-full {
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08) 0%, rgba(255, 0, 110, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-title {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00f5ff 0%, #ff006e 50%, #ffbe0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 500;
}

/* Основной контент с обтеканием */
.service-main-content {
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
}

.service-image-float {
    float: left;
    width: 350px;
    margin: 0 30px 20px 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border-radius: 16px;
    padding: 15px;
    position: relative;
    z-index: 2;
}

.service-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-content:hover .service-photo {
    filter: brightness(1.1);
}

.service-photo-placeholder {
    font-size: 4em;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px;
}

.service-details-flow {
    overflow: hidden;
}

.service-block {
    margin-bottom: 25px;
}

.service-block-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #00f5ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-block-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    margin-right: 10px;
    border-radius: 2px;
}

.service-list {
    list-style: none;
    margin-bottom: 15px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.95em;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-weight: bold;
    font-size: 1.1em;
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.step-number {
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9em;
    min-width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
    line-height: 1.4;
}

/* Секция цены во всю ширину */
.service-price-section {
    clear: both;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08) 0%, rgba(255, 0, 110, 0.08) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: center;
}

.service-price-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.price-value {
    font-size: 2em;
    font-weight: 800;
    background: linear-gradient(135deg, #ffbe0b 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-conditions {
    margin-bottom: 20px;
}

.conditions-list {
    list-style: none;
    margin-bottom: 20px;
}

.conditions-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.4;
}

.conditions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffbe0b;
    font-weight: bold;
}

.service-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #00f5ff;
    text-align: center;
}

.service-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6;
    font-style: italic;
}

.service-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-order-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
    min-width: 220px;
    max-width: 330px;
}

.service-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-order-btn:hover::before {
    left: 100%;
}

.service-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.4);
}

.service-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 250px;
}

.service-contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.service-contact-btn .contact-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-image-float {
        width: 300px;
        margin-right: 25px;
    }
    
    .service-title {
        font-size: 2em;
    }
}

@media (max-width: 1024px) {
    .service-image-float {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .service-main-content {
        padding: 25px 30px;
    }
    
    .service-price-section {
        padding: 25px 30px;
    }
    
    .service-price-block {
        max-width: 500px;
    }
    
    .service-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .service-header-full {
        padding: 30px 25px 15px;
    }
    
    .service-main-content {
        padding: 20px 25px;
    }
    
    .service-price-section {
        padding: 20px 25px;
    }
    
    .service-price-block {
        padding: 25px;
        max-width: none;
    }
    
    .service-title {
        font-size: 1.5em;
    }
    
    .service-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-value {
        font-size: 1.8em;
    }
    
    .service-order-btn {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .service-header-full {
        padding: 25px 20px 15px;
    }
    
    .service-main-content {
        padding: 20px 20px;
    }
    
    .service-price-section {
        padding: 20px 20px;
    }
    
    .service-price-block {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.3em;
    }
    
    .service-image-float {
        padding: 10px;
    }
    
    .price-value {
        font-size: 1.6em;
    }
    
    .service-order-btn {
        padding: 15px 25px;
    }
}