

@import url('https://fonts.googleapis.com/css2?family=Lemonada:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Lemonada', 'Open Sans', Arial, sans-serif;
    background: #e0e0e0;
    color: #222;
    direction: rtl;
}

[dir="ltr"] body {
    font-family: 'Lemonada', Arial, sans-serif;
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-family: 'Lemonada', 'Open Sans', serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Floating WhatsApp and Call Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-actions.left {
    right: auto;
    left: 20px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    opacity: 1;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.call {
    background: #0d6efd;
}

.floating-btn i {
    font-size: 1.5rem;
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    .floating-actions.left {
        left: 16px;
        right: auto;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
    }
}

/* Uniform square thumbnails for portfolio images */
.portfolio-grid img {
    width: 100%;
    aspect-ratio: 1 / 1; /* make width and height equal */
    object-fit: cover;   /* crop to fill the square neatly */
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title.text-white {
    color: #fff;
}

.orange-underline {
    width: 70px;
    height: 5px;
    background: #e35700;
    border-radius: 3px;
    margin-top: 0.5rem;
}

.section-title.text-white .orange-underline,
.orange-underline.bg-white {
    background: #fff;
}

.about-text,
.card-text,
.lead,
p,
li {
    font-size: 1.15rem;
    line-height: 1.8;
    font-family: inherit;
}

.navbar {
    background: #fff !important;
    border-bottom: 2px solid #f28c28;
}

.navbar-brand {
    color: #f28c28 !important;
    font-family: 'Alexandria', 'Open Sans', serif;
    font-size: 2rem;
}

.nav-link {
    font-size: 1.1rem;
    color: #222 !important;
    margin: 0 8px;
    transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
    color: #f28c28 !important;
}

#lang-toggle {
    font-family: inherit;
    border-color: #f28c28;
    color: #f28c28;
    transition: background 0.2s, color 0.2s;
}

#lang-toggle:hover {
    background: #f28c28;
    color: #fff;
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(40, 40, 40, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: #f28c28;
    border: 2px solid #f28c28;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #222;
    border-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: buttonPulse 0.6s ease-in-out;
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: buttonPulse 0.6s ease-in-out;
}


/* Button animations */

.hero-buttons .btn {
    animation: slideInUp 0.8s ease-out 0.8s both;
}

@keyframes buttonPulse {
    0% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
}


/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}


/* Enhanced Carousel Indicators */

.carousel-indicators {
    bottom: 2.5rem;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    animation: indicatorContainerFadeIn 0.6s ease-out;
}

.carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: indicatorFadeIn 0.8s ease-out;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.4) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    animation: indicatorHover 0.3s ease-out;
}

.carousel-indicators button:hover::before {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 1);
}

.carousel-indicators button.active {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.6) rotate(0deg);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
    animation: indicatorActive 2s infinite;
}

.carousel-indicators button.active::before {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 1);
}

.carousel-indicators button.active::after {
    width: 6px;
    height: 6px;
    opacity: 1;
    animation: indicatorInnerPulse 1.5s infinite;
}


/* Enhanced Indicator Animations */

@keyframes indicatorContainerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes indicatorFadeIn {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes indicatorHover {
    0% {
        transform: scale(1.4) rotate(5deg);
    }
    50% {
        transform: scale(1.5) rotate(2deg);
    }
    100% {
        transform: scale(1.4) rotate(5deg);
    }
}

@keyframes indicatorActive {
    0% {
        box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
        transform: scale(1.6) rotate(0deg);
    }
    50% {
        box-shadow: 0 12px 35px rgba(242, 140, 40, 0.7);
        transform: scale(1.7) rotate(2deg);
    }
    100% {
        box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
        transform: scale(1.6) rotate(0deg);
    }
}

@keyframes indicatorInnerPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes indicatorPulse {
    0% {
        box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(242, 140, 40, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
    }
}

@keyframes indicatorGlow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(242, 140, 40, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(242, 140, 40, 0.6);
    }
}

.carousel-indicators button {
    animation: indicatorFadeIn 0.6s ease-out;
}


/* Enhanced hover effects */

.carousel-indicators button:hover {
    animation: indicatorGlow 1.5s ease-in-out infinite;
}


/* Staggered animation for indicators */

.carousel-indicators button:nth-child(1) {
    animation-delay: 0.1s;
}

.carousel-indicators button:nth-child(2) {
    animation-delay: 0.2s;
}

.carousel-indicators button:nth-child(3) {
    animation-delay: 0.3s;
}

.carousel-indicators button:nth-child(4) {
    animation-delay: 0.4s;
}

.carousel-indicators button:nth-child(5) {
    animation-delay: 0.5s;
}


/* RTL Support for carousel indicators */

[dir="rtl"] .carousel-indicators {
    flex-direction: row-reverse;
}


/* Accessibility improvements */

.carousel-indicators button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}


/* High contrast mode support */

@media (prefers-contrast: high) {
    .carousel-indicators {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    .carousel-indicators button {
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    .carousel-indicators button.active {
        background: #ffffff;
        border-color: #ffffff;
    }
}


/* Reduced motion support */

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators button {
        animation: none;
        transition: all 0.2s ease;
    }
    .carousel-indicators button:hover {
        animation: none;
    }
    .carousel-indicators button.active {
        animation: none;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 140, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(242, 140, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 140, 40, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Carousel Animation Effects */


/* Fade Effect */

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}


/* Slide Effect */

.carousel-slide .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.carousel-slide .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%);
}

.carousel-slide .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%);
}

.carousel-slide .carousel-item-next.carousel-item-start {
    transform: translateX(0);
}

.carousel-slide .carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}


/* Zoom Effect */

.carousel-zoom .carousel-item {
    transition: transform 1s ease-in-out;
}

.carousel-zoom .carousel-item-next:not(.carousel-item-start) {
    transform: scale(1.1) translateX(100%);
}

.carousel-zoom .carousel-item-prev:not(.carousel-item-end) {
    transform: scale(1.1) translateX(-100%);
}

