/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #10b981;
    --primary-blue-light: #34d399;
    --primary-blue-dark: #059669;
    --primary-blue-fade: rgba(16, 185, 129, 0.1);
    --accent-green: #10b981;
    --accent-green-light: #34d399;
    --accent-green-dark: #059669;
    --accent-green-fade: rgba(16, 185, 129, 0.1);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --white-fade: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-colored: 0 8px 25px rgba(59, 130, 246, 0.15);
    --shadow-green: 0 8px 25px rgba(16, 185, 129, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green-light) 0%, var(--accent-green) 100%);
    --gradient-fade: linear-gradient(135deg, var(--primary-blue-fade) 0%, var(--accent-green-fade) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    font-size: 16px;
    overflow-x: hidden;
}

/* Premium Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-weight: 700;
    letter-spacing: -0.3px;
}

h3 {
    font-weight: 600;
    letter-spacing: -0.2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white-fade);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-colored);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
    position: relative;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Hero Split */
/* Hero Split */
.hero-split {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 2;
}

.hero-split .container {
    position: relative;
    z-index: 3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-split::before {
    display: none;
}

.hero-content {
    max-width: 600px;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    text-align: left;
}

.hero-subtitle-inline {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.6;
    display: block;
    margin-top: 16px;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 22px 44px;
    font-size: 18px;
}

.btn-primary.full-width {
    width: 100%;
}

/* Contact Bento */
.contact-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-info-card.full-width {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card.full-width:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gradient-fade);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--primary-blue-dark);
}

