:root {
    --primary-color: #4fba69;
    --secondary-color: #4c565e;
    --accent-color: #92c662;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header & Navigation */
.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.btn-phone {
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-phone:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hero Banner Slider Section */
.hero-banner-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-content .badge {
    background: var(--secondary-color);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Hero Content Text (Left Side) */
.hero-content-text {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px 0;
}

.hero-content-text .badge-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content-text .badge-section i {
    color: var(--primary-color);
    font-size: 18px;
}

.hero-content-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.hero-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content-text p strong {
    color: white;
    font-weight: 700;
}

/* Google Review Badge */
.google-review-badge {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    display: inline-block;
}

.review-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo {
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.review-stars i {
    color: #FFC107;
    font-size: 16px;
}

.review-stars .rating {
    margin-left: 5px;
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.review-title {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.review-verified {
    font-size: 11px;
    color: #666;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary-custom,
.hero-buttons .btn-phone {
    margin: 0;
}

/* Hero Contact Form */
.hero-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: auto;
}

.hero-contact-form h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.hero-contact-form .form-subtitle {
    color: #333;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
}

.hero-contact-form .form-group {
    margin-bottom: 20px;
}

.hero-contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.hero-contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 186, 105, 0.1);
}

.hero-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.hero-contact-form .btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.hero-contact-form .btn-submit:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.4);
}

/* Hero Slider Navigation */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.hero-slider .owl-nav button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    margin: 0 20px;
    font-size: 24px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .owl-nav button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-slider .owl-nav .owl-prev {
    position: absolute;
    left: 30px;
}

.hero-slider .owl-nav .owl-next {
    position: absolute;
    right: 30px;
}

/* Hero Slider Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 0 8px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-slider .owl-dots button.owl-dot.active {
    background: white !important;
    width: 40px;
    border-radius: 8px;
    border-color: white;
}

.hero-slider .owl-dots button.owl-dot:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Section Badge Button */
.section-header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section-header-wrapper::before,
.section-header-wrapper::after {
    content: '';
    flex: 1;
    height: 1px;
    background: transparent;
    position: relative;
}

.section-header-wrapper::before {
    margin-right: 15px;
}

.section-header-wrapper::after {
    margin-left: 15px;
}

.section-badge-btn {
    background: #4c565e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: default;
    transition: all 0.3s;
    font-family: 'Muli', sans-serif;
    position: relative;
    display: inline-block;
}

.section-badge-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 186, 105, 0.3);
}

.section-badge-btn::before,
.section-badge-btn::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #d0d0d0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-badge-btn::before {
    left: -20px;
}

.section-badge-btn::after {
    right: -20px;
}

/* Features Highlight Section */
.features-highlight-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-highlight-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
}

.feature-highlight-item:hover {
    transform: translateY(-5px);
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(79, 186, 105, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
    border: 2px solid rgba(79, 186, 105, 0.2);
}

.feature-highlight-item:hover .feature-icon-circle {
    background: rgba(79, 186, 105, 0.25);
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(79, 186, 105, 0.2);
}

.feature-icon-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.feature-highlight-item:hover .feature-icon-circle i {
    color: var(--accent-color);
    transform: rotate(5deg);
}

.feature-highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    transition: color 0.3s;
}

.feature-highlight-item:hover h4 {
    color: var(--primary-color);
}

/* About Us Section */
.about-us-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.about-images-wrapper {
    position: relative;
    padding: 20px;
}

.main-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    padding: 20px 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(79, 186, 105, 0.3);
    z-index: 2;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
}

.inset-about-image {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    z-index: 3;
}

.inset-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sparkle-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    gap: 5px;
}

.sparkle-decoration i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

.sparkle-decoration i:nth-child(2) {
    animation-delay: 0.3s;
}

.sparkle-decoration i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.about-content {
    padding: 20px 0 20px 40px;
}

.about-tag {
    display: inline-block;
    background: rgba(79, 186, 105, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(79, 186, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(79,186,105,0.05)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-header {
    margin-bottom: 60px;
}

/* Elegant Feature Box */
.feature-box-elegant {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 186, 105, 0.1);
}

.feature-box-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-box-elegant:hover::before {
    transform: scaleX(1);
}

.feature-box-elegant:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(79, 186, 105, 0.2);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 186, 105, 0.1) 0%, rgba(146, 198, 98, 0.05) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s;
}

.feature-box-elegant:hover .feature-icon-bg {
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, rgba(79, 186, 105, 0.2) 0%, rgba(146, 198, 98, 0.1) 100%);
}