.carousel-zoom .carousel-item.active {
    transform: scale(1);
}


/* Content Animation */

.carousel-item .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}


/* Staggered Animation for Content Elements */

.carousel-item.active .hero-title {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.carousel-item.active .hero-description {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.carousel-item.active .hero-buttons {
    animation: slideInUp 0.8s ease-out 0.6s both;
}


/* Keyframe Animations */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@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);
    }
}


/* Responsive Design */

@media (max-width: 991px) {
    .hero-section,
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-section,
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    .hero-content {
        padding: 1rem 0;
        background: linear-gradient(90deg, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        max-width: 90%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.8rem;
        width: 220px;
        border-radius: 25px;
        font-weight: 600;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .carousel-indicators {
        bottom: 1.5rem;
        gap: 10px;
        padding: 12px 18px;
        border-radius: 25px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .carousel-indicators button {
        width: 14px;
        height: 14px;
        border-width: 2px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .carousel-indicators button:hover {
        transform: scale(1.3) rotate(2deg);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
    }
    .carousel-indicators button.active {
        transform: scale(1.5) rotate(0deg);
        box-shadow: 0 8px 25px rgba(242, 140, 40, 0.6);
    }
    .carousel-indicators button:hover::before {
        width: 7px;
        height: 7px;
    }
    .carousel-indicators button.active::before {
        width: 9px;
        height: 9px;
    }
    .carousel-indicators button.active::after {
        width: 5px;
        height: 5px;
    }
}


/* Extra Small Screens */

@media (max-width: 480px) {
    .hero-section,
    .hero-slide {
        height: 65vh;
        min-height: 350px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        max-width: 95%;
    }
    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        width: 200px;
    }
    .carousel-indicators {
        bottom: 1rem;
        gap: 8px;
        padding: 10px 15px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        animation: indicatorContainerFadeIn 0.6s ease-out;
    }
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-width: 1.5px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: indicatorFadeIn 0.8s ease-out;
    }
    .carousel-indicators button:hover {
        transform: scale(1.2) rotate(1deg);
        box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
    }
    .carousel-indicators button.active {
        transform: scale(1.4) rotate(0deg);
        box-shadow: 0 5px 15px rgba(242, 140, 40, 0.5);
    }
    .carousel-indicators button:hover::before {
        width: 5px;
        height: 5px;
    }
    .carousel-indicators button.active::before {
        width: 7px;
        height: 7px;
    }
    .carousel-indicators button.active::after {
        width: 3px;
        height: 3px;
    }
    #portfolioCarousel .carousel-indicators {
        bottom: 0.8rem;
        padding: 10px 15px;
        gap: 10px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        animation: indicatorContainerFadeIn 0.6s ease-out;
    }
    #portfolioCarousel .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-width: 1.5px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: indicatorFadeIn 0.8s ease-out;
    }
    #portfolioCarousel .carousel-indicators button:hover {
        transform: scale(1.3) rotate(2deg);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    }
    #portfolioCarousel .carousel-indicators button.active {
        transform: scale(1.5) rotate(0deg);
        box-shadow: 0 6px 18px rgba(242, 140, 40, 0.6);
    }
    #portfolioCarousel .carousel-indicators button:hover::before {
        width: 6px;
        height: 6px;
    }
    #portfolioCarousel .carousel-indicators button.active::before {
        width: 8px;
        height: 8px;
    }
    #portfolioCarousel .carousel-indicators button.active::after {
        width: 4px;
        height: 4px;
    }
}


/* Sections */

section {
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.bg-light,
.bg-white {
    background: #f7f7f7 !important;
}

.card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(58, 45, 26, 0.08);
    transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(58, 45, 26, 0.16);
    transform: translateY(-4px) scale(1.02);
}

.card-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

img.img-fluid,
.img-fluid.rounded {
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.border-3 {
    border-width: 3px !important;
}

.project-steps .step {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    color: #222;
    font-family: inherit;
}

.project-steps .step-num {
    display: inline-block;
    font-family: 'Alexandria', 'Open Sans', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    background: #f28c28;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    margin-inline-end: 18px;
    margin-inline-start: 8px;
    box-shadow: 0 2px 8px #e0e0e0;
}


/* Flags and icons */

.bi {
    font-size: 1.8rem;
    vertical-align: middle;
    transition: color 0.2s;
}

.bi-facebook,
.bi-instagram {
    margin-inline-end: 8px;
}

.bi:hover {
    color: #222;
}


/* Footer */

.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    margin-top: 2rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f28c28, #e67e22, #f28c28);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background: linear-gradient(90deg, #f28c28, #e67e22, #f28c28);
    }
    50% {
        background: linear-gradient(90deg, #e67e22, #f28c28, #e67e22);
    }
}