.contact-item span {
    color: var(--gray-600);
    font-weight: 500;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content p {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 400;
}

/* Bento Grid Services - Responsive Design */
.services-bento {
    padding: 100px 0;
    background: var(--gradient-fade);
    position: relative;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.services-bento h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: none;
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.bento-card {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    height: auto;
    min-height: 200px;
}

.bento-card:nth-child(1) {
    animation-delay: 0.1s;
}

.bento-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bento-card:nth-child(3) {
    animation-delay: 0.3s;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
}

/* Remove old large/medium classes - all cards are equal now */
.bento-card.large,
.bento-card.medium {
    /* Reset any special sizing */
    grid-row: auto;
    grid-column: auto;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
}

.bento-card p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.card-subtitle {
    color: var(--accent-green) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon .iconify {
    width: 64px;
    height: 64px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    font-size: 64px;
}

.bento-card:hover .card-icon .iconify {
    transform: scale(1.1) rotate(5deg);
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.bento-card p {
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Float Buttons */
.float-buttons {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Before & After Gallery */
.before-after-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.before-after-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.before-after-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.before-after-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    text-align: center;
}

.placeholder-image .iconify {
    color: var(--accent-green);
    margin-bottom: 12px;
}

.placeholder-image p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.before-after-item:hover .before-after-image img {
    transform: scale(1.05);
}

.before-after-labels {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
}

.label-before, .label-after {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.label-after {
    background: var(--accent-green);
}

.before-after-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 20px 20px 8px;
}

.before-after-item p {
    color: var(--gray-600);
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.5;
}

.whatsapp-btn, .email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: var(--shadow-lg), 0 8px 25px rgba(37, 211, 102, 0.15);
    animation: pulse-whatsapp 3s ease-in-out infinite;
}

.email-btn {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-lg), var(--shadow-green);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg), 0 8px 25px rgba(37, 211, 102, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl), 0 8px 25px rgba(37, 211, 102, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg), var(--shadow-green), 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl), var(--shadow-green), 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.whatsapp-btn:hover, .email-btn:hover {
    transform: scale(1.15);
    animation: none;
}

.whatsapp-btn:hover {
    box-shadow: var(--shadow-xl), 0 8px 25px rgba(37, 211, 102, 0.25);
}

.email-btn:hover {
    box-shadow: var(--shadow-xl), var(--shadow-green);
}

.email-text {
    background: var(--white);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-buttons:hover .email-text {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-split {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
    }
    
    .hero-bg-image {
        object-position: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 24px;
    }
    
    .bento-card.large {
        grid-row: auto;
    }
    
    .bento-card {
        margin-bottom: 32px;
        min-height: 200px;
        height: auto;
        padding: 32px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    
    .bento-card h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .bento-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .bento-card.medium {
        min-height: 320px;
        padding: 32px 20px 40px 20px;
    }
    
    .card-icon {
        margin-bottom: 20px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-split {
        padding: 80px 0;
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Bento Grid Services */
.services-bento {
    padding: 80px 0;
    background: var(--gray-50);
}

.services-bento h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    height: 500px;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}






/* Advantages Grid */
.advantages-section {
    padding: 80px 0;
    background: var(--white);
}

.advantages-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.advantage-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.advantage-item.guarantee {
    background: linear-gradient(135deg, var(--accent-green-light) 0%, var(--accent-green) 100%);
    color: var(--white);
    grid-column: 1 / -1;
    text-align: center;
}

.advantage-item.guarantee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.advantage-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.advantage-item.guarantee h3 {
    color: var(--white);
    font-size: 20px;
}

/* Full Width Banner */
.offers-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
}

.banner-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.banner-cta {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Zone Badges */
.zones-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.zones-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.zones-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.zone-badge {
    background: var(--white);
    color: var(--gray-700);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.zone-badge:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-card cite {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 14px;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: var(--gray-50);
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content-center p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* About Bento */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

.about-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-main p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-visual {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.visual-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-large {
    font-size: 64px;
    margin-bottom: 16px;
}

.visual-element h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.visual-element p {
    color: var(--gray-600);
    font-size: 16px;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background: var(--gray-50);
}

.services-bento-detailed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.service-card-large {
    grid-row: 1 / 3;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-medium,
.service-card-wide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-card-medium:hover,
.service-card-wide:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-card-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 24px;
}

.service-icon-medium {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card-large h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card-medium h2,
.service-card-wide h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-large p,
.service-card-wide p {
    color: var(--gray-600);
    font-size: 16px;
}

/* Equipment Section */
.equipment-section {
    padding: 400px 0;
    background: var(--white);
    min-height: 900px;
}

.equipment-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.equipment-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.equipment-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.equipment-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.equipment-icon {
    font-size: 32px;
}

.equipment-visual span {
    font-weight: 600;
    color: var(--gray-700);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item span {
    color: var(--gray-600);
}

.contact-actions {
    display: flex;
    gap: 12px;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 16px;
    font-weight: 400;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-item {
    font-size: 14px;
}

.footer-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 600;
}

.footer-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
}

.footer-item a:hover {
    color: var(--white);
}

.footer-item span {
    color: var(--gray-400);
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
    line-height: 1.6;
}

/* Email Float - Duplicate removed, using main definition */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 40;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .cta-btn {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero-split {
        padding: 60px 0 40px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 16px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .cleaning-icon {
        font-size: 64px;
    }
    
    /* Intro Section Mobile */
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    /* Bento Grid Mobile - Responsive și uniform */
    .services-bento {
        padding: 80px 0 600px 0;
        min-height: 2000px;
    }
    
    .services-bento h2 {
        font-size: 32px;
        margin-bottom: 40px;
        font-family: 'Nunito', sans-serif;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    
    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
        width: 100%;
        margin-bottom: 250px;
    }
    
    .bento-card {
        width: 100%;
        padding: 40px 24px 50px 24px;
        text-align: center;
        background: var(--white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-200);
        position: relative;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
        opacity: 1;
        transform: none;
        animation: none;
        min-height: 300px;
        height: auto;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    
    .bento-card:hover::before {
        transform: scaleX(1);
    }
    
    .bento-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    .card-icon {
        margin: 0 auto 16px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .card-icon .iconify {
        width: 48px !important;
        height: 48px !important;
        color: var(--accent-green);
        transition: all 0.3s ease;
        font-size: 48px !important;
    }
    
    .bento-card h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
        font-family: 'Nunito', sans-serif;
        font-weight: 700;
        color: var(--gray-900);
        text-align: center;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .bento-card p {
        font-size: 14px;
        line-height: 1.4;
        color: var(--gray-600);
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        text-align: center;
        word-break: normal;
        overflow-wrap: break-word;
        margin: 0 0 8px 0;
    }
    
    .card-subtitle {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: var(--accent-green) !important;
        margin-bottom: 8px !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Card special pentru evenimente cu mai mult text */
    .bento-card:nth-child(3) {
        min-height: 550px;
        padding-bottom: 150px;
        margin-bottom: 200px;
    }
    
    /* Ultimul card să aibă și mai mult spațiu jos */
    .bento-card:nth-child(4) {
        margin-bottom: 300px;
    }
    

    
    /* Advantages Mobile */
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .advantage-item {
        padding: 24px 20px;
    }
    
    .advantage-item.guarantee {
        grid-column: auto;
        padding: 32px 24px;
    }
    
    .advantage-icon {
        width: 56px;
        height: 56px;
    }
    
    .advantage-item h3 {
        font-size: 16px;
    }
    
    .advantage-item.guarantee h3 {
        font-size: 20px;
    }
    
    /* Banner Mobile */
    .offers-banner {
        padding: 60px 0;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .banner-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Zones Mobile */
    .zones-section {
        padding: 60px 0;
    }
    
    .zones-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .zones-badges {
        gap: 12px;
    }
    
    .zone-badge {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 32px;
        color: var(--white);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 18px 32px;
    }
    
    .cta-actions .btn-primary {
        background: var(--white);
        color: var(--accent-green);
        border: 2px solid var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cta-actions .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }
    
    /* About Page Mobile */
    .about-bento {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-main p {
        font-size: 16px;
    }
    
    .about-visual {
        padding: 40px 28px;
    }
    
    .icon-large {
        font-size: 64px;
    }
    
    .icon-large.iconify {
        width: 64px !important;
        height: 64px !important;
    }
    
    .visual-element h3 {
        font-size: 20px;
    }
    
    /* Services Page Mobile - FIX SUPRAPUNERE */
    .services-bento-detailed {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .service-card-large,
    .service-card-medium,
    .service-card-wide {
        grid-row: auto !important;
        grid-column: auto !important;
        text-align: center;
    }
    
    .service-card-large {
        padding: 28px 20px;
    }
    
    .service-card-large h2 {
        font-size: 18px;
        line-height: 1.3;
        word-wrap: normal;
        overflow-wrap: normal;
        letter-spacing: -0.5px !important;
        padding: 0 12px;
        word-break: normal;
        hyphens: none;
        max-width: 100%;
        min-width: 0;
    }
    
    .service-card-large p {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 12px;
        word-break: normal;
    }
    
    .service-card-medium {
        padding: 24px 16px;
    }
    
    .service-card-medium h2 {
        font-size: 15px;
        line-height: 1.3;
        word-wrap: normal;
        overflow-wrap: normal;
        letter-spacing: -0.5px !important;
        padding: 0 12px;
        word-break: normal;
        hyphens: none;
        max-width: 100%;
        min-width: 0;
    }
    
    .service-card-wide {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 16px;
    }
    
    .service-card-wide h2 {
        font-size: 15px;
        line-height: 1.3;
        word-wrap: normal;
        letter-spacing: -0.5px !important;
        padding: 0 12px;
        word-break: normal;
        hyphens: none;
        max-width: 100%;
        min-width: 0;
    }
    
    .service-card-wide p {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 12px;
        word-break: normal;
    }
    
    .service-icon-large {
        font-size: 48px;
        margin-bottom: 14px;
    }
    
    .service-icon-large.iconify {
        width: 48px !important;
        height: 48px !important;
    }
    
    .service-icon-medium {
        font-size: 40px;
        margin-bottom: 14px;
    }
    
    .service-icon-medium.iconify {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Equipment Mobile */
    .equipment-section {
        padding: 250px 0;
        min-height: 600px;
    }
    
    .equipment-content h2 {
        font-size: 32px;
    }
    
    .equipment-content p {
        font-size: 16px;
    }
    
    .equipment-visual {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    
    /* Contact Page Mobile */
    .contact-bento {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-actions .btn-primary,
    .contact-actions .btn-secondary {
        width: 100%;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 60px 0;
    }
    
    .hero-content-center h1 {
        font-size: 28px;
    }
    
    .hero-content-center p {
        font-size: 16px;
    }
    
    /* Map Mobile */
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    
    .footer-brand {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand h3 {
        font-size: 24px;
        color: var(--white);
        margin-bottom: 8px;
    }
    
    .footer-brand p {
        font-size: 14px;
        color: var(--gray-400);
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-item {
        padding: 0;
        text-align: left;
    }
    
    .footer-item strong {
        font-size: 13px;
        margin-bottom: 8px;
        color: var(--gray-300);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .footer-item a,
    .footer-item span {
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .footer-item a {
        color: var(--white);
    }
    
    .footer-item span {
        color: var(--gray-300);
    }
    
    /* Float Buttons Mobile */
    .float-buttons {
        bottom: 20px;
        right: 20px;
        z-index: 40;
    }
    
    .whatsapp-btn, .email-btn {
        width: 56px;
        height: 56px;
    }
    
    /* Fix overlap with content on mobile */
    body {
        padding-bottom: 120px;
    }
    
    .email-btn {
        width: 56px;
        height: 56px;
    }
    
    .email-text {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* General Mobile Adjustments */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 32px;
    }
    
    /* Fix text breaking on mobile - headings should NOT hyphenate */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none !important;
        letter-spacing: 0px !important;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Touch-friendly buttons */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        touch-action: manipulation;
    }
}

/* Advantages Grid */
.advantages-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.advantages-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.advantage-item {
    background: var(--gradient-fade);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
    background: var(--white);
}

.advantage-item.guarantee {
    background: var(--gradient-accent);
    color: var(--white);
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.advantage-item.guarantee::before {
    background: rgba(255, 255, 255, 0.3);
}

.advantage-item.guarantee:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-green);
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-icon .iconify {
    color: var(--white);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-item.guarantee .advantage-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
}

.advantage-item.guarantee h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

/* Full Width Banner */
.offers-banner {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.offers-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 15s ease-in-out infinite;
}

.banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.banner-cta {
    background: var(--white);
    color: var(--primary-blue);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.banner-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Zone Badges */
.zones-section {
    padding: 100px 0;
    background: var(--gradient-fade);
    position: relative;
}

.zones-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zones-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.zone-badge {
    background: var(--white);
    color: var(--gray-700);
    padding: 16px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.zone-badge:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
    border-color: transparent;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    touch-action: pan-y;
    user-select: none;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    cursor: grab;
    will-change: transform;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    background: var(--gradient-fade);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex: 0 0 calc(50% - 20px);
    min-height: 250px;
    height: auto;
    pointer-events: none;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-green);
    background: var(--white);
}

.quote-icon {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-card cite {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 14px;
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    z-index: 10;
    pointer-events: auto;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg), var(--shadow-colored);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.slider-dot:hover {
    background: var(--primary-blue-light);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0 140px 0;
    }
    
    .testimonials-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .testimonials-slider {
        margin: 0 10px;
        padding: 0 60px;
        touch-action: pan-y;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        padding: 32px 20px 40px 20px;
        min-height: 300px;
        height: auto;
    }
    
    .testimonial-card p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        z-index: 20;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .slider-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    animation: float 25s ease-in-out infinite reverse;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
}

.cta-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.cta-actions .btn-primary {
    background: var(--white);
    color: var(--accent-green);
    border: 2px solid var(--white);
}

.cta-actions .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px) scale(1.02);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--accent-green);
}

/* Page Hero */
.page-hero {
    padding: 100px 0;
    background: var(--gradient-fade);
    position: relative;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-center h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-center p {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

/* About Bento */
.about-content {
    padding: 100px 0;
    background: var(--white);
}

.about-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-main {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.about-visual {
    background: var(--gradient-fade);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visual:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
    background: var(--white);
}

.visual-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    display: inline-block;
}

.about-visual:hover .icon-large {
    transform: scale(1.1) rotate(5deg);
}

.visual-element h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.visual-element p {
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 500;
}

/* Services Detailed */
.services-detailed {
    padding: 100px 0;
    background: var(--gradient-fade);
}

.services-bento-detailed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.service-card-large {
    grid-row: 1 / 3;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-large:hover::before {
    transform: scaleX(1);
}

.service-card-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
}

.service-card-medium,
.service-card-wide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-medium::before,
.service-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-medium:hover::before,
.service-card-wide:hover::before {
    transform: scaleX(1);
}

.service-card-medium:hover,
.service-card-wide:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-green);
}

.service-card-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 28px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-icon-medium {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--accent-green);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card-large:hover .service-icon-large,
.service-card-medium:hover .service-icon-medium,
.service-card-wide:hover .service-icon-medium {
    transform: scale(1.1) rotate(5deg);
}

.service-card-large h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-card-medium h2,
.service-card-wide h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-large p,
.service-card-wide p {
    color: var(--gray-600);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    padding: 450px 0;
    background: var(--white);
    min-height: 1000px;
}

.equipment-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.equipment-content p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.equipment-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--gradient-fade);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-visual:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.equipment-icon {
    font-size: 40px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    display: inline-block;
}

.equipment-visual:hover .equipment-icon {
    transform: scale(1.1) rotate(5deg);
}

.equipment-visual span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 18px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--gradient-fade);
}

.map-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
}

/* Contact Section Centered */
.contact-section-centered {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 60px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card-modern {
    background: var(--gradient-fade);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-modern:nth-child(1) { animation-delay: 0.3s; animation-fill-mode: both; }
.contact-card-modern:nth-child(2) { animation-delay: 0.4s; animation-fill-mode: both; }
.contact-card-modern:nth-child(3) { animation-delay: 0.5s; animation-fill-mode: both; }
.contact-card-modern:nth-child(4) { animation-delay: 0.6s; animation-fill-mode: both; }

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
    background: var(--white);
}

.contact-icon-modern {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-modern:hover .contact-icon-modern {
    transform: scale(1.15) rotate(10deg);
}

.contact-card-modern strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-modern a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
}

.contact-card-modern a:hover {
    color: var(--primary-blue-dark);
}

.contact-card-modern span {
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-actions-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card-modern {
        padding: 28px 20px;
    }
    
    .contact-card-modern a {
        font-size: 14px;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .contact-card-modern span {
        font-size: 14px;
    }
    
    .contact-actions-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-actions-modern .btn-primary,
    .contact-actions-modern .btn-secondary {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-wrapper h2 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Enhanced Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* Better touch interactions */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a, button, .btn-primary, .btn-secondary, .zone-badge, .email-btn {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
    touch-action: manipulation;
}

/* Prevent text selection on interactive elements */
.btn-primary, .btn-secondary, .cta-btn, .zone-badge, .mobile-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Performance Optimizations */
@media (prefers-reduced-motion: no-preference) {
    .bento-card,
    .advantage-item,
    .testimonial-card,
    .contact-card-modern,
    .service-card-large,
    .service-card-medium,
    .service-card-wide {
        will-change: transform, opacity;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Smooth momentum scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Optimize font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Better tap targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent zoom on double tap */
    * {
        touch-action: manipulation;
    }
    
    /* Optimize animations for mobile */
    .bento-card,
    .advantage-item,
    .testimonial-card,
    .zone-badge {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
}