.feature-box-elegant i {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.feature-box-elegant:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.feature-box-elegant h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.feature-box-elegant:hover h4 {
    color: var(--primary-color);
}

.feature-box-elegant p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.feature-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(79, 186, 105, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    transition: height 0.4s;
    border-radius: 0 0 20px 20px;
}

.feature-box-elegant:hover .feature-hover-effect {
    height: 100%;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-box-elegant {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.stat-box-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.stat-box-elegant:hover::before {
    transform: scaleX(1);
}

.stat-box-elegant:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-box-elegant:hover .stat-icon-wrapper {
    background: white;
    transform: scale(1.1) rotate(5deg);
    border-color: white;
}

.stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s;
}

.stat-box-elegant:hover .stat-icon-wrapper i {
    color: var(--accent-color);
    transform: scale(1.2);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.stat-box-elegant:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.4s;
}

.stat-box-elegant:hover .stat-decoration {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(79, 186, 105, 0.15);
    border-color: var(--primary-color);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-size: 1.25rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.service-card:hover h4 {
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.service-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s;
    border: none;
    width: 100%;
    margin-top: auto;
}

.service-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 186, 105, 0.3);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(44,90,160,0.1)"/></svg>');
    opacity: 0.5;
}

.badge-custom {
    background: var(--secondary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.process-step-card:hover::before {
    transform: scaleX(1);
}

.process-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.2);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
    transition: all 0.4s;
}

.process-step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.4);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    opacity: 0.3;
    transition: all 0.4s;
}

.process-step-card:hover .step-icon {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.process-step-card:hover .step-content h4 {
    color: var(--primary-color);
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.step-connector {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s;
}

.process-step-card:hover .step-connector {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.2);
}

.process-step-card:last-child .step-connector {
    display: none;
}

/* Responsive adjustments for process section */
@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
    
    .process-step-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .process-step-card {
        padding: 30px 20px;
    }
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--dark-color);
}

/* Owl Carousel Customization */
.testimonials-carousel {
    margin-top: 50px;
}

.testimonials-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.testimonials-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color) !important;
    color: white !important;
    margin: 0 10px;
    font-size: 20px;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--secondary-color) !important;
    transform: scale(1.1);
}

.testimonials-carousel .item {
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('img/home-banner-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Elegant Contact Info */
.contact-info-elegant {
    padding: 40px 0;
}

.contact-info-elegant h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item-elegant {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item-elegant:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(79, 186, 105, 0.3);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-info-item-elegant:hover .contact-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.contact-icon-wrapper i {
    color: white;
    font-size: 1.3rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Elegant Contact Form */
.contact-form-elegant {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 550px;
    margin-left: auto;
}

.contact-form-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.form-subtitle-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.elegant-form {
    margin-top: 30px;
}

.form-row-custom {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-elegant {
    flex: 1;
}

.form-group-half {
    flex: 0 0 calc(50% - 10px);
}

.form-input-elegant {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
    font-family: 'Muli', sans-serif;
}

.form-input-elegant:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 186, 105, 0.1);
}

.form-input-elegant::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Muli', sans-serif;
}

.btn-submit-elegant {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Muli', sans-serif;
    text-decoration: none;
}

.btn-submit-elegant:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 186, 105, 0.3);
}

.btn-submit-elegant i {
    transition: transform 0.3s;
}

.btn-submit-elegant:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-top-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 186, 105, 0.3);
    color: white;
}

.social-icon i {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
    padding-bottom: 20px;
}

.footer-copyright,
.footer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright strong,
.footer-credit strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner-slider {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content-text {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-content-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-content-text p {
        font-size: 1rem;
    }
    
    .google-review-badge {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-phone {
        flex: 1;
        min-width: 150px;
    }
    
    .hero-contact-form {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .hero-contact-form h2 {
        font-size: 1.5rem;
    }
    
    .hero-contact-form .form-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-slider .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 10px;
    }
    
    .hero-slider .owl-nav .owl-prev {
        left: 10px;
    }
    
    .hero-slider .owl-nav .owl-next {
        right: 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-box-elegant {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-box-elegant {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-box-elegant i {
        font-size: 2rem;
    }
    
    .feature-box-elegant h4 {
        font-size: 1.2rem;
    }
    
    .features-highlight-section {
        padding: 25px 0;
    }
    
    .feature-highlight-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .feature-icon-circle i {
        font-size: 2rem;
    }
    
    .feature-highlight-item h4 {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-widget {
        margin-bottom: 35px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-content {
        padding: 30px 0 0 0;
        margin-top: 40px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .inset-about-image {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: 20px;
    }
    
    .experience-badge {
        padding: 15px 20px;
        top: 15px;
        left: 15px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-card-body {
        padding: 20px;
    }
    
    .service-card h4 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-elegant {
        padding: 0 0 40px 0;
        text-align: center;
    }
    
    .contact-info-elegant h3 {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-info-item-elegant {
        padding: 15px;
    }
    
    .contact-form-elegant {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-row-custom {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group-half {
        flex: 1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

