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

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --secondary: #1a1a1a;
    --secondary-light: #2d2d2d;
    --accent: #00b8d4;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --spacing-unit: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing-unit) * 2) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing-unit) * 4);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--primary);
}

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

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: calc(var(--spacing-unit) * 2) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--spacing-unit) * 1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0066cc 0%, #00b8d4 100%);
    overflow: hidden;
    padding-top: calc(var(--spacing-unit) * 10);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/221012/pexels-photo-221012.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 184, 212, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: var(--text-white);
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 5);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 1);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary);
}

.btn-large {
    padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 5);
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.hero-features {
    display: flex;
    gap: calc(var(--spacing-unit) * 4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature svg {
    flex-shrink: 0;
}

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

.image-gallery {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: calc(var(--spacing-unit) * 3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.services {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto calc(var(--spacing-unit) * 8);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.service-card {
    background-color: var(--bg-white);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--text-white);
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-features li {
    padding: calc(var(--spacing-unit) * 1) 0;
    color: var(--text-light);
    position: relative;
    padding-left: calc(var(--spacing-unit) * 3);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: calc(var(--spacing-unit) * 2);
    transition: all 0.3s ease;
    font-size: 16px;
}

.service-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.why-choose-us {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--bg-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 4);
    right: calc(var(--spacing-unit) * 4);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 16px;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.feature-item {
    display: flex;
    gap: calc(var(--spacing-unit) * 2.5);
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.stats-inline {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
    padding-top: calc(var(--spacing-unit) * 4);
    border-top: 2px solid var(--border);
}

.stat-inline {
    flex: 1;
}

.stat-number-inline {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.stat-label-inline {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.stat-card {
    background-color: var(--bg-white);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.testimonials {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.testimonial-rating {
    display: flex;
    gap: calc(var(--spacing-unit) * 0.5);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: #fbbf24;
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4) 0;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-style: italic;
    font-size: 16px;
    padding: 0 calc(var(--spacing-unit) * 4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    padding: 0 calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 5);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: calc(var(--spacing-unit) * 8);
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: calc(var(--spacing-unit) * 5);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
}

.contact-detail {
    display: flex;
    gap: calc(var(--spacing-unit) * 2.5);
    align-items: flex-start;
}

.contact-detail svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: calc(var(--spacing-unit) * 1.5);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-message {
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 4);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-white);
}

.footer-logo svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding-top: calc(var(--spacing-unit) * 4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-white);
}

.service-hero {
    padding: calc(var(--spacing-unit) * 20) 0 calc(var(--spacing-unit) * 10);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-white);
}

.service-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 20px;
    margin-bottom: calc(var(--spacing-unit) * 5);
    opacity: 0.95;
}

.service-hero-cta {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
    flex-wrap: wrap;
}

.service-content {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--bg-white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
}

.service-content-single {
    max-width: 900px;
    margin: 0 auto;
}

.service-content-single h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 6);
}

.service-content-single h2:first-child {
    margin-top: 0;
}

.service-content-single h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: calc(var(--spacing-unit) * 5);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-content-single p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-main h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-main h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-list {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.service-list li {
    padding: calc(var(--spacing-unit) * 1.5) 0;
    padding-left: calc(var(--spacing-unit) * 4);
    color: var(--text-light);
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.service-process {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.service-process li {
    counter-increment: step-counter;
    padding: calc(var(--spacing-unit) * 2) 0 calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 6);
    color: var(--text-light);
    position: relative;
    line-height: 1.7;
}

.service-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: calc(var(--spacing-unit) * 2);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 4);
}

.benefit-item {
    padding: calc(var(--spacing-unit) * 4);
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
}

.service-sidebar {
    position: sticky;
    top: calc(var(--spacing-unit) * 10);
    height: fit-content;
}

.sidebar-card {
    background-color: var(--bg-light);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 12px;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.sidebar-card .btn {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.sidebar-card .btn:last-child {
    margin-bottom: 0;
}

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

.sidebar-links li {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.sidebar-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--primary);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: calc(var(--spacing-unit) * 3);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }

    .why-choose-image {
        order: -1;
    }

    .stats-inline {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 3);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

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

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-main h2 {
        font-size: 26px;
    }

    .service-main h3 {
        font-size: 20px;
    }
}