.footer-top {
    padding: 3rem 0 2rem;
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo h5 {
    color: #f28c28;
    font-weight: 700;
    margin: 0;
}

.footer-desc {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.footer-title {
    color: #f28c28;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f28c28;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f28c28;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #f28c28;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(242, 140, 40, 0.1);
    color: #f28c28;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #f28c28;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
    border-color: #f28c28;
}

.social-link:active {
    transform: translateY(-1px) scale(1.05);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    color: #f28c28;
    font-size: 1.2rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f28c28;
}


/* Footer Responsive */

@media (max-width: 767px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }
    .footer-widget {
        text-align: center;
        margin-bottom: 2rem;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    .copyright {
        text-align: center;
    }
}


/* RTL/LTR support */

[dir="rtl"] .section-title,
[dir="rtl"] h2,
[dir="rtl"] h1 {
    text-align: right;
}

[dir="ltr"] .section-title,
[dir="ltr"] h2,
[dir="ltr"] h1 {
    text-align: left;
}

[dir="rtl"] .about-text,
[dir="rtl"] p,
[dir="rtl"] li {
    text-align: right;
}

[dir="ltr"] .about-text,
[dir="ltr"] p,
[dir="ltr"] li {
    text-align: left;
}


/* Responsive tweaks */

@media (max-width: 991px) {
    .section-title {
        font-size: 1.5rem;
    }
    .about-text,
    .card-text,
    .lead,
    p,
    li {
        font-size: 1rem;
    }
    .project-steps .step-num {
        font-size: 1.1rem;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem !important;
    }
    .about-text,
    .card-text,
    .lead,
    p,
    li {
        font-size: 0.95rem;
    }
    .project-steps .step {
        font-size: 0.95rem;
    }
    .project-steps .step-num {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
        line-height: 22px;
        margin-inline-end: 6px;
    }
    .d-flex.gap-3>img {
        max-width: 100% !important;
        min-width: 100px;
    }
    .navbar-brand {
        font-size: 1.1rem;
    }
    section {
        padding-bottom: 1.5rem;
    }
}

#services {
    background: #f8f6f3;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 28px;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(.4, 2, .3, 1), box-shadow 0.22s;
    min-height: 370px;
    position: relative;
    padding: 3.5rem 2.2rem 2.5rem 2.2rem;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.045) rotate(-2deg);
    box-shadow: 0 16px 48px 0 rgba(184, 155, 123, 0.22), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

.service-card .service-icon {
    transition: transform 0.7s cubic-bezier(.4, 2, .3, 1);
}

.service-card:hover .service-icon {
    transform: rotate(1turn) scale(1.08);
}

.service-card .card-title {
    margin-bottom: 1.1rem;
    margin-top: 0.2rem;
    color: #f28c28;
}

.service-card .card-text {
    margin-bottom: 0;
}

#services .card-title {
    font-family: 'Alexandria', 'Tajawal', 'Playfair Display', serif;
    font-weight: 900;
    color: #f28c28;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.service-card .service-icon i {
    font-size: 2.8rem;
}

#services .card-text {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

@media (max-width: 767px) {
    .service-card {
        min-height: 240px;
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
        border-radius: 18px;
    }
    .service-card:hover {
        transform: translateY(-7px) scale(1.025) rotate(-1deg);
    }
    .service-card .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        top: -18px;
    }
    .service-card .service-icon i {
        font-size: 2rem;
    }
    #services .card-title {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
        color: #f28c28;
    }
    #services .card-text {
        font-size: 0.98rem;
        padding: 0 0.2rem;
    }
}


/* Portfolio Carousel & Modal Styles */

.portfolio-section {
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.section-title-creativ {
    font-family: 'Alexandria', 'Playfair Display', serif;
    font-size: 2.7rem;
    color: #222;
    letter-spacing: 0.04em;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

#portfolioCarousel .carousel-inner {
    padding-bottom: 2.5rem;
}

.portfolio-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(58, 45, 26, 0.10);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-item:hover {
    box-shadow: 0 12px 40px rgba(242, 140, 40, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    z-index: 3;
}

.portfolio-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.23, 1.02, .64, 1), filter 0.5s;
    filter: grayscale(30%) brightness(0.92) contrast(1.08);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08) rotate(1.5deg);
    filter: grayscale(0%) brightness(1.05) contrast(1.1) saturate(1.2);
}

.portfolio-info {
    padding: 1.2rem 1rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(242, 140, 40, 0.08);
    margin-top: auto;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f28c28;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    text-align: right;
}

.portfolio-desc {
    font-size: 1.02rem;
    color: #333;
    margin-bottom: 0;
    text-align: right;
    line-height: 1.7;
}

#portfolioCarousel .carousel-control-prev,
#portfolioCarousel .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

#portfolioCarousel .carousel-control-prev-icon,
#portfolioCarousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(0 2px 8px #222);
}

#portfolioCarousel .carousel-indicators {
    bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 22px 35px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: indicatorContainerFadeIn 0.6s ease-out;
}

#portfolioCarousel .carousel-indicators button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#portfolioCarousel .carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#portfolioCarousel .carousel-indicators button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

#portfolioCarousel .carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.6) rotate(3deg);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    animation: indicatorHover 0.3s ease-out;
}

#portfolioCarousel .carousel-indicators button:hover::before {
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 1);
}

#portfolioCarousel .carousel-indicators button.active {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.8) rotate(0deg);
    box-shadow: 0 12px 35px rgba(242, 140, 40, 0.7);
    animation: indicatorActive 2s infinite;
}

#portfolioCarousel .carousel-indicators button.active::before {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 1);
}

#portfolioCarousel .carousel-indicators button.active::after {
    width: 7px;
    height: 7px;
    opacity: 1;
    animation: indicatorInnerPulse 1.5s infinite;
}

@keyframes portfolioIndicatorPulse {
    0% {
        box-shadow: 0 10px 30px rgba(242, 140, 40, 0.6);
    }
    50% {
        box-shadow: 0 10px 35px rgba(242, 140, 40, 0.8);
    }
    100% {
        box-shadow: 0 10px 30px rgba(242, 140, 40, 0.6);
    }
}


/* Modal Styles */

.modal-content {
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(58, 45, 26, 0.18);
    border: none;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-family: 'Cairo', 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f28c28;
    font-weight: 700;
}

.modal-desc {
    font-size: 1.08rem;
    color: #333;
    margin-top: 1.2rem;
    line-height: 1.7;
}

.modal .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

