:root {
    --sapphire-deep: #0f172a;
    --emerald-rich: #059669;
    --emerald-light: #10b981;
    --gold-accent: #d97706;
    --ivory-light: #fdfbf7;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --glass-overlay: rgba(255, 255, 255, 0.95);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--ivory-light);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong, p {
    color: inherit;
}

.sapphire-gradient-bg {
    background: linear-gradient(135deg, var(--sapphire-deep) 0%, #1e3a5f 100%);
}

.emerald-gradient-bg {
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
}

.gold-accent-text {
    color: var(--gold-accent);
}

.text-sapphire {
    color: var(--sapphire-deep);
}

.text-emerald {
    color: var(--emerald-rich);
}

.text-light-custom {
    color: var(--text-light);
}

.bg-ivory {
    background-color: var(--ivory-light);
}

.bg-sapphire {
    background-color: var(--sapphire-deep);
}

.bg-emerald {
    background-color: var(--emerald-rich);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--sapphire-deep);
}

.container-custom {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding-large {
    padding: 120px 0;
}

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

.section-padding-small {
    padding: 60px 0;
}

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

.mb-4-custom {
    margin-bottom: 2rem;
}

.mb-5-custom {
    margin-bottom: 3rem;
}

.display-heading-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

.display-heading-medium {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.subtitle-elegant {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.card-service-elegant {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card-service-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-service-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--emerald-rich), var(--emerald-light));
    transition: height 0.4s ease;
}

.card-service-elegant:hover::before {
    height: 100%;
}

.card-service-elegant h3 {
    color: var(--text-dark);
}

.icon-service-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.price-tag-prominent {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-rich);
    margin-top: 20px;
    display: block;
}

.price-note-subtle {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 4px;
}

.hero-section-dynamic {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sapphire-deep) 0%, #1e3a5f 100%);
    overflow: hidden;
}

.hero-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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");
    opacity: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-text-block {
    max-width: 700px;
}

.hero-title-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-image-floating {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-smooth);
}

.hero-image-floating:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image-floating img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--emerald-rich);
    color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge-accent .badge-icon {
    font-size: 24px;
}

.floating-badge-accent .badge-text {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
}

.navigation-bar-clean {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-brand-clean {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sapphire-deep);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-sapphire {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav-links-clean {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link-item {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-rich);
    transition: width 0.3s ease;
}

.nav-link-item:hover::after {
    width: 100%;
}

.nav-link-item:hover {
    color: var(--emerald-rich);
}

.nav-cta-button {
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sapphire-deep);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.mobile-menu li {
    margin-bottom: 8px;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-rich);
}

.mobile-cta {
    display: block;
    text-align: center;
    margin: 0 20px;
}

.feature-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card-quote {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card-quote h4 {
    color: var(--text-dark);
}

.quote-mark-icon {
    font-size: 60px;
    color: var(--emerald-rich);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text-content {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.client-info-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--emerald-rich);
}

.client-details-block h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.client-details-block span {
    color: #64748b;
    font-size: 0.875rem;
}

.star-rating-display {
    color: var(--gold-accent);
    letter-spacing: 2px;
}

.cta-section-compact {
    background: linear-gradient(135deg, var(--sapphire-deep) 0%, #1e3a5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-title-large {
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.footer-site-clean {
    background: var(--sapphire-deep);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title-bold {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

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

.footer-links-list a:hover {
    color: var(--emerald-light);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item span {
    font-size: 1.25rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.legal-links-flex {
    display: flex;
    gap: 24px;
}

.legal-links-flex a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.legal-links-flex a:hover {
    color: white;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    z-index: 9999;
    display: none;
}

.cookie-consent-banner.visible {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--sapphire-deep);
}

.cookie-desc-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons-flex {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.cookie-btn-decline {
    background: transparent;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.team-card-portrait {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.team-card-portrait:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
    height: 300px;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-portrait:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info-block {
    padding: 24px;
    text-align: center;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sapphire-deep);
    margin-bottom: 4px;
}

.team-member-role {
    color: var(--emerald-rich);
    font-weight: 500;
    font-size: 0.95rem;
}

.process-step-item {
    text-align: center;
    position: relative;
}

.step-number-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-rich) 0%, var(--emerald-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-connector-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.contact-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
    background: #e2e8f0;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-group-custom {
    margin-bottom: 24px;
}

.form-label-styled {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--sapphire-deep);
}

.form-input-field {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
}

.form-input-field:focus {
    outline: none;
    border-color: var(--emerald-rich);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-textarea-field {
    min-height: 150px;
    resize: vertical;
}

.inner-page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--sapphire-deep) 0%, #1e3a5f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: pulse 10s infinite linear;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.inner-page-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav-clean {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.breadcrumb-nav-clean a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav-clean a:hover {
    color: white;
}

.breadcrumb-separator {
    opacity: 0.5;
}

.pricing-table-elegant {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.pricing-table-elegant th {
    background: var(--sapphire-deep);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.pricing-table-elegant td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-table-elegant tr:last-child td {
    border-bottom: none;
}

.pricing-table-elegant tr:hover td {
    background: #f8fafc;
}

.service-detail-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.service-detail-image {
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-body {
    padding: 50px;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--sapphire-deep);
}

.service-feature-list {
    list-style: none;
    margin: 30px 0;
}

.service-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-feature-list li::before {
    content: '✓';
    color: var(--emerald-rich);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links-clean {
        display: none;
    }

    .logo-brand-clean {
        font-size: 1.5rem;
    }

    .nav-cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .nav-cta-button.mobile-cta {
        display: block !important;
    }
    
    .hero-section-dynamic {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-image-floating {
        transform: none;
        margin-top: 40px;
    }
    
    .section-padding-large {
        padding: 80px 0;
    }
    
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 20px;
    }
    
    .pricing-table-elegant {
        display: block;
        overflow-x: auto;
    }
    
    .service-detail-body {
        padding: 30px;
    }
    
    .service-detail-image {
        height: 250px;
    }
}