:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #1A1A2E;
    --dark: #16213E;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.availability::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.phone-top:hover {
    color: var(--white);
}

.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    font-size: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 12px;
    color: var(--gray);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 24px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 50px;
}

.services-preview {
    padding: 80px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
}

.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--gray);
}

.contact-preview {
    padding: 80px 0;
    background: var(--light);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-list li svg {
    color: var(--primary);
}

.contact-list a {
    color: var(--primary);
    font-weight: 600;
}

.contact-action {
    text-align: center;
}

.big-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 50px;
    border-radius: 15px;
    font-size: 28px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.big-phone-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.contact-note {
    margin-top: 15px;
    color: var(--gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-phone {
    display: inline-block;
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
}

.mt-2 {
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-phone:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

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

.mt-4 {
    margin-top: 40px;
}

.about-section {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px;
    border-radius: 20px;
    text-align: center;
}

.about-image-placeholder span {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.about-image-placeholder p {
    font-size: 18px;
    opacity: 0.9;
}

.values-section {
    padding: 80px 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 0;
}

.team-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-cta {
    padding: 80px 0;
    background: var(--light);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.services-section {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    align-items: start;
}

.service-detail.reverse {
    background: var(--white);
    border: 1px solid #eee;
}

.service-detail-icon {
    font-size: 80px;
    text-align: center;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
}

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

.pricing-info {
    padding: 80px 0;
    background: var(--light);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-feature {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pricing-feature p {
    color: var(--gray);
}

.coverage-area {
    padding: 80px 0;
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coverage-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.coverage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.coverage-icon {
    font-size: 24px;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
}

.author-location {
    font-size: 14px;
    color: var(--gray);
}

.clients-section {
    padding: 80px 0;
    background: var(--light);
}

.clients-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-type {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.client-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.client-type h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.client-type p {
    color: var(--gray);
}

.trust-section {
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--gray);
}

.cta-reference {
    padding: 80px 0;
    background: var(--light);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info-card > p,
.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.work-hours {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-text .contact-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 5px;
}

.emergency-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.emergency-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.emergency-box p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: scale(1.05);
}

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

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

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

.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.faq-item p {
    color: var(--gray);
}

@media (max-width: 1024px) {
    .services-grid,
    .why-grid,
    .values-grid,
    .stats-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .clients-info,
    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid,
    .why-grid,
    .values-grid,
    .stats-grid,
    .trust-grid,
    .testimonials-grid,
    .clients-info,
    .pricing-features,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content,
    .contact-box,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .coverage-list {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .big-phone-btn {
        font-size: 22px;
        padding: 20px 30px;
    }

    .floating-phone span {
        display: none;
    }

    .floating-phone {
        padding: 15px;
        border-radius: 50%;
    }

    .floating-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-social {
        margin-top: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link.viber {
    background: #7360f2;
    color: white;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link:hover {
    transform: scale(1.1);
}

.logo-icon-svg {
    color: var(--primary);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

.service-detail-icon svg {
    color: var(--primary);
}

.service-icon svg {
    color: var(--primary);
}

.pricing-icon svg {
    color: var(--primary);
}

.coverage-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail.highlight {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8de 100%);
    border: 2px solid var(--primary);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-social {
    display: flex;
    gap: 10px;
}

.hero-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-social-btn.viber {
    background: #7360f2;
    color: white;
}

.hero-social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.hero-social-btn:hover {
    transform: scale(1.1);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.viber-btn {
    background: #7360f2;
    color: white;
}

.cta-button.whatsapp-btn {
    background: #25D366;
    color: white;
}

.cta-button.viber-btn:hover,
.cta-button.whatsapp-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn.viber {
    background: #7360f2;
    color: white;
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.company-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info p {
    font-size: 14px;
    margin-bottom: 5px;
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn.phone-btn {
    background: var(--primary);
}

.floating-btn.viber-btn {
    background: #7360f2;
}

.floating-btn.whatsapp-btn {
    background: #25D366;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.contact-apps {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.app-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-link.viber {
    background: #7360f2;
    color: white;
}

.app-link.whatsapp {
    background: #25D366;
    color: white;
}

.app-link:hover {
    transform: translateY(-2px);
}

.contact-social-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.social-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-contact-btn.viber {
    background: #7360f2;
    color: white;
}

.social-contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-contact-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}