.modal .carousel-item img {
    max-height: 420px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .portfolio-img-wrap {
        height: 140px;
    }
    .modal .carousel-item img {
        max-height: 220px;
    }
    #portfolioCarousel .carousel-indicators {
        bottom: 1.2rem;
        padding: 15px 25px;
        gap: 15px;
        border-radius: 30px;
    }
    #portfolioCarousel .carousel-indicators button {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
    #portfolioCarousel .carousel-indicators button:hover {
        transform: scale(1.4);
    }
    #portfolioCarousel .carousel-indicators button.active {
        transform: scale(1.5);
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .portfolio-img-wrap {
        height: 180px;
        border-radius: 18px 18px 0 0;
    }
    .portfolio-img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
        border-radius: 18px 18px 0 0;
        background: #eee;
    }
    .portfolio-title {
        font-size: 1rem;
    }
    .portfolio-desc {
        font-size: 0.95rem;
    }
    #portfolioCarousel .carousel-indicators {
        bottom: 1rem;
        padding: 12px 20px;
        gap: 12px;
        border-radius: 25px;
        background: rgba(0, 0, 0, 0.3);
    }
    #portfolioCarousel .carousel-indicators button {
        width: 14px;
        height: 14px;
        border-width: 1px;
    }
    #portfolioCarousel .carousel-indicators button:hover {
        transform: scale(1.3);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    }
    #portfolioCarousel .carousel-indicators button.active {
        transform: scale(1.4);
        box-shadow: 0 6px 20px rgba(242, 140, 40, 0.5);
    }
    #portfolioCarousel .carousel-indicators button::before {
        width: 6px;
        height: 6px;
    }
    #portfolioCarousel .carousel-indicators button.active::before {
        width: 8px;
        height: 8px;
    }
    /* Modal improvements */
    .modal-title {
        font-size: 1.05rem;
        padding-top: 0.5rem;
    }
    .modal .carousel-item img {
        max-height: 220px;
        min-height: 140px;
        border-radius: 16px;
    }
    .modal-desc {
        font-size: 0.92rem;
        margin-top: 0.7rem;
        line-height: 1.6;
    }
    .modal .carousel-control-prev,
    .modal .carousel-control-next {
        width: 2.5rem;
        height: 2.5rem;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.95;
    }
    .modal .carousel-control-prev-icon,
    .modal .carousel-control-next-icon {
        width: 2.2rem;
        height: 2.2rem;
        background-size: 100% 100%;
        filter: drop-shadow(0 2px 8px #222);
        background-color: #fff;
        border-radius: 50%;
        border: 1.5px solid #f28c28;
        box-shadow: 0 2px 8px rgba(242, 140, 40, 0.12);
    }
    .modal .carousel-control-prev {
        left: 10px;
    }
    .modal .carousel-control-next {
        right: 10px;
    }
    /* Enable scroll inside modal-body on mobile */
    .modal-body {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1.5rem;
    }
}


/* === Customer Satisfaction & Testimonials === */

#customer-satisfaction {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#customer-satisfaction::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f28c28" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23f28c28" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23f28c28" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

#testimonials {
    background: #fff;
    position: relative;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f28c28, transparent);
}


/* Testimonial Cards */

#testimonials .card {
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(58, 45, 26, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

#testimonials .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#testimonials .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(242, 140, 40, 0.15), 0 4px 20px rgba(0, 0, 0, 0.1);
}

#testimonials .card:hover::before {
    transform: scaleX(1);
}

#testimonials .card-body {
    padding: 2rem;
    position: relative;
}

#testimonials .bi-quote {
    color: #f28c28;
    font-size: 2.5rem;
    opacity: 0.8;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

#testimonials .card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}


/* Client Images */

#testimonials .rounded-circle {
    border: 3px solid #f28c28;
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials .card:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.3);
}


/* Online Status Indicator */

#testimonials .bg-success {
    background: #28a745 !important;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}


/* Client Names */

#testimonials h6 {
    color: #222;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

#testimonials small {
    color: #888;
    font-size: 0.9rem;
}


/* Star Rating */

.text-warning {
    color: #ffc107 !important;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}


/* Responsive Design */

@media (max-width: 991px) {
    #testimonials .card-body {
        padding: 1.5rem;
    }
    #testimonials .bi-quote {
        font-size: 2rem;
        top: 0.8rem;
        right: 1.2rem;
    }
    #testimonials .card-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    #customer-satisfaction {
        padding: 2rem 0;
    }
    #testimonials {
        padding: 2rem 0;
    }
    #testimonials .card-body {
        padding: 1.2rem;
    }
    #testimonials .bi-quote {
        font-size: 1.8rem;
        top: 0.6rem;
        right: 1rem;
    }
    #testimonials .card-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    #testimonials .rounded-circle {
        width: 50px !important;
        height: 50px !important;
    }
    #testimonials h6 {
        font-size: 1rem;
    }
    #testimonials small {
        font-size: 0.8rem;
    }
}

.mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* === Multi-Step Contact Form === */

.multi-step-form {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(58, 45, 26, 0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.multi-step-form .progress {
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 1px 4px #eee;
    overflow: hidden;
}

.multi-step-form .progress-bar {
    transition: width 0.4s cubic-bezier(.4, 1.3, .5, 1);
    background: linear-gradient(90deg, #f28c28 60%, #e67e22 100%);
}

.multi-step-form .form-step {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.multi-step-form .form-control-lg {
    border-radius: 16px;
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #eee;
    background: #f9f9f9;
    box-shadow: 0 1px 4px #f28c281a;
    transition: border 0.2s, box-shadow 0.2s;
}

.multi-step-form .form-control-lg:focus {
    border-color: #f28c28;
    box-shadow: 0 2px 8px #f28c2822;
    background: #fff;
}

.multi-step-form textarea.form-control-lg {
    min-height: 120px;
    resize: vertical;
}

.multi-step-form .btn-warning {
    background: #f28c28;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 2px 8px #f28c2822;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.multi-step-form .btn-warning:hover {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 4px 16px #f28c2822;
}

.multi-step-form .btn-success {
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
}

.multi-step-form .btn-outline-secondary {
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #eee;
    color: #888;
    background: #f7f7f7;
    transition: border 0.2s, color 0.2s, background 0.2s;
}

.multi-step-form .btn-outline-secondary:hover {
    border-color: #f28c28;
    color: #f28c28;
    background: #fff;
}

.multi-step-form .bg-light {
    background: #f7f7f7 !important;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #444;
}

.multi-step-form strong {
    color: #f28c28;
    font-weight: 700;
}

@media (max-width: 767px) {
    .multi-step-form {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 100%;
    }
    .multi-step-form .form-control-lg {
        font-size: 1rem;
        padding: 0.7rem 0.8rem;
    }
    .multi-step-form .btn-warning,
    .multi-step-form .btn-success,
    .multi-step-form .btn-outline-secondary {
        font-size: 1rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}


/* === Contact Information Section === */

.contact-info-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.contact-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    border-radius: 2px;
}

.contact-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fafbfc;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f28c28, #e67e22);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: #f28c28;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(248, 140, 40, 0.3);
}

.contact-icon-wrapper i {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-content {
    flex: 1;
}

.contact-label {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.contact-value {
    color: #495057;
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    font-weight: 400;
}

.contact-link {
    color: #f28c28;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f28c28;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
    text-decoration: none;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-social {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

.social-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: #f28c28;
    color: #f28c28;
    box-shadow: 0 6px 20px rgba(248, 140, 40, 0.2);
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}


/* Responsive Design for Contact Info */

@media (max-width: 991px) {
    .contact-info-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .contact-title {
        font-size: 1.6rem;
    }
    .contact-card {
        padding: 1rem;
    }
    .contact-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    .contact-icon-wrapper i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .contact-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    .contact-title {
        font-size: 1.4rem;
    }
    .contact-subtitle {
        font-size: 0.9rem;
    }
    .contact-grid {
        gap: 1rem;
    }
    .contact-card {
        padding: 0.875rem;
    }
    .contact-icon-wrapper {
        width: 38px;
        height: 38px;
        margin-left: 0.75rem;
    }
    .contact-icon-wrapper i {
        font-size: 1rem;
    }
    .contact-label {
        font-size: 0.95rem;
    }
    .contact-value {
        font-size: 0.9rem;
    }
    .social-icons {
        gap: 0.75rem;
    }
    .social-icon {
        width: 38px;
        height: 38px;
    }
    .social-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 1.25rem;
    }
    .contact-title {
        font-size: 1.3rem;
    }
    .contact-subtitle {
        font-size: 0.85rem;
    }
    .contact-card {
        padding: 0.75rem;
    }
    .contact-icon-wrapper {
        width: 35px;
        height: 35px;
        margin-left: 0.5rem;
    }
    .contact-icon-wrapper i {
        font-size: 0.9rem;
    }
    .contact-label {
        font-size: 0.9rem;
    }
    .contact-value {
        font-size: 0.85rem;
    }
    .social-icon {
        width: 35px;
        height: 35px;
    }
    .social-icon i {
        font-size: 0.9rem;
    }
}


/* Floating Button Styles */

.floating-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    pointer-events: auto;
}

.floating-button {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(242, 140, 40, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.floating-button i {
    font-size: 1.3rem;
    color: #ffffff !important;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Map Section Styles */

.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.map-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f28c28" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f28c28" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f28c28" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="%23f28c28" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.interactive-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.legend-pin {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(242, 140, 40, 0.4);
}


/* Interactive Map Styles */

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker div {
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(242, 140, 40, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
    }
}


/* Leaflet Popup Customization */

.leaflet-popup-content-wrapper {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-popup-content {
    margin: 15px !important;
    font-family: 'Alexandria', sans-serif !important;
}

.leaflet-popup-tip {
    background: white !important;
}


/* Map Controls */

.leaflet-control-zoom {
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-zoom a {
    border-radius: 8px !important;
    color: #f28c28 !important;
    font-weight: bold !important;
}

.leaflet-control-zoom a:hover {
    background: #f28c28 !important;
    color: white !important;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(242, 140, 40, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
    }
}

.map-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(242, 140, 40, 0.2);
    border-color: #f28c28;
}

.country-flag {
    margin-bottom: 1rem;
}

.flag-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.country-card:hover .flag-image {
    transform: scale(1.1);
}

.country-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}


/* Responsive Design for Map Section */

@media (max-width: 768px) {
    .map-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .country-card {
        padding: 1rem 0.5rem;
    }
    .flag-image {
        width: 50px;
        height: 35px;
    }
    .map-pin {
        width: 30px;
        height: 30px;
    }
    .map-pin i {
        font-size: 1rem;
    }
}


/* Finishing Form Styles */

#finishingModal .modal-title {
    color: #ffffff !important;
}

.finishing-form {
    max-width: 800px;
    margin: 0 auto;
}

.finishing-form .form-step {
    animation: fadeIn 0.5s ease-in-out;
    display: block;
}

.finishing-form .form-step.d-none {
    display: none !important;
}

.finishing-form .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.finishing-form .progress-bar {
    background: linear-gradient(90deg, #f28c28, #e67e22);
    border-radius: 10px;
    transition: width 0.5s ease;
}


/* Area Options */

.area-option {
    position: relative;
}

.area-input {
    display: none;
}

.area-label {
    display: block;
    padding: 20px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-input:checked+.area-label {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.area-label:hover {
    border-color: #f28c28;
    transform: translateY(-2px);
}


/* Service Options */

.service-option {
    position: relative;
}

.service-input {
    display: none;
}

.service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    justify-content: center;
}

.service-input:checked+.service-label {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.service-label:hover {
    border-color: #f28c28;
    transform: translateY(-2px);
}

.service-label i {
    font-size: 2rem;
    margin-bottom: 5px;
}


/* Room Options */

.room-option {
    position: relative;
}

.room-input {
    display: none;
}

.room-label {
    display: block;
    padding: 20px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-input:checked+.room-label {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.room-label:hover {
    border-color: #f28c28;
    transform: translateY(-2px);
}


/* Quality Options */

.quality-option {
    position: relative;
}

.quality-input {
    display: none;
}

.quality-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quality-input:checked+.quality-label {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.quality-label:hover {
    border-color: #f28c28;
    transform: translateY(-2px);
}

.quality-label i {
    font-size: 1.5rem;
}


/* Timeline Options */

.timeline-option {
    position: relative;
}

.timeline-input {
    display: none;
}

.timeline-label {
    display: block;
    padding: 20px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-input:checked+.timeline-label {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.timeline-label:hover {
    border-color: #f28c28;
    transform: translateY(-2px);
}

.timeline-details {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}


/* Form Controls */

.finishing-form .form-control,
.finishing-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.finishing-form .form-control:focus,
.finishing-form .form-select:focus {
    border-color: #f28c28;
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
}

.finishing-form .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.finishing-form .btn-warning {
    background: #f28c28;
    border-color: #f28c28;
    color: white;
}

.finishing-form .btn-warning:hover {
    background: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.finishing-form .btn-success {
    background: #28a745;
    border-color: #28a745;
}

.finishing-form .btn-success:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.finishing-form .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.finishing-form .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}


/* Modal Styles */

#finishingModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#finishingModal .modal-header {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
}

#finishingModal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

#finishingModal .modal-body {
    padding: 30px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .floating-button-container {
        bottom: 20px;
        right: 20px;
    }
    .floating-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .floating-button span {
        display: none;
    }
    .floating-button i {
        font-size: 1.5rem;
        color: #ffffff !important;
    }
    #finishingModal .modal-dialog {
        margin: 10px;
    }
    #finishingModal .modal-body {
        padding: 20px;
    }
    .area-label,
    .service-label,
    .room-label,
    .quality-label,
    .timeline-label {
        font-size: 1rem;
        padding: 15px 10px;
    }
    .service-label {
        min-height: 100px;
    }
    .finishing-form .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .floating-button-container {
        bottom: 15px;
        right: 15px;
    }
    .floating-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    .area-label,
    .service-label,
    .room-label,
    .quality-label,
    .timeline-label {
        font-size: 0.9rem;
        padding: 12px 8px;
    }
    .service-label {
        min-height: 80px;
    }
    .service-label i {
        font-size: 1.5rem;
    }
    .quality-label {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


/* Price Range Display */

.price-range {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}


/* Form Validation Styles */

.finishing-form .form-control.is-invalid,
.finishing-form .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.finishing-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}


/* Loading State */

.finishing-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Success Animation */

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.finishing-form .btn-success:active {
    animation: successPulse 0.3s ease-in-out;
}


/* Enhanced Services Section Styles */

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::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="services-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f28c28" opacity="0.1"/><rect x="0" y="0" width="50" height="50" fill="none" stroke="%23f28c28" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    pointer-events: none;
}


/* Section Header */

.section-header {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center !important;
}


/* Enhanced Service Cards */

.service-card-enhanced {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 140, 40, 0.1);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(242, 140, 40, 0.15);
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    padding: 30px 30px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f28c28;
    opacity: 0.3;
}

.service-card-body {
    padding: 0 30px 30px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #f28c28;
    font-size: 0.8rem;
}

.service-link {
    color: #f28c28;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: #e67e22;
    transform: translateX(-5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-3px);
}


/* Services CTA Section */

.services-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.services-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="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.cta-button {
    background: white;
    color: #f28c28;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #f8f9fa;
    color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Responsive Design for Enhanced Services */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .service-card-header {
        padding: 25px 25px 15px;
    }
    .service-card-body {
        padding: 0 25px 25px;
    }
    .services-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .service-number {
        font-size: 1.5rem;
    }
}


/* Enhanced Portfolio Section Styles */

.portfolio-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section-enhanced::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="portfolio-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23f28c28" opacity="0.08"/><rect x="0" y="0" width="40" height="40" fill="none" stroke="%23f28c28" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-pattern)"/></svg>');
    pointer-events: none;
}


/* Portfolio Filters */

.portfolio-filters {
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    border: 2px solid #f28c28;
    color: #f28c28;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 0 5px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f28c28;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}


/* Enhanced Portfolio Cards */

.portfolio-card-enhanced {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(242, 140, 40, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-enhanced:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(242, 140, 40, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card-enhanced:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    font-size: 1rem;
}

.portfolio-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #f28c28;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.portfolio-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 0.8rem;
}

.meta-item i {
    color: #f28c28;
    font-size: 0.9rem;
}


/* Portfolio CTA */

.portfolio-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-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="portfolio-cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-cta-pattern)"/></svg>');
    pointer-events: none;
}


/* Enhanced About Section Styles */

.about-section-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section-enhanced::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="about-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23f28c28" opacity="0.06"/><path d="M10,10 L20,10 L20,20 L10,20 Z" fill="%23f28c28" opacity="0.08"/><path d="M80,80 L90,80 L90,90 L80,90 Z" fill="%23f28c28" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    pointer-events: none;
}


/* About Image */

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.experience-badge {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}


/* About Content */

.about-content {
    position: relative;
    z-index: 2;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}


/* About Features */

.about-features {
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


/* About Stats */

.about-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f28c28;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}


/* About CTA */

.about-cta {
    position: relative;
    z-index: 2;
}

.about-cta-btn {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-cta-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.3);
}


/* Responsive Design for Enhanced Sections */

@media (max-width: 768px) {
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    .filter-btn {
        margin: 0 2px 5px;
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .portfolio-image {
        height: 200px;
    }
    .portfolio-content {
        padding: 20px;
    }
    .portfolio-title {
        font-size: 1.1rem;
    }
    .about-image {
        height: 300px;
    }
    .experience-badge {
        padding: 12px 15px;
    }
    .experience-badge .years {
        font-size: 1.5rem;
    }
    .feature-item {
        padding: 12px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .stat-item {
        padding: 15px 8px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .portfolio-cta,
    .services-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}


/* Enhanced Team Section Styles */

.team-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section-enhanced::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="team-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f28c28" opacity="0.06"/><rect x="0" y="0" width="50" height="50" fill="none" stroke="%23f28c28" stroke-width="0.2" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
    pointer-events: none;
}


/* Team Cards */

.team-card-enhanced {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 140, 40, 0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-enhanced:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(242, 140, 40, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-enhanced:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f28c28;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f28c28;
    color: white;
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.team-position {
    color: #f28c28;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}


/* Team Stats */

.team-stats {
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}


/* Enhanced Project Management Section Styles */

.project-management-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.project-management-section::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="process-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23f28c28" opacity="0.05"/><path d="M10,10 L20,10 L20,20 L10,20 Z" fill="%23f28c28" opacity="0.08"/><path d="M80,80 L90,80 L90,90 L80,90 Z" fill="%23f28c28" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    pointer-events: none;
}


/* Process Steps */

.process-step-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    text-align: center;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 140, 40, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f28c28;
    font-weight: 600;
    font-size: 0.9rem;
}


/* Process CTA */

.process-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.process-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="process-cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23process-cta-pattern)"/></svg>');
    pointer-events: none;
}


/* Enhanced Testimonials Section Styles */

.testimonials-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-enhanced::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="testimonials-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23f28c28" opacity="0.06"/><rect x="0" y="0" width="40" height="40" fill="none" stroke="%23f28c28" stroke-width="0.3" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-pattern)"/></svg>');
    pointer-events: none;
}


/* Testimonial Cards */

.testimonial-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 140, 40, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #f28c28;
    font-size: 1rem;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    position: relative;
}

.avatar-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f28c28;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid white;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.client-project {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}


/* Testimonials Stats */

.testimonials-stats {
    position: relative;
    z-index: 2;
}


/* Testimonials CTA */

.testimonials-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-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="testimonials-cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-cta-pattern)"/></svg>');
    pointer-events: none;
}


/* Enhanced Square Map Section Styles */

.square-map-section-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.square-map-section-enhanced::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="map-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="1" fill="%23f28c28" opacity="0.05"/><path d="M10,10 L25,10 L25,25 L10,25 Z" fill="%23f28c28" opacity="0.08"/><path d="M75,75 L90,75 L90,90 L75,90 Z" fill="%23f28c28" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    pointer-events: none;
}


/* Map Content */

.map-content-enhanced {
    position: relative;
    z-index: 2;
}

.map-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}


/* Countries Grid */

.countries-grid-enhanced {
    position: relative;
    z-index: 2;
}

.country-card-enhanced {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.country-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.15);
}

.country-flag-wrapper {
    position: relative;
    width: 80px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(242, 140, 40, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-card-enhanced:hover .flag-overlay {
    opacity: 1;
}

.flag-overlay i {
    color: white;
    font-size: 1.5rem;
}

.country-info {
    text-align: center;
}

.country-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.country-status {
    color: #f28c28;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}


/* Expansion Stats */

.expansion-stats {
    position: relative;
    z-index: 2;
}


/* Map Container */

.map-container-enhanced {
    position: relative;
    z-index: 2;
}

.world-map-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.interactive-map-enhanced {
    height: 400px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #f28c28;
    margin-bottom: 20px;
    display: block;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.map-legend-enhanced {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-pin.active {
    background: #28a745;
}

.legend-pin.expanding {
    background: #f28c28;
}


/* Map CTA */

.map-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.map-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="map-cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map-cta-pattern)"/></svg>');
    pointer-events: none;
}


/* Responsive Design for All Enhanced Sections */

@media (max-width: 768px) {
    .team-image {
        height: 220px;
    }
    .team-content {
        padding: 20px;
    }
    .team-name {
        font-size: 1.1rem;
    }
    .stat-card {
        padding: 20px 10px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .process-step-card {
        padding: 25px 20px;
    }
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .step-title {
        font-size: 1rem;
    }
    .testimonial-card-enhanced {
        padding: 25px 20px;
    }
    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .avatar-image {
        width: 50px;
        height: 50px;
    }
    .country-card-enhanced {
        padding: 15px;
    }
    .country-flag-wrapper {
        width: 60px;
        height: 45px;
    }
    .interactive-map-enhanced {
        height: 300px;
    }
    .map-placeholder i {
        font-size: 3rem;
    }
    .map-placeholder h3 {
        font-size: 1.2rem;
    }
    .process-cta,
    .testimonials-cta,
    .map-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}


/* Enhanced Contact Section Styles */

.contact-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-enhanced::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="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23f28c28" opacity="0.05"/><rect x="0" y="0" width="30" height="30" fill="none" stroke="%23f28c28" stroke-width="0.2" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    pointer-events: none;
}


/* Contact Info Section Enhanced */

.contact-info-section-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22, #f28c28);
    animation: gradientShift 3s ease-in-out infinite;
}

.contact-header-enhanced {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-title-enhanced {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title-enhanced i {
    color: #f28c28;
    font-size: 1.5rem;
}

.contact-subtitle-enhanced {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}


/* Contact Grid Enhanced */

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card-enhanced {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(242, 140, 40, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 140, 40, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
}

.contact-card-enhanced:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper-enhanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card-enhanced:hover .contact-icon-wrapper-enhanced {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.3);
}

.contact-icon-wrapper-enhanced i {
    color: white;
    font-size: 1.5rem;
}

.contact-content-enhanced {
    flex: 1;
}

.contact-label-enhanced {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value-enhanced {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.working-days {
    color: #f28c28;
    font-weight: 600;
}

.contact-link-enhanced {
    color: #f28c28;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link-enhanced::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f28c28;
    transition: width 0.3s ease;
}

.contact-link-enhanced:hover {
    color: #e67e22;
    transform: translateX(5px);
}

.contact-link-enhanced:hover::after {
    width: 100%;
}


/* Social Media Enhanced */

.contact-social-enhanced {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 140, 40, 0.1);
}

.social-title-enhanced {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-title-enhanced i {
    color: #f28c28;
    font-size: 1.2rem;
}

.social-icons-enhanced {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon-enhanced {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-icon-enhanced:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.4);
}

.social-icon-enhanced:hover::before {
    left: 100%;
}

.social-icon-enhanced i {
    font-size: 1.3rem;
    z-index: 1;
}


/* Contact Form Section Enhanced */

.contact-form-section-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22, #f28c28);
    animation: gradientShift 3s ease-in-out infinite;
}

.form-header-enhanced {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title-enhanced {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-title-enhanced i {
    color: #f28c28;
    font-size: 1.5rem;
}

.form-subtitle-enhanced {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}


/* Progress Bar Enhanced */

.progress-enhanced {
    height: 8px;
    background: rgba(242, 140, 40, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-enhanced {
    height: 100%;
    background: linear-gradient(90deg, #f28c28, #e67e22);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Form Steps Enhanced */

.form-step-enhanced {
    animation: fadeInUp 0.5s ease-out;
}

.step-title-enhanced {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(242, 140, 40, 0.1);
}

.step-title-enhanced i {
    color: #f28c28;
    font-size: 1.3rem;
}


/* Form Groups Enhanced */

.form-group-enhanced {
    position: relative;
}

.form-label-enhanced {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.input-group-enhanced {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #f28c28;
    font-size: 1.1rem;
    z-index: 2;
}

.form-control-enhanced {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(242, 140, 40, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.form-control-enhanced:focus {
    outline: none;
    border-color: #f28c28;
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
    background: white;
}

.form-control-enhanced::placeholder {
    color: #6c757d;
    opacity: 0.7;
}


/* Form Actions Enhanced */

.form-actions-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-enhanced {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-next {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: white;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.4);
}

.btn-prev {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid rgba(108, 117, 125, 0.2);
}

.btn-prev:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}


/* Review Section Enhanced */

.review-section-enhanced {
    background: rgba(242, 140, 40, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(242, 140, 40, 0.1);
}

.review-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.review-title i {
    color: #f28c28;
    font-size: 1.2rem;
}

.review-card-enhanced {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(242, 140, 40, 0.1);
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.review-value {
    color: #6c757d;
    font-size: 0.95rem;
    text-align: right;
    max-width: 60%;
}


/* Contact Summary Enhanced */

.contact-summary-enhanced {
    background: rgba(242, 140, 40, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(242, 140, 40, 0.1);
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.summary-content {
    flex: 1;
}

.summary-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.summary-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


/* Responsive Design for Contact Section */

@media (max-width: 768px) {
    .contact-info-section-enhanced,
    .contact-form-section-enhanced {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .contact-title-enhanced,
    .form-title-enhanced {
        font-size: 1.5rem;
    }
    .contact-subtitle-enhanced,
    .form-subtitle-enhanced {
        font-size: 1rem;
    }
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-card-enhanced {
        padding: 1.25rem;
    }
    .contact-icon-wrapper-enhanced {
        width: 50px;
        height: 50px;
    }
    .contact-icon-wrapper-enhanced i {
        font-size: 1.3rem;
    }
    .social-icon-enhanced {
        width: 45px;
        height: 45px;
    }
    .social-icon-enhanced i {
        font-size: 1.2rem;
    }
    .form-actions-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-enhanced {
        width: 100%;
        justify-content: center;
    }
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .review-value {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info-section-enhanced,
    .contact-form-section-enhanced {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    .contact-title-enhanced,
    .form-title-enhanced {
        font-size: 1.3rem;
    }
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .contact-card-enhanced {
        padding: 1rem;
    }
    .contact-icon-wrapper-enhanced {
        width: 45px;
        height: 45px;
    }
    .contact-icon-wrapper-enhanced i {
        font-size: 1.2rem;
    }
    .social-icons-enhanced {
        gap: 0.75rem;
    }
    .social-icon-enhanced {
        width: 40px;
        height: 40px;
    }
    .social-icon-enhanced i {
        font-size: 1.1rem;
    }
}


/* Enhanced Popup Messages */

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Enhanced Testimonials Section Improvements */

.testimonials-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-enhanced::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="testimonials-enhanced-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%23f28c28" opacity="0.04"/><rect x="0" y="0" width="35" height="35" fill="none" stroke="%23f28c28" stroke-width="0.2" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-enhanced-pattern)"/></svg>');
    pointer-events: none;
}

.testimonial-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c28, #e67e22, #f28c28);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(242, 140, 40, 0.15);
}

.testimonial-card-enhanced:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.testimonial-card-enhanced:hover .quote-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.3);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #ffc107;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.testimonial-card-enhanced:hover .rating i {
    transform: scale(1.2);
    color: #ff8c00;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #f28c28;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-footer {
    border-top: 1px solid rgba(242, 140, 40, 0.1);
    padding-top: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(242, 140, 40, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-enhanced:hover .client-avatar {
    border-color: #f28c28;
    transform: scale(1.05);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.client-details {
    flex: 1;
}

.client-name {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-project {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}


/* Enhanced Testimonials Stats */

.testimonials-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(242, 140, 40, 0.05);
    border: 1px solid rgba(242, 140, 40, 0.1);
    transition: all 0.3s ease;
}

.testimonials-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.15);
    background: rgba(242, 140, 40, 0.1);
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f28c28;
    margin-bottom: 0.5rem;
    display: block;
}

.testimonials-stats .stat-label {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}


/* Enhanced Testimonials CTA */

.testimonials-cta {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-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="testimonials-cta-enhanced-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-cta-enhanced-pattern)"/></svg>');
    pointer-events: none;
}

.testimonials-cta .cta-content {
    position: relative;
    z-index: 1;
}

.testimonials-cta .cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonials-cta .cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonials-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}


/* Responsive Design for Enhanced Testimonials */

@media (max-width: 768px) {
    .testimonial-card-enhanced {
        padding: 1.5rem;
        border-radius: 15px;
    }
    .testimonial-header {
        margin-bottom: 1rem;
    }
    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    .client-name {
        font-size: 1rem;
    }
    .client-project {
        font-size: 0.85rem;
    }
    .testimonials-stats {
        padding: 1.5rem;
    }
    .testimonials-stats .stat-item {
        padding: 1rem;
    }
    .testimonials-stats .stat-number {
        font-size: 2rem;
    }
    .testimonials-cta {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .testimonials-cta .cta-title {
        font-size: 1.5rem;
    }
    .testimonials-cta .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card-enhanced {
        padding: 1.25rem;
        border-radius: 12px;
    }
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .client-avatar {
        width: 45px;
        height: 45px;
    }
    .testimonials-stats {
        padding: 1rem;
    }
    .testimonials-stats .stat-item {
        padding: 0.75rem;
    }
    .testimonials-stats .stat-number {
        font-size: 1.75rem;
    }
    .testimonials-cta {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    .testimonials-cta .cta-title {
        font-size: 1.3rem;
    }
    .testimonials-cta .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